Skip to contents

DEPRECATED: This function is maintained for backward compatibility but will be removed in a future version. Use ingest_wcs_surveys() and ingest_kefs_surveys() separately instead.

This function ingests both WCS and KEFS catch surveys in a single call, which creates coupling between data sources. If one source fails, both fail.

Usage

ingest_landings(log_threshold = logger::DEBUG)

Arguments

log_threshold

Logging threshold level (default: logger::DEBUG)

Value

No return value. Function downloads data, processes it, and uploads to Google Cloud Storage.

Examples

if (FALSE) { # \dontrun{
# Old way (deprecated):
ingest_landings()

# New way (preferred):
ingest_wcs_surveys()
ingest_kefs_surveys()
} # }