R package to download marine data from Copernicus Marine directly in R using Python and the official
copernicusmarine
library.
copernicusR
provides a seamless R interface to the Copernicus Marine Service, allowing you to download and access marine data directly from R. The package handles Python environment setup, credential management, and data access through the official Copernicus Marine API.
Key Features:
- π Automatic Python setup - No manual Python configuration needed
- π Secure credential management - Multiple secure storage options
- π Direct dataset access - Explore data without downloading (open_dataset
)
- π Full NetCDF downloads - Download complete files with filtering
- πΊοΈ Advanced filtering - Spatial, temporal, and depth filtering
- β
Built-in validation - Test functions to ensure everything works
# Install if you don't have remotes
if (!requireNamespace("remotes", quietly = TRUE)) {
install.packages("remotes")
}
# Install copernicusR
remotes::install_github("HansTtito/copernicusR")
# Load the package
library(copernicusR)
# One-time setup per session
setup_copernicus(username = "your_username", password = "your_password")
# Verify everything is working
copernicus_is_ready()
#> Checking Copernicus Marine environment:
#> β Python module copernicusmarine: OK
#> β Credentials configured for user: your_username
#> Ready to use Copernicus Marine!
# Test with a small download
copernicus_test()
#> Testing download from Copernicus Marine...
#> β Test download successful!
# Method 1: Environment variables (.Renviron)
copernicus_set_env_credentials("your_username", "your_password")
# Restart R, then:
setup_copernicus()
# Method 2: Interactive setup
setup_copernicus() # Will prompt for credentials
# Method 3: Manual environment variables
Sys.setenv(COPERNICUS_USERNAME = "your_username")
Sys.setenv(COPERNICUS_PASSWORD = "your_password")
setup_copernicus()
Perfect for data exploration and small extractions:
# Open dataset for exploration
dataset <- copernicus_open_dataset(
dataset_id = "cmems_mod_glo_phy_anfc_0.083deg_P1D-m",
variables = "zos", # Sea water temperature
start_date = "2024-01-01",
end_date = "2024-01-03",
bbox = c(-75, -73, -41, -38), # Chilean coast [xmin, xmax, ymin, ymax]
depth = c(0, 50) # Surface to 50m
)
# Convert to R data structures if needed
data_r <- reticulate::py_to_r(dataset)
For full data downloads and local processing:
# Download sea temperature and salinity
file_path <- copernicus_download(
dataset_id = "cmems_mod_glo_phy_anfc_0.083deg_P1D-m",
variables = c("zos", "tob"),
start_date = "2024-01-01",
end_date = "2024-01-31",
bbox = c(-75, -70, -45, -17), # Chilean coast
depth = c(0, 100),
output_file = "chile_coast_jan2024.nc"
)
# Process with R packages
library(terra)
temperature <- rast(file_path, lyrs = "zos")
plot(temperature[[1]]) # Plot first time step
# Multiple variables with custom output location
copernicus_download(
dataset_id = "cmems_mod_glo_phy_anfc_0.083deg_P1D-m",
variables = c("sob", "tob", "usi", "vsi", "zos"),
start_date = "2024-06-01",
end_date = "2024-06-30",
bbox = c(-80, -70, -45, -35),
depth = c(0, 200),
output_file = "data/summer_ocean_data.nc"
)
# Surface data only (no depth filtering)
surface_data <- copernicus_download(
dataset_id = "cmems_mod_glo_phy_anfc_0.083deg_P1D-m",
variables = "zos",
start_date = "2024-01-15",
end_date = "2024-01-15",
bbox = c(-180, 180, -90, 90) # Global
)
# Store in .Renviron (persists across R sessions)
copernicus_set_env_credentials("your_username", "your_password")
# Restart R, credentials automatically loaded
# Check what's stored
copernicus_get_credentials()
#> $username
#> [1] "your_username"
#> $password
#> [1] "***MASKED***"
# Set for current session only
copernicus_setup_credentials("username", "password")
# Clear when done
copernicus_clear_credentials()
# Validate credentials work
copernicus_validate_credentials()
| Function | Description |
|----------|-------------|
| setup_copernicus()
| Main setup function (Python + credentials) |
| copernicus_is_ready()
| Check if everything is configured |
| copernicus_setup_credentials()
| Configure credentials only |
| Function | Description |
|----------|-------------|
| copernicus_download()
| Download NetCDF files |
| copernicus_open_dataset()
| Open datasets without downloading |
| copernicus_test()
| Test download functionality |
| copernicus_test_open()
| Test dataset opening |
| Function | Description |
|----------|-------------|
| copernicus_get_credentials()
| View stored credentials |
| copernicus_clear_credentials()
| Clear session credentials |
| copernicus_set_env_credentials()
| Store in .Renviron |
| copernicus_validate_credentials()
| Test credentials |
# Global Ocean Physics (0.083Β° resolution, daily)
"cmems_mod_glo_phy_anfc_0.083deg_P1D-m"
# Mediterranean Sea Physics (4.2km resolution)
"cmems_mod_med_phy_anfc_4.2km_P1D-m"
# Baltic Sea Physics
"cmems_mod_bal_phy_anfc_P1D-m"
# North West Shelf Physics
"cmems_mod_nws_phy_anfc_0.027deg_P1D-m"
π‘ Find more datasets: Browse the full catalog at data.marine.copernicus.eu
| Code | Description | Units |
|------|-------------|-------|
| "thetao"
| Sea water potential temperature | Β°C |
| "so"
| Sea water salinity | PSU |
| "uo", "vo"
| Sea water velocity (x, y) | m/s |
| "zos"
| Sea surface height above geoid | m |
| "mlotst"
| Mixed layer thickness | m |
| Code | Description | Units |
|------|-------------|-------|
| "chl"
| Chlorophyll-a concentration | mg/mΒ³ |
| "no3"
| Nitrate concentration | mmol/mΒ³ |
| "po4"
| Phosphate concentration | mmol/mΒ³ |
| "ph"
| pH | - |
# Predefined bounding boxes [xmin, xmax, ymin, ymax]
global <- c(-180, 180, -90, 90)
chile <- c(-75, -70, -45, -17)
med_sea <- c(-6, 37, 30, 46)
north_sea <- c(-4, 9, 51, 62)
caribbean <- c(-87, -58, 9, 27)
Python not found:
# Check Python configuration
reticulate::py_config()
# Manual Python setup
reticulate::use_python("/path/to/python")
setup_copernicus()
Authentication errors:
# Reset and reconfigure credentials
copernicus_clear_credentials()
copernicus_setup_credentials("username", "password")
copernicus_validate_credentials()
Download failures:
# Check system status
copernicus_is_ready()
# Try a test download
copernicus_test()
# Reduce data size (smaller bbox, fewer days)
Module import errors:
# Reinstall Python package
reticulate::py_install("copernicusmarine", pip = TRUE)
?copernicus_download
copernicus_is_ready()
Contributions are welcome! Here's how you can help:
# Clone and install development version
git clone https://github.com/HansTtito/copernicusR.git
devtools::install("copernicusR")
# Run tests
devtools::test()
# Check package
devtools::check()
This project is licensed under the MIT License - see the LICENSE file for details.
If you use this package in your research, please cite:
[Hans Ttito] (2025). copernicusR: R Interface to Copernicus Marine Service.
R package version [version]. https://github.com/HansTtito/copernicusR
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.