Advertisement
Guest User

Untitled

a guest
Jan 24th, 2014
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. netcdf CreatedFile_1390567854809 {
  2. dimensions:
  3. stations = 3 ;
  4. profiles = 3 ;
  5. name_strlen = 23 ;
  6. obs = UNLIMITED ; // (31 currently)
  7. variables:
  8. float lat(stations) ;
  9. lat:units = "degrees_north" ;
  10. lat:standard_name = "latitude" ;
  11. float lon(stations) ;
  12. lon:units = "degrees_east" ;
  13. lon:standard_name = "longitude" ;
  14. char station_name(stations, name_strlen) ;
  15. station_name:long_name = "station name" ;
  16. station_name:cf_role = "timeseries_id" ;
  17. char station_info(stations, name_strlen) ;
  18. station_info:long_name = "some kind of station info" ;
  19. int profile(profiles) ;
  20. profile:cf_role = "profile_id" ;
  21. int time(profiles) ;
  22. time:standard_name = "time" ;
  23. time:units = "minutes since 1900-01-01" ;
  24. time:calendar = "Standard" ;
  25. int station_index(profiles) ;
  26. station_index:long_name = "which station this profile is for" ;
  27. station_index:instance_dimension = "station" ;
  28. int row_size(profiles) ;
  29. row_size:long_name = "number of obs for this profile " ;
  30. row_size:sample_dimension = "obs" ;
  31. float z(obs) ;
  32. z:long_name = "Depth" ;
  33. z:standard_name = "Depth" ;
  34. z:units = "meters" ;
  35. z:positive = "down" ;
  36. z:axis = "z" ;
  37. float combined\:salinity(obs) ;
  38. combined\:salinity:long_name = "Salinity " ;
  39. combined\:salinity:standard_name = "Salinity " ;
  40. combined\:salinity:units = "PSU" ;
  41. combined\:salinity:coordinates = "time lon lat z" ;
  42. float combined\:temperature(obs) ;
  43. combined\:temperature:long_name = "Temperature " ;
  44. combined\:temperature:standard_name = "Temperature " ;
  45. combined\:temperature:units = "┬░C" ;
  46. combined\:temperature:coordinates = "time lon lat z" ;
  47.  
  48. // global attributes:
  49. :featureType = "timeSeriesProfile" ;
  50. data:
  51.  
  52. lat = -12.5, -13.5, -12.5 ;
  53.  
  54. lon = -26.5, -25.5, -25.5 ;
  55.  
  56. station_name =
  57. "a",
  58. "b",
  59. "c" ;
  60.  
  61. station_info =
  62. "a",
  63. "b",
  64. "c" ;
  65.  
  66. profile = 0, 1, 2 ;
  67.  
  68. time = 55450080, 54885600, 54563040 ;
  69.  
  70. station_index = 0, 1, 2 ;
  71.  
  72. row_size = 6, 18, 7 ;
  73.  
  74. z = 5, 5, 30, 30, 30, 30, 5, 5, 5, 5, 5, 30, 30, 30, 30, 5, 5, 30, 30, 30,
  75. 30, 30, 30, 30, 30, 30, 5, 5, 30, 30, 30 ;
  76.  
  77. combined\:salinity = 36.953, 36.954, 36.959, 36.959, 36.96, 36.96, 36.997,
  78. 36.997, 36.997, 36.997, 36.997, 36.997, 36.997, 36.996, 36.996, 36.987,
  79. 36.995, 37, 37, 37, 37, 36.997, 36.997, 36.997, 36.403, 36.403, 36.399,
  80. 36.399, 36.4, 36.4, 36.6 ;
  81.  
  82. combined\:temperature = 26.895, 26.895, 26.9, 26.9, 26.902, 26.902, 26.838,
  83. 26.838, 26.838, 26.838, 26.838, 26.849, 26.85, 26.844, 26.844, 26.811,
  84. 26.824, 26.823, 26.823, 26.823, 26.823, 26.81, 26.81, 26.809, 25.656,
  85. 25.656, 25.665, 25.665, 25.657, 25.658, 25.489 ;
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement