Skip to content
Snippets Groups Projects
Commit 8dc6f622 authored by jacques.grelet_ird.fr's avatar jacques.grelet_ird.fr
Browse files

add ctd.header section

parent 333dd815
No related branches found
No related tags found
No related merge requests found
......@@ -8,28 +8,41 @@ print(cfg['global']['author'])
d = cfg['global']
print(d, end='\n')
print(end='\n')
d = cfg['cruise']
print(d, end='\n')
print(end='\n')
d = cfg['ctd']
print(d, end='\n')
print(end='\n')
d = cfg['ctd']['header']
print(d, end='\n')
for key in d.keys():
print("{}: {}".format(key, d[key]))
print(end='\n')
for key in cfg['cruise'].keys():
print(cfg['cruise'][key])
# print(cfg['cruise'].get(key))
print(end='\n')
d = cfg['split']['ctd']
print(d, end='\n')
for key in d.keys():
print("{}: {}".format(key, d[key]))
print(end='\n')
d = cfg['split']['ctdAll']
print(d, end='\n')
for key in d.keys():
print("{}: {}".format(key, d[key]))
print(end='\n')
d = cfg['split']['btl']
print(d, end='\n')
for key in d.keys():
print("{}: {}".format(key, d[key]))
print(end='\n')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment