Bug (?) in panel

From: Rodrigo Colpo <rodrigocolpo2_at_nyahnyahspammersnyahnyah>
Date: Mon Aug 05 2013 - 07:03:16 MDT

Hello, I made a script with the following structure: plotOne = new(3, graphic) plotTwo = new(3, graphic) plotOne(0) = ... plotOne(1) = ... plotOne(2) = ... plotTwo(0) = ... plotTwo(1) = ... plotTwo(2) = ... gsn_panel(wksOne,plotOne,(/1,3/),resOne) gsn_panel(wksTwo,plotTwo,(/1,3/),resTwo) But only the first graph (plotOne(0) and plotTwo(0)) was ploted. For the other 2 I have the message "data missing" (or something similar) in the center of the graph, but I have the axis correctly. After several attempts and two days of work a found that only the following structure would work: plotOne = new(3, graphic) plotOne(0) = ... plotOne(1) = ... plotOne(2) = ...gsn_panel(wksOne,plotOne,(/1,3/),resOne) plotTwo = new(3, graphic) plotTwo(0) = ... plotTwo(1) = ... plotTwo(2) = ...gsn_panel(wksTwo,plotTwo,(/1,3/),resTwo) So, I can not deal with two files at the same time. Is this a bug? Best wishes, Rodrigo.

_______________________________________________
ncl-talk mailing list
List instructions, subscriber options, unsubscribe:
http://mailman.ucar.edu/mailman/listinfo/ncl-talk
Received on Mon Aug 5 07:03:27 2013

This archive was generated by hypermail 2.1.8 : Wed Aug 07 2013 - 13:59:00 MDT