dimension rearrange error in new NCL

From: Erik Noble <enoble_at_nyahnyahspammersnyahnyah>
Date: Fri, 27 Mar 2009 17:13:35 -0400

Hi. I keep running into an error when I try to rearrange dimensions (below,
ncl 13>). The error also closes NCL. I have used these steps without any
problems on similar data with the earlier version of NCL. What could be
causing this?Could I have some help?
sincerely,
Erik

Last login: Thu Mar 26 15:01:28 on ttys000
noble:~ enoble$ cd
/Volumes/Noble-Terabyte/APPLE_WRF_model_Output/WRF-FNL_SOP3_ifort11.0_ICC
noble:WRF-FNL_SOP3_ifort11.0_ICC enoble$ ncl
 Copyright (C) 1995-2009 - All Rights Reserved
 University Corporation for Atmospheric Research
 NCAR Command Language Version 5.1.0
 The use of this software is governed by a License Agreement.
 See http://www.ncl.ucar.edu/ for more details.
ncl 0> load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"
ncl 1> load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl"
ncl 2> load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl"
ncl 3> load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/shea_util.ncl"
ncl 4> load "$NCARG_ROOT/lib/ncarg/nclscripts/wrf/WRFUserARW.ncl"
ncl 5> wrfoutfile="Region_1_Rain-Bi_Interp.nc"
ncl 6> obsfile =
"/Volumes/Data_and_Models/Precipitation_data/observed/TRMM/ASCII/Daily_TRMM_2006-09-.
5x.5.nc"
ncl 7> a = addfile (wrfoutfile,"r")
ncl 8> b = addfile (obsfile,"r")
ncl 9> rain = a->RAIN
ncl 10> printVarSummary(rain)

Variable: rain
Type: float
Total Size: 33852 bytes
            8463 values
Number of Dimensions: 3
Dimensions and sizes: [time | 31] x [lat | 13] x [lon | 21]
Coordinates:
            time: [1..30]
            lat: [ 5..11]
            lon: [-30..-20]
Number Of Attributes: 4
  description : Total Precipitation Interpolated to Lat and Lon Grid
  longname : Total Precipitation
  units : mm
  _FillValue : -999
ncl 11> rainb = b->RAIN(0:30,{5:11},{-30:-20})
ncl 12> printVarSummary(rainb)

Variable: rainb
Type: float
Total Size: 32760 bytes
            8190 values
Number of Dimensions: 3
Dimensions and sizes: [time | 31] x [lat | 13] x [lon | 21]
Coordinates:
            time: [1..30]
            lat: [ 5..11]
            lon: [-30..-20]
Number Of Attributes: 2
  units : mm
  _FillValue : -999
ncl 13> raintest = rain(time|:, lon|:, lat|:)
fatal:Subscript out of range, error in subscript #0
fatal:An error occurred reading unknown
Bus error
noble:WRF-FNL_SOP3_ifort11.0_ICC enoble$

_______________________________________________
ncl-talk mailing list
List instructions, subscriber options, unsubscribe:
http://mailman.ucar.edu/mailman/listinfo/ncl-talk
Received on Fri Mar 27 2009 - 15:13:35 MDT

This archive was generated by hypermail 2.2.0 : Mon Apr 06 2009 - 10:23:30 MDT