This repository has been archived on 2024-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coffee.pygments/tests/examplefiles/ncl/test.ncl
Oleh Prypin 6f43092173
Also add auto-updatable output-based tests to examplefiles (#1689)
Co-authored-by: Georg Brandl <georg@python.org>
2021-01-20 10:48:45 +01:00

20 lines
No EOL
473 B
Text

load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl"
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl"
begin
int_num = 1
float_num = 0.1
str = "A void map"
array = (/1, 2, 3, 4, 5/)
wks = gsn_open_wks("X11", "test_for_pygments")
res = True
res@mpMinLonF = 90.
res@mpMaxLonF = 180.
res@mpMinLatF = 0.
res@mpMaxLatF = 90.
plot = gsn_csm_map_ce(wks, res)
end