File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change
1
+ from py_eddy_tracker .dataset .grid import RegularGridDataset , UnRegularGridDataset
2
+ import logging
3
+ logging .basicConfig (level = logging .DEBUG )
4
+
5
+ # h = UnRegularGridDataset('NEATL36_1d_grid2D_20140515-20140515_short.nc', 'nav_lon', 'nav_lat')
6
+ # h.high_filter('sossheig', 20, 10)
7
+ # h.add_uv('sossheig')
8
+ # h.write('unregular.nc')
9
+
10
+ # h = RegularGridDataset('msla_h_20170425T000000_20170425T000000.nc', 'NbLongitudes', 'NbLatitudes')
11
+ # h.high_filter('Grid_0001', 10, 5)
12
+ # h.eddy_identification('Grid_0001', 0.5)
13
+
14
+ h = UnRegularGridDataset ('unregular.nc' , 'nav_lon' , 'nav_lat' )
15
+ h .eddy_identification ('sossheig' )
16
+
17
+ # h = RegularGridDataset('madt_h_20170425T000000_20170425T000000.nc', 'NbLongitudes', 'NbLatitudes')
18
+
19
+ # h.add_uv('Grid_0001')
20
+ # h.write('regular.nc')
21
+
You can’t perform that action at this time.
0 commit comments