File: fillmismatch.nc.dmp

package info (click to toggle)
netcdf-parallel 1%3A4.7.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 105,352 kB
  • sloc: ansic: 229,114; sh: 11,180; yacc: 2,561; makefile: 1,390; lex: 1,173; xml: 173; awk: 2
file content (44 lines) | stat: -rw-r--r-- 730 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
netcdf fillmismatch {
dimensions:
	maxStrlen64 = 64 ;
variables:
	byte b ;
		b:Description = "A test byte" ;
		b:units = "unknown" ;
	int i32 ;
		i32:Description = "A 32 bit test server int" ;
		i32:units = "unknown" ;
		i32:_FillValue = 100 ;
	int ui32 ;
	short i16 ;
	short ui16 ;
	float f32 ;
	double f64 ;
	char s(maxStrlen64) ;
	char u(maxStrlen64) ;

// global attributes:
		:Facility.PrincipleInvestigator = "Mark Abbott\n",
			"Ph.D" ;
		:Facility.DataCenter = "COAS Environmental Computer Facility" ;
		:Facility.DrifterType = "MetOcean WOCE/OCM" ;
data:

 b = 0 ;

 i32 = 1 ;

 ui32 = 0 ;

 i16 = 0 ;

 ui16 = 0 ;

 f32 = 0 ;

 f64 = 1000 ;

 s = "This is a data test string (pass 0)." ;

 u = "http://www.dods.org" ;
}