Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add ncl heat_index_nws outputs #89

Merged
merged 1 commit into from
Oct 15, 2024
Merged

Conversation

cyschneck
Copy link
Contributor

Add heat_index_nws output values to use for heat_index in applications (NCAR/geocat-applications#124)

Output built from ncl script:

; heat_index_nws
; https://www.ncl.ucar.edu/Document/Functions/Contributed/heat_index_nws.shtml

; ncl -n heat_index_nws.ncl >> heat_index_nws_output.txt

print("Temperature (F), Relative Humidity (%), Heat Index (F)")
do tf=0,79
	do rh=1,40
		begin
		heatindex = heat_index_nws(tf,rh,(/2,2/), False)
		print (tf +","+ rh +","+ heatindex)
		end
	end do
end do

do tf=79,100
	do rh=40,100
		begin
		heatindex = heat_index_nws(tf,rh,(/2,2/), True)
		print (tf +","+ rh +","+ heatindex)
		end
	end do
end do

@cyschneck cyschneck self-assigned this Oct 15, 2024
@cyschneck cyschneck marked this pull request as ready for review October 15, 2024 01:41
@cyschneck cyschneck merged commit 678de82 into NCAR:main Oct 15, 2024
@cyschneck cyschneck deleted the heat_index branch October 15, 2024 20:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants