;+ ;CDF2TPLOT ,files,varformat=varformat ; ;Keywords: ; ; VARFORMAT = PATTERN ; PATTERN should be a string (wildcards accepted) that will match the CDF variable that should be made into tplot variables ; PREFIX = STRING ; String that will be pre-pended to all tplot variable names. ; SUFFIX = STRING ; String appended to end of each tplot variable name ; MIDFIX = STRING ; String in the middle of each tplot variable name ; MIDPOS = STRING/NUMBER ; A position for the midfix, either a string ; to be replaced by the midfix, or a position ; at which the midfix is inserted ; VARNAMES = named variable ; CDF variable names are returned in this variable ; /GET_SUPPORT_DATA ; Often required to get support data if the CDF file does not have all the needed depend attributes ; ; record=record if only one record and not full cdf-file is requested ; /ALL ; Retrun all variables ; /CONVERT_INT1_TO_INT2 ; Set this keyword to convert signed one byte to signed 2 byte integers. ; This is useful because IDL does not have the equivalent of INT1 (bytes are unsigned) ; TPLOTNAMES = STRING ; The names of the tplot variables (not the ; CDF variables, which are returned in varnames) ; load_labels=load_labels ;copy labels from labl_ptr_1 in attributes into dlimits ; resolve labels implemented as keyword to preserve backwards ; compatibility. ; smex_epoch=if set, interpret variables called "epoch" as seconds ; from 1968-05-24, rather than the CDF EPoch variable, ; needed to read CDF files created by SDT ;NOTES: ; CDF attributes are obtained from the first file in the array of files input. ; To load attributes from a separate SPDF-style mastercdf, prepend the ; files input with the name of the mastercdf, full-path please. ; ;Author: Davin Larson - 20th century ; ; $LastChangedBy: jimm $ ; $LastChangedDate: 2020-04-06 14:11:58 -0700 (Mon, 06 Apr 2020) $ ; $LastChangedRevision: 28515 $ ; $URL: svn+ssh://thmsvn@ambrosia.ssl.berkeley.edu/repos/spdsoft/tags/spedas_4_0/general/CDF/cdf2tplot.pro $ ; $ID: $ ;- pro cdf2tplot,files,files=files2,prefix=prefix,midfix=midfix,midpos=midpos,suffix=suffix ,newname=newname $ ,varformat=varformat ,varnames=varnames2 $ ,all=all,verbose=verbose, get_support_data=get_support_data, convert_int1_to_int2=convert_int1_to_int2 $ ,record=record, tplotnames=tplotnames,load_labels=load_labels,smex_epoch=smex_epoch dprint,dlevel=4,verbose=verbose,'$Id: cdf2tplot.pro 28515 2020-04-06 21:11:58Z jimm $' vb = keyword_set(verbose) ? verbose : 0 if keyword_set(files2) then files=files2 ; added for backward compatibility and to make it match the documentation ; Load data from file(s) dprint,dlevel=4,verbose=verbose,'Starting CDF file load' if not keyword_set(varformat) then var_type = 'data' if keyword_set(get_support_data) then var_type = ['data','support_data'] cdfi = cdf_load_vars(files,varformat=varformat,var_type=var_type,/spdf_depend, $ varnames=varnames2,verbose=verbose,record=record, convert_int1_to_int2=convert_int1_to_int2, all=all) dprint,dlevel=4,verbose=verbose,'Starting load into tplot' ; Insert into tplot format cdf_info_to_tplot,cdfi,varnames2,all=all,prefix=prefix,midfix=midfix,midpos=midpos,suffix=suffix,newname=newname, $ ;bpif keyword_set(all) eq 0 verbose=verbose, tplotnames=tplotnames,load_labels=load_labels, smex_epoch=smex_epoch dprint,dlevel=4,verbose=verbose,'Starting Clean up' ;bpif keyword_set(all) eq 0 tplot_ptrs = ptr_extract(tnames(/dataquant)) unused_ptrs = ptr_extract(cdfi,except=tplot_ptrs) ptr_free,unused_ptrs end