File: nc4_strings_comp.nc.hyrax

package info (click to toggle)
netcdf-parallel 1%3A4.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 113,164 kB
  • sloc: ansic: 267,893; sh: 12,869; cpp: 5,822; yacc: 2,613; makefile: 1,813; lex: 1,216; xml: 173; awk: 2
file content (32 lines) | stat: -rw-r--r-- 794 bytes parent folder | download | duplicates (4)
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
netcdf nc4_strings_comp {
dimensions:
	lat = 6 ;
	lon = 5 ;
variables:
	int lat(lat) ;
	int lon(lon) ;
	string station(lat, lon) ;
		string station:who = "james" ;
		string station:names = "site_1", "site_2", "site_3" ;
		string station:_edu.ucar.maps = "/lat", "/lon" ;
	string scan_line(lon) ;
		string scan_line:_edu.ucar.maps = "/lon" ;
	string codec_name ;
data:

 lat = 0, 10, 20, 30, 40, 50 ;

 lon = -140, -118, -96, -84, -52 ;

 station =
  "one", "two", "three", "four", "five",
  "one_b", "two_b", "three_b", "four_b", "five_b",
  "one_c", "two_c", "three_c", "four_c", "five_c",
  "one", "two", "three", "four", "five",
  "one", "two", "three", "four", "five",
  "one_f", "two_f", "three_f", "four_f", "five_f" ;

 scan_line = "r", "r1", "r2", "r3", "r4" ;

 codec_name = "mp3" ;
}