Skip to content

String Lookup failed for name "lead_time" #1797

Locked Answered by JohnHalleyGotway
craigrj asked this question in Configuration
Discussion options

You must be logged in to vote

@craigrj my guess would be that it's an issue with how the "lead_time" setting is formatted.

For example, running this command:

plot_data_plane wrfprs_ruc13_12.tm00_G212 plot.ps 'name="TMP"; level="P500"; lead_time=12;'

Reproduces that warning message:

WARNING: Dictionary::lookup_string() -> string lookup failed for name "lead_time"

Note that the "lead_time" should be specified as a string, with double-quotes around. Rerunning that way, the warning message goes away:

plot_data_plane wrfprs_ruc13_12.tm00_G212 plot.ps 'name="TMP"; level="P500"; lead_time="12";'

Put simply, the lead_time should be defined as a string rather than a number.

Can you confirm that that was the source of the pr…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by JohnHalleyGotway
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment