df_to_netcdf | R Documentation |
This function converts a data frame to a NetCDF file for a list of points (rows are different stations). It attempts to identify CF-compliant coordinate variables, such as latitude and longitude, using default or specified column names.
df_to_netcdf(
df,
output_file,
lat_var = "lat",
lon_var = "lon",
global_atts = list(),
units = list(),
longnames = list(),
cf_standard_names = list()
)
df |
A data frame containing the data to be converted. |
output_file |
The path to the output NetCDF file. |
lat_var |
The name of the latitude variable in the data frame. Default is "lat". |
lon_var |
The name of the longitude variable in the data frame. Default is "lon". |
global_atts |
A list of global attributes to add to the NetCDF file. Default is an empty list. |
units |
A list of units for each variable in the data frame. Default is an empty list. |
longnames |
A list of long names for each variable in the data frame. Default is an empty list. |
cf_standard_names |
A list of CF standard names for each variable in the data frame. Default is an empty list. |
None. The function writes the data to a NetCDF file.
# Example data frame
example_df <- data.frame(
lat = c(-35.0, -34.5, -34.0),
lon = c(150.0, 150.5, 151.0),
variable1 = c(0.1, 0.2, 0.3),
variable2 = c(0.4, 0.5, 0.6)
)
# Define units, longnames, and CF standard names
units_list <- list(variable1 = "m", variable2 = "cm")
longnames_list <- list(variable1 = "Variable 1 Longname",
variable2 = "Variable 2 Longname")
cf_standard_names_list <- list(variable1 = "sea_surface_height",
variable2 = "sea_water_temperature")
tf <- tempfile("test.nc")
# Convert example data frame to NetCDF
df_to_netcdf(example_df, tf, global_atts = list(
title = "Example NetCDF",
summary = "This is a test NetCDF file created from an example data frame.",
source = "Example data",
references = "N/A"
), units = units_list, longnames = longnames_list,
cf_standard_names = cf_standard_names_list)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.