|
83 | 83 | )) |
84 | 84 |
|
85 | 85 | SFIELD = OrderedDict(( |
86 | | - ('geoid', Varf('Geoid', 'm')), |
87 | | - ('topo', Varf('Topography', 'm')), |
| 86 | + ('topo_top', Varf('Topography at top', 'm')), |
| 87 | + ('topo_bot', Varf('Topography at bottom', 'm')), |
| 88 | + ('geoid_top', Varf('Geoid at top', 'm')), |
| 89 | + ('geoid_bot', Varf('Geoid at bottom', 'm')), |
| 90 | + ('topo_g_top', Varf('Topography for geoid at top', 'm')), |
| 91 | + ('topo_g_bot', Varf('Topography for geoid at bottom', 'm')), |
| 92 | + ('ftop', Varf('Heat flux at top', 'W/m2')), |
| 93 | + ('fbot', Varf('Heat flux at bottom', 'W/m2')), |
| 94 | + ('fstop', Varf('Heat flux from spectrum at top', 'W/m2')), |
| 95 | + ('fsbot', Varf('Heat flux from spectrum at bottom', 'W/m2')), |
| 96 | + ('crust', Varf('Crustal thickness', 'm')), |
88 | 97 | )) |
89 | 98 |
|
90 | 99 | SFIELD_FILES = OrderedDict(( |
91 | | - ('g', ['geoid']), |
92 | | - ('cs', ['topo']), |
| 100 | + ('cs', ['topo_bot', 'topo_top']), |
| 101 | + ('g', ['geoid_bot', 'geoid_top']), |
| 102 | + ('csg', ['topo_g_bot', 'topo_g_top']), |
| 103 | + ('hf', ['fbot', 'ftop']), |
| 104 | + ('hfs', ['fsbot', 'fstop']), |
| 105 | + ('cr', ['crust']), |
93 | 106 | )) |
94 | 107 |
|
95 | 108 | Varr = namedtuple('Varr', ['description', 'kind', 'dim']) |
|
0 commit comments