summaryrefslogtreecommitdiff
path: root/tests/examplefiles/test.ncl
blob: f20f81599534787bdb82d8a0d20a20cb40a6e2c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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