These functions return metadata codes, names, descriptions, and information associated with the data downloaded from NatureCounts.
Usage
meta_country_codes()
meta_statprov_codes()
meta_subnational2_codes()
meta_iba_codes()
meta_bcr_codes()
meta_utm_squares()
meta_species_authority()
meta_species_codes()
meta_species_taxonomy()
meta_collections()
meta_breeding_codes()
meta_project_protocols()
meta_projects()
meta_protocol_types()
meta_bmde_versions()
meta_bmde_fields(version = "minimum")
Details
Some of these metadata are stored locally and can be updated with
the nc_metadata()
function. Others are downloaded as requested.
Functions
meta_country_codes()
: Country codesmeta_statprov_codes()
: State/Province codesmeta_subnational2_codes()
: Subnational2 codesmeta_iba_codes()
: Important Bird Area (IBA) codesmeta_bcr_codes()
: Bird Conservation Region (BCR) codesmeta_utm_squares()
: UTM Square codesmeta_species_authority()
: Species taxonomic authoritiesmeta_species_codes()
: Alpha-numeric codes for avian speciesmeta_species_taxonomy()
: Codes and taxonomic information for all speciesmeta_collections()
: Collections names and descriptionsmeta_breeding_codes()
: Breeding codes and descriptionsmeta_project_protocols()
: Project protocolsmeta_projects()
: Projects ids, names, websites, and descriptionsmeta_protocol_types()
: Protocol types and descriptionsmeta_bmde_versions()
: Names and descriptions of the available versions of BMDE (Bird Monitoring Data Exchange). These refer to sets of fields/columns which can be downloaded for a given group of data. Seenc_data_dl()
for more details.meta_bmde_fields()
: Fields/columns associated with a particular BMDE (Bird Monitoring Data Exchange) version. Seemeta_bmde_versions()
for the different versions available,meta_collections()
for which version is used by which project, andnc_data_dl()
for more details on downloading data with a given set of fields/columns.
Examples
# Return fields/columns in the 'minimum' version
meta_bmde_fields()
#> # A tibble: 37 × 3
#> field_order version local_name
#> <int> <chr> <chr>
#> 1 1 BMDE2.00-min GlobalUniqueIdentifier
#> 2 2 BMDE2.00-min CatalogNumber
#> 3 3 BMDE2.00-min Locality
#> 4 4 BMDE2.00-min TimeCollected
#> 5 5 BMDE2.00-min CollectorNumber
#> 6 6 BMDE2.00-min FieldNumber
#> 7 7 BMDE2.00-min Remarks
#> 8 8 BMDE2.00-min ProjectCode
#> 9 9 BMDE2.00-min ProtocolType
#> 10 10 BMDE2.00-min ProtocolCode
#> # ℹ 27 more rows
# Retrun fields/columns in the 'core' version
meta_bmde_fields(version = "core")
#> # A tibble: 169 × 3
#> field_order version local_name
#> <int> <chr> <chr>
#> 1 1 BMDE2.00 GlobalUniqueIdentifier
#> 2 2 BMDE2.00 DateLastModified
#> 3 3 BMDE2.00 BasisOfRecord
#> 4 4 BMDE2.00 InstitutionCode
#> 5 5 BMDE2.00 CollectionCode
#> 6 6 BMDE2.00 CatalogNumber
#> 7 7 BMDE2.00 ScientificName
#> 8 8 BMDE2.00 HigherTaxon
#> 9 9 BMDE2.00 Kingdom
#> 10 10 BMDE2.00 Phylum
#> # ℹ 159 more rows
# Return all possible fields
meta_bmde_fields(version = "extended")
#> # A tibble: 265 × 3
#> field_order version local_name
#> <int> <chr> <chr>
#> 1 1 BMDE2.00-ext GlobalUniqueIdentifier
#> 2 2 BMDE2.00-ext DateLastModified
#> 3 3 BMDE2.00-ext BasisOfRecord
#> 4 4 BMDE2.00-ext InstitutionID
#> 5 5 BMDE2.00-ext InstitutionCode
#> 6 6 BMDE2.00-ext CollectionCode
#> 7 7 BMDE2.00-ext CatalogNumber
#> 8 8 BMDE2.00-ext ScientificName
#> 9 9 BMDE2.00-ext HigherTaxon
#> 10 10 BMDE2.00-ext Kingdom
#> # ℹ 255 more rows