Issue I have the following gridded dataset from where I create two different dataframes: df_1=read.csv("example.csv") df_2=df_1 df_2$var=df_2$var+50 Then I plot them with ggplot2 and metR: library(ggplot2) library(metR) plot_df_1=ggplot()+ geom_contour_fill(data=df_1, aes(x=lon, y=lat, z=var), alpha=0.9) + scale_fill_steps(name = "", low = "#bdd7e7",
Continue reading