forked from sternalon/Scripts_and_analysis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcreate_one_file.py
executable file
·94 lines (64 loc) · 1.97 KB
/
create_one_file.py
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/usr/bin/env python
###############################################################################################
from netCDF4 import Dataset
import numpy as np
import os
import numpy
import netCDF4 as nc
#import matplotlib
#import matplotlib.pyplot as plt
#from pylab import *
#import pdb
#import argparse
#This combination allows you to access the varibale imputted from the command line.
#import sys
#Clear screen
def main():
os.system('clear')
input_geometry_filename='input_files/Isomip_ocean_geometry.nc'
#Flags
new_filename='output_files/one_file.nc'
#f=Dataset(input_geometry_filename,'r')
#g=Dataset(new_filename,'w') # w if for creating a file
with nc.Dataset(input_geometry_filename) as file:
Depth = file.variables['D'][:,:]
M= Depth.shape
ny=M[0]
nx=M[1]
print nx,ny
#Creating the topog file
#g=Dataset(new_filename,'w') # w if for creating a file
g=nc.Dataset(new_filename,'w',format='NETCDF3_CLASSIC')
lat=g.createDimension('lat',ny)
lon=g.createDimension('lon',nx)
time=g.createDimension('time', None)
lat=g.createVariable('lat','f4',('lat'))
lon=g.createVariable('lon','f4',('lon'))
time=g.createVariable('time','f4',('time'))
one_var=g.createVariable('one_var','f4',('lat','lon'))
time.long_name = "time" ;
time.units = "days since 1900-01-01 00:00:00" ;
time.cartesian_axis = "T" ;
time.calendar_type = "NOLEAP" ;
time.calendar = "NOLEAP" ;
time.bounds = "time_bounds" ;
time.modulo = " " ;
lon.units = "degrees_E" ;
lon.cartesian_axis = "X" ;
#lon.edges = "xb" ;
#lat.long_name = "latitude" ;
lat.units = "degrees_N" ;
lat.cartesian_axis = "Y" ;
#lat.edges = "yb" ;
one_var.long_name="unnamed_variable"
one_var.units="m/s"
g.variables['one_var'][:]=1.
g.variables['lon'][:]=np.linspace(0.5,239.5,nx,endpoint=True)
g.variables['lat'][:]=np.linspace(0.5,39.5,ny,endpoint=True)
g.variables['time'][0]=1.
g.sync()
g.close()
print 'Script complete'
if __name__ == '__main__':
main()
#sys.exit(main())