From de1879875a059652e26b8ea8b73291c561e94426 Mon Sep 17 00:00:00 2001 From: bikegeek Date: Thu, 20 May 2021 17:26:26 -0600 Subject: [PATCH] Github Issue #1801: Comment out code that checks for BEST track to support extra-tropical cyclone tracks not verified against BEST tracks. --- met/scripts/Rscripts/plot_tcmpr.R | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/met/scripts/Rscripts/plot_tcmpr.R b/met/scripts/Rscripts/plot_tcmpr.R index cf9c9c45d8..ffeeb2b43c 100644 --- a/met/scripts/Rscripts/plot_tcmpr.R +++ b/met/scripts/Rscripts/plot_tcmpr.R @@ -477,12 +477,14 @@ for(i in 1:length(info_list)) { cat("Found ", length(uniq_list), " unique entries for ", info_list[i], ": ", paste(uniq_list, collapse=", "), "\n", sep=''); + # Comment out to support plotting extra-tropical cyclone tracks not + # verified against BEST tracks # Check for a single BDECK model - if(info_list[i] == "BMODEL" & length(uniq_list) != 1) { - cat("ERROR: Must have exactly 1 BDECK model name. ", - "Try setting \"-bmodel name\" in the \"-filter\" option.\n"); - quit(status=1); - } + #if(info_list[i] == "BMODEL" & length(uniq_list) != 1) { + # cat("ERROR: Must have exactly 1 BDECK model name. ", + # "Try setting \"-bmodel name\" in the \"-filter\" option.\n"); + # quit(status=1); + #} } ########################################################################