File type modifiers for export

Table 20. Valid file type modifiers for export: All file formats
ModifierDescription
lobsinfile lob-path specifies the path to the files containing LOB data.

Each path contains at least one file that contains at least one LOB pointed to by a Lob Location Specifier (LLS) in the data file. The LLS is a string representation of the location of a LOB in a file stored in the LOB file path. The format of an LLS isfilename.ext.nnn.mmm/, where filename.ext is the name of the file that contains the LOB, nnn is the offset in bytes of the LOB within the file, and mmm is the length of the LOB in bytes. For example, if the string db2exp.001.123.456/ is stored in the data file, the LOB is located at offset 123 in the file db2exp.001, and is 456 bytes long.

|If you specify the "lobsinfile" modifier when using EXPORT, the LOB data |is placed in the locations specified by the LOBS TO clause. Otherwise the |LOB data is sent to the current working directory. The LOBS TO clause specifies one |or more paths to directories in which the LOB files are to be stored. There |will be at least one file per LOB path, and each file will contain at least|one LOB.

To indicate a null LOB , enter the size as -1. If the size is specified as 0, it is treated as a 0 length LOB. For null LOBS with length of -1, the offset and the file name are ignored. For example, the LLS of a null LOB might be db2exp.001.7.-1/.

Table 21. Valid file type modifiers for export: DEL (delimited ASCII) file format
ModifierDescription
chardelx x is a single character string delimiter. The default value is a double quotation mark ("). The specified character is used in place of double quotation marks to enclose a character string.2 If you want to explicitly specify the double quotation mark as the character string delimiter, it should be specified as follows:
   modified by chardel"" 

The single quotation mark (') can also be specified as a character string delimiter as follows:

   modified by chardel'' 
codepage=x x is an ASCII character string. The value is interpreted as the code page of the data in the output data set. Converts character data to this code page from the application code page during the export operation.

For pure DBCS (graphic), mixed DBCS, and EUC, delimiters are restricted to the range of x00 to x3F, inclusive.

Note:
The   codepage  modifier cannot be used with the   lobsinfile  modifier.
coldelx x is a single character column delimiter. The default value is a comma (,). The specified character is used in place of a comma to signal the end of a column.2

In the following example, coldel; causes the export utility to interpret any semicolon (;) it encounters as a column delimiter:

   db2 "export to temp of del modified by coldel;
      select * from staff where dept = 20" 
datesisoDate format. Causes all date data values to be exported in ISO format ("YYYY-MM-DD").3
decplusblankPlus sign character. Causes positive decimal values to be prefixed with a blank space instead of a plus sign (+). The default action is to prefix positive decimal values with a plus sign.
decptx x is a single character substitute for the period as a decimal point character. The default value is a period (.). The specified character is used in place of a period as a decimal point character.2
dldelx x is a single character DATALINK delimiter. The default value is a semicolon (;). The specified character is used in place of a semicolon as the inter-field separator for a DATALINK value. It is needed because a DATALINK value can have more than one sub-value. 2
Note:
x  must not be the same character specified as the row, column, or character string delimiter.
2nochardel 2Column data will not be surrounded by character delimiters. This option should 2not be specified if the data is intended to be imported or loaded using DB2. 2It is provided to support vendor data files that do not have character delimiters. 2Improper usage might result in data loss or corruption.22

This option cannot be specified with chardelx or nodoubledel. 2These are mutually exclusive options.

nodoubledelSuppresses recognition of double character delimiters.2
3striplzeros 3Removes the leading zeros from all exported decimal columns.33

Consider the following example:3

3
   db2 create table decimalTable ( c1 decimal( 31, 2 ) )
3    db2 insert into decimalTable values ( 1.1 )
3    
3    db2 export to data of del select * from decimalTable
3     
3    db2 export to data of del modified by STRIPLZEROS 
3       select * from decimalTable 

3In the first export operation, the content of the exported file data will be 3+00000000000000000000000000001.10. In the second operation, which is identical to the 3first except for the striplzeros modifier, the content of the exported file data will be +1.10.

2timestampformat="x" 2x is the format of the time stamp in the source 2file.4 Valid time stamp elements are:22
  YYYY   - Year (four digits ranging from 0000 - 9999)
2   M      - Month (one or two digits ranging from 1 - 12)
2   MM     - Month (two digits ranging from 01 - 12;
2               mutually exclusive with M and MMM)
2   MMM    - Month (three-letter case-insensitive abbreviation for 
2               the month name; mutually exclusive with M and MM)              
2   D      - Day (one or two digits ranging from 1 - 31)
2   DD     - Day (two digits ranging from 1 - 31; mutually exclusive with D)
2   DDD    - Day of the year (three digits ranging from 001 - 366; 
2               mutually exclusive with other day or month elements)
2   H      - Hour (one or two digits ranging from 0 - 12
2               for a 12 hour system, and 0 - 24 for a 24 hour system)
2   HH     - Hour (two digits ranging from 0 - 12 
2               for a 12 hour system, and 0 - 24 for a 24 hour system; 
2               mutually exclusive with H)
2   M      - Minute (one or two digits ranging from 0 - 59)
2   MM     - Minute (two digits ranging from 0 - 59;
2               mutually exclusive with M, minute)
2   S      - Second (one or two digits ranging from 0 - 59)
2   SS     - Second (two digits ranging from 0 - 59;
2               mutually exclusive with S)
2   SSSSS  - Second of the day after midnight (5 digits
2               ranging from 00000 - 86399; mutually
2               exclusive with other time elements)
2   UUUUUU - Microsecond (6 digits ranging from 000000 - 999999; 
2               mutually exclusive with all other microsecond elements)
2   UUUUU  - Microsecond (5 digits ranging  from 00000 - 99999,  
2               maps to range from 000000 - 999990; 
2               mutually exclusive with all other microseond elements)
2   UUUU   - Microsecond (4 digits ranging from 0000 - 9999, 
2               maps to range from 000000 - 999900; 
2               mutually exclusive with all other microseond elements)
2   UUU    - Microsecond (3 digits ranging from 000 - 999, 
2               maps to range from 000000 - 999000; 
2               mutually exclusive with all other microseond elements)
2   UU     - Microsecond (2 digits ranging from 00 - 99, 
2               maps to range from 000000 - 990000; 
2               mutually exclusive with all other microseond elements)
2   U      - Microsecond (1 digit ranging from 0 - 9, 
2               maps to range from 000000 - 900000; 
2               mutually exclusive with all other microseond elements)
2   TT     - Meridian indicator (AM or PM) 
22

Following is an example of a time stamp format:2

2
   "YYYY/MM/DD HH:MM:SS.UUUUUU" 
22

The MMM element will produce the following values: 2'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 2and 'Dec'. 'Jan' is equal to month 1, and 'Dec' is equal to month 12.

22

The following example illustrates how to export data containing user-defined time stamp 2formats from a table called 'schedule':2

2
   db2 export to delfile2 of del
2       modified by timestampformat="yyyy.mm.dd hh:mm tt"
2       select * from schedule 

Table 22. Valid file type modifiers for export: WSF file format
ModifierDescription
1Creates a WSF file that is compatible with Lotus 1-2-3 Release 1, or Lotus 1-2-3 Release 1a.5 This is the default.
2Creates a WSF file that is compatible with Lotus Symphony Release 1.0.5
3Creates a WSF file that is compatible with Lotus 1-2-3 Version 2, or Lotus Symphony Release 1.1.5
4Creates a WSF file containing DBCS characters.

Notes:
  1. The export utility does not issue a warning if an attempt is made to use unsupported file types with the MODIFIED BY option. If this is attempted, the export operation fails, and an error code is returned.
  2. Delimiter restrictions for moving data lists restrictions that apply to the characters that can be used as delimiter overrides.
  3. The export utility normally writes
    • date data in YYYYMMDD format
    • char(date) data in "YYYY-MM-DD" format
    • time data in "HH.MM.SS" format
    • time stamp data in "YYYY-MM-DD-HH. MM.SS.uuuuuu" format
    Data contained in any datetime columns specified in the SELECT statement for the export operation will also be in these formats.
  4. 2For time stamp formats, care must be taken to avoid ambiguity 2between the month and the minute descriptors, since they both use the letter 2M. A month field must be adjacent to other date fields. A minute field must 2be adjacent to other time fields. Following are some ambiguous time stamp 2formats:22
       "M" (could be a month, or a minute)
    2    "M:M" (Which is which?)
    2    "M:YYYY:M" (Both are interpreted as month.)
    2    "S:M:YYYY" (adjacent to both a time value and a date value) 
    In ambiguous 2cases, the utility will report an error message, and the operation will fail.22

    Following are some unambiguous time stamp formats:2

    2
       "M:YYYY" (Month)
    2    "S:M" (Minute)
    2    "M:YYYY:S:M" (Month....Minute)
    2    "M:H:YYYY:M:D" (Minute....Month) 
  5. These files can also be directed to a specific product by specifying an L for Lotus 1-2-3, or an S for Symphony in the filetype-mod parameter string. Only one value or product designator can be specified.
Linking files for Subswath 1 ... Linking files for Subswath 2 ... Linking files for Subswath 3 ... [1] 22215 [2] 22216 [3] 22217 [3] - Done p2p_processing.csh S1_TOPS ... [2] - Done p2p_processing.csh S1_TOPS ... [1] + Done p2p_processing.csh S1_TOPS ... *** buffer overflow detected ***: terminated Aborted (core dumped) *** buffer overflow detected ***: terminated Aborted (core dumped) *** buffer overflow detected ***: terminated Aborted (core dumped) Merging START Number of Files to be merged is 3 merge_swath [ERROR]: Cannot find file ../F1/intf/2025056_2025104/phasefilt.grd merge_swath [ERROR]: Cannot find file ../F1/intf/2025056_2025104/phasefilt.grd merge_swath [ERROR]: File ../F1/intf/2025056_2025104/phasefilt.grd not found [Session merge_swath (0)]: Error returned from GMT API: GMT_FILE_NOT_FOUND (16) cannot open grids ../F1/intf/2025056_2025104/phasefilt.grd Number of Files to be merged is 3 merge_swath [ERROR]: Cannot find file ../F1/intf/2025056_2025104/corr.grd merge_swath [ERROR]: Cannot find file ../F1/intf/2025056_2025104/corr.grd merge_swath [ERROR]: File ../F1/intf/2025056_2025104/corr.grd not found [Session merge_swath (0)]: Error returned from GMT API: GMT_FILE_NOT_FOUND (16) cannot open grids ../F1/intf/2025056_2025104/corr.grd Number of Files to be merged is 3 merge_swath [ERROR]: Cannot find file ../F1/intf/2025056_2025104/mask.grd merge_swath [ERROR]: Cannot find file ../F1/intf/2025056_2025104/mask.grd merge_swath [ERROR]: File ../F1/intf/2025056_2025104/mask.grd not found [Session merge_swath (0)]: Error returned from GMT API: GMT_FILE_NOT_FOUND (16) cannot open grids ../F1/intf/2025056_2025104/mask.grd Merging END Recomputing the projection LUT... grep: S1_20250226_113936_F1.PRM: 没有那个文件或目录 error - could not open file S1_20250226_113936_F1.PRM couldn't open master.PRM Usage: SAT_llt2rat master.PRM prec [-bo[s|d]] < inputfile > outputfile master.PRM - parameter file for master image and points to LED orbit file precise - (0) standard back geocoding, (1) - polynomial refinenent (slower) inputfile - lon, lat, elevation [ASCII] outputfile - range, azimuth, elevation(ref to radius in PRM), lon, lat [ASCII default] -bos or -bod - binary single or double precision output (only output results within data coverage, PRM num_lines, num_rng_bins ) example: SAT_llt2rat master.PRM 0 < topo.llt > topo.ratll error - could not open file S1_20250226_113936_F1.PRM grdinfo [ERROR]: Cannot find file phasefilt.grd grdinfo [ERROR]: Must specify one or more input files Usage: landmask.csh region_cut[0/10600/0/27648] make a landmask in radar coordinates, needs to run with trans.dat NOTE: The region_cut can be specified in batch.config file SNAPHU.CSH - START threshold_snaphu: 0.1 grdmath [ERROR]: corr_patch.grd is not a number, operator or file name grdmath [ERROR]: corr_patch.grd is not a number, operator or file name grdmath [ERROR]: mask2_patch.grd is not a number, operator or file name grd2xyz [ERROR]: Cannot find file phase_patch.grd grd2xyz [ERROR]: Cannot find file phase_patch.grd grd2xyz [ERROR]: File phase_patch.grd not found [Session gmt (0)]: Error returned from GMT API: GMT_FILE_NOT_FOUND (16) grd2xyz [ERROR]: Cannot find file corr_tmp.grd grd2xyz [ERROR]: Cannot find file corr_tmp.grd grd2xyz [ERROR]: File corr_tmp.grd not found [Session gmt (0)]: Error returned from GMT API: GMT_FILE_NOT_FOUND (16) unwrapping phase with snaphu - higher threshold for faster unwrapping grdinfo [ERROR]: Cannot find file phase_patch.grd grdinfo [ERROR]: Must specify one or more input files snaphu v2.0.4 32 parameters input from file /usr/local/GMTSAR/share/gmtsar/snaphu/config/snaphu.conf.brief (297 lines total) not enough input arguments. type snaphu -h for help grdinfo [ERROR]: Cannot find file phase_patch.grd grdinfo [ERROR]: Must specify one or more input files grdinfo [ERROR]: Cannot find file phase_patch.grd grdinfo [ERROR]: Must specify one or more input files xyz2grd [ERROR]: Must specify -R option xyz2grd [ERROR]: Option -I: Must specify positive increment(s) grdinfo [ERROR]: Cannot find file phase_patch.grd grdinfo [ERROR]: Must specify one or more input files grdinfo [ERROR]: Cannot find file phase_patch.grd grdinfo [ERROR]: Must specify one or more input files xyz2grd [ERROR]: Must specify -R option xyz2grd [ERROR]: Option -I: Must specify positive increment(s) grdmath [ERROR]: tmp.grd is not a number, operator or file name mv: 对 'tmp.grd' 调用 stat 失败: 没有那个文件或目录 grdgradient [ERROR]: Cannot find file unwrap.grd grdinfo [ERROR]: Cannot find file unwrap.grd grdinfo [ERROR]: Must specify one or more input files makecpt [ERROR]: Option T: Must specify valid min[/max[/inc[<unit>|+n]]] option grdimage [ERROR]: Cannot find file unwrap.grd grdimage [ERROR]: Option -I: Must specify intensity file, value, or modifiers psscale [WARNING]: No country code matching unwrap.grd (skipped) psscale [ERROR]: Color palette table unwrap.cpt is empty [Session gmt (0)]: Error returned from GMT API: GMT_CPT_READ_ERROR (8) [Session gmt (0)]: Error returned from GMT API: GMT_CPT_READ_ERROR (8) psconvert [ERROR]: The file unwrap.ps has no BoundingBox in the first 20 lines or last 256 bytes. Use -A option. Unwrapped phase map: unwrap.pdf SNAPHU.CSH - END GEOCODE-START proj_ra2ll.csh grd2xyz [ERROR]: Cannot find file phasefilt.grd grd2xyz [ERROR]: Cannot find file phasefilt.grd grd2xyz [ERROR]: File phasefilt.grd not found [Session gmt (0)]: Error returned from GMT API: GMT_FILE_NOT_FOUND (16) gmtinfo [ERROR]: No input data found! surface [ERROR]: Must specify -R option surface [INFORMATION]: Provides 5, expects 3-column binary data surface [ERROR]: Must specify -R option surface [INFORMATION]: Provides 5, expects 3-column binary data grdtrack [ERROR]: Cannot find file raln.grd grdtrack [ERROR]: Cannot find file ralt.grd grdtrack [ERROR]: Must specify -G at least once gmtconvert [WARNING]: File <stdin> is empty! gmtconvert [WARNING]: No data records provided Sampling in geocoordinates with 50 meter pixels ... gmtinfo [ERROR]: No input data found! range: Subscript out of range. gmtmath [ERROR]: Operation "DIV" requires 2 operands gmtmath [ERROR]: Operation "MUL" requires 2 operands gmtinfo [ERROR]: No input data found! blockmedian [ERROR]: Unable to decode as a floating point number blockmedian [ERROR]: Option -I parsing failure. Correct syntax: -I<xinc>[+e|n][/<yinc>[+e|n]] Specify increment(s) and optionally append units or modifiers. For geographic regions in degrees you can optionally append units from this list: (d)egree [Default], (m)inute, (s)econd, m(e)ter, (f)oot, (k)ilometer, (M)ile, (n)autical mile, s(u)rvey foot. +e Adjust the region to fit increments [Adjust increment to fit domain]. +n Increment specifies the number of nodes instead. Then, the actual increments are calculated from the given domain and node- registration settings (see Appendix B for details). Note: If -R<grdfile> was used then -I (and -R and maybe -r) have been set; use -I to override those increments. blockmedian [ERROR]: Must specify -R option blockmedian [ERROR]: Option -I: Must specify positive increment(s) blockmedian [INFORMATION]: Provides 3, expects 3-column binary data xyz2grd [ERROR]: Unable to decode as a floating point number xyz2grd [ERROR]: Option -I parsing failure. Correct syntax: -I<xinc>[+e|n][/<yinc>[+e|n]] Specify increment(s) and optionally append units or modifiers. For geographic regions in degrees you can optionally append units from this list: (d)egree [Default], (m)inute, (s)econd, m(e)ter, (f)oot, (k)ilometer, (M)ile, (n)autical mile, s(u)rvey foot. +e Adjust the region to fit increments [Adjust increment to fit domain]. +n Increment specifies the number of nodes instead. Then, the actual increments are calculated from the given domain and node- registration settings (see Appendix B for details). Note: If -R<grdfile> was used then -I (and -R and maybe -r) have been set; use -I to override those increments. xyz2grd [ERROR]: Must specify -R option xyz2grd [ERROR]: Option -I: Must specify positive increment(s) grdmath [ERROR]: corr.grd is not a number, operator or file name grdmath [ERROR]: phasefilt.grd is not a number, operator or file name proj_ra2ll.csh grd2xyz [ERROR]: Cannot find file phasefilt_mask.grd grd2xyz [ERROR]: Cannot find file phasefilt_mask.grd grd2xyz [ERROR]: File phasefilt_mask.grd not found [Session gmt (0)]: Error returned from GMT API: GMT_FILE_NOT_FOUND (16) gmtinfo [ERROR]: No input data found! surface [ERROR]: Must specify -R option surface [INFORMATION]: Provides 5, expects 3-column binary data surface [ERROR]: Must specify -R option surface [INFORMATION]: Provides 5, expects 3-column binary data grdtrack [ERROR]: Cannot find file raln.grd grdtrack [ERROR]: Cannot find file ralt.grd grdtrack [ERROR]: Must specify -G at least once gmtconvert [WARNING]: File <stdin> is empty! gmtconvert [WARNING]: No data records provided Sampling in geocoordinates with 50 meter pixels ... gmtinfo [ERROR]: No input data found! range: Subscript out of range. gmtmath [ERROR]: Operation "DIV" requires 2 operands gmtmath [ERROR]: Operation "MUL" requires 2 operands gmtinfo [ERROR]: No input data found! blockmedian [ERROR]: Unable to decode as a floating point number blockmedian [ERROR]: Option -I parsing failure. Correct syntax: -I<xinc>[+e|n][/<yinc>[+e|n]] Specify increment(s) and optionally append units or modifiers. For geographic regions in degrees you can optionally append units from this list: (d)egree [Default], (m)inute, (s)econd, m(e)ter, (f)oot, (k)ilometer, (M)ile, (n)autical mile, s(u)rvey foot. +e Adjust the region to fit increments [Adjust increment to fit domain]. +n Increment specifies the number of nodes instead. Then, the actual increments are calculated from the given domain and node- registration settings (see Appendix B for details). Note: If -R<grdfile> was used then -I (and -R and maybe -r) have been set; use -I to override those increments. blockmedian [ERROR]: Must specify -R option blockmedian [ERROR]: Option -I: Must specify positive increment(s) blockmedian [INFORMATION]: Provides 3, expects 3-column binary data xyz2grd [ERROR]: Unable to decode as a floating point number xyz2grd [ERROR]: Option -I parsing failure. Correct syntax: -I<xinc>[+e|n][/<yinc>[+e|n]] Specify increment(s) and optionally append units or modifiers. For geographic regions in degrees you can optionally append units from this list: (d)egree [Default], (m)inute, (s)econd, m(e)ter, (f)oot, (k)ilometer, (M)ile, (n)autical mile, s(u)rvey foot. +e Adjust the region to fit increments [Adjust increment to fit domain]. +n Increment specifies the number of nodes instead. Then, the actual increments are calculated from the given domain and node- registration settings (see Appendix B for details). Note: If -R<grdfile> was used then -I (and -R and maybe -r) have been set; use -I to override those increments. xyz2grd [ERROR]: Must specify -R option xyz2grd [ERROR]: Option -I: Must specify positive increment(s) proj_ra2ll.csh grd2xyz [ERROR]: Cannot find file corr.grd grd2xyz [ERROR]: Cannot find file corr.grd grd2xyz [ERROR]: File corr.grd not found [Session gmt (0)]: Error returned from GMT API: GMT_FILE_NOT_FOUND (16) gmtinfo [ERROR]: No input data found! surface [ERROR]: Must specify -R option surface [INFORMATION]: Provides 5, expects 3-column binary data surface [ERROR]: Must specify -R option surface [INFORMATION]: Provides 5, expects 3-column binary data grdtrack [ERROR]: Cannot find file raln.grd grdtrack [ERROR]: Cannot find file ralt.grd grdtrack [ERROR]: Must specify -G at least once gmtconvert [WARNING]: File <stdin> is empty! gmtconvert [WARNING]: No data records provided Sampling in geocoordinates with 50 meter pixels ... gmtinfo [ERROR]: No input data found! range: Subscript out of range. gmtmath [ERROR]: Operation "DIV" requires 2 operands gmtmath [ERROR]: Operation "MUL" requires 2 operands gmtinfo [ERROR]: No input data found! blockmedian [ERROR]: Unable to decode as a floating point number blockmedian [ERROR]: Option -I parsing failure. Correct syntax: -I<xinc>[+e|n][/<yinc>[+e|n]] Specify increment(s) and optionally append units or modifiers. For geographic regions in degrees you can optionally append units from this list: (d)egree [Default], (m)inute, (s)econd, m(e)ter, (f)oot, (k)ilometer, (M)ile, (n)autical mile, s(u)rvey foot. +e Adjust the region to fit increments [Adjust increment to fit domain]. +n Increment specifies the number of nodes instead. Then, the actual increments are calculated from the given domain and node- registration settings (see Appendix B for details). Note: If -R<grdfile> was used then -I (and -R and maybe -r) have been set; use -I to override those increments. blockmedian [ERROR]: Must specify -R option blockmedian [ERROR]: Option -I: Must specify positive increment(s) blockmedian [INFORMATION]: Provides 3, expects 3-column binary data xyz2grd [ERROR]: Unable to decode as a floating point number xyz2grd [ERROR]: Option -I parsing failure. Correct syntax: -I<xinc>[+e|n][/<yinc>[+e|n]] Specify increment(s) and optionally append units or modifiers. For geographic regions in degrees you can optionally append units from this list: (d)egree [Default], (m)inute, (s)econd, m(e)ter, (f)oot, (k)ilometer, (M)ile, (n)autical mile, s(u)rvey foot. +e Adjust the region to fit increments [Adjust increment to fit domain]. +n Increment specifies the number of nodes instead. Then, the actual increments are calculated from the given domain and node- registration settings (see Appendix B for details). Note: If -R<grdfile> was used then -I (and -R and maybe -r) have been set; use -I to override those increments. xyz2grd [ERROR]: Must specify -R option xyz2grd [ERROR]: Option -I: Must specify positive increment(s) grdinfo [ERROR]: Cannot find file corr.grd grdinfo [ERROR]: Must specify one or more input files makecpt [ERROR]: Option T: Must specify valid min/max/inc[<unit>|+n] option grdinfo [ERROR]: Cannot find file phasefilt_ll.grd grdinfo [ERROR]: Must specify one or more input files gmtmath [ERROR]: Operation "INV" requires 1 operands grdimage [ERROR]: Cannot find file phasefilt_ll.grd Make phasefilt_ll.kml and phasefilt_ll.png psconvert [ERROR]: Option -E: No argument provided rm: No match. grdinfo [ERROR]: Cannot find file phasefilt_mask_ll.grd grdinfo [ERROR]: Must specify one or more input files gmtmath [ERROR]: Operation "INV" requires 1 operands grdimage [ERROR]: Cannot find file phasefilt_mask_ll.grd Make phasefilt_mask_ll.kml and phasefilt_mask_ll.png psconvert [ERROR]: Option -E: No argument provided rm: No match. grdinfo [ERROR]: Cannot find file corr_ll.grd grdinfo [ERROR]: Must specify one or more input files gmtmath [ERROR]: Operation "INV" requires 1 operands grdimage [ERROR]: Cannot find file corr_ll.grd Make corr_ll.kml and corr_ll.png psconvert [ERROR]: Option -E: No argument provided rm: No match. GEOCODE END rm: No match. DInSAR processing completed successfully.
05-14
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值