Skip to content

Commit 7100dfa

Browse files
committed
moving to dvue
1 parent d971b02 commit 7100dfa

24 files changed

+58
-2333
lines changed

pydelmod/calibplotui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from pydsm import postpro
1414
from pydelmod import postpro_dsm2
1515

16-
from .dvue.dataui import DataUI, DataUIManager
16+
from dvue.dataui import DataUI, DataUIManager
1717

1818

1919
# substitue the base_dir in location_files_dict, observed_files_dict, study_files_dict

pydelmod/deltacdui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
pn.extension()
2727

28-
from pydelmod.dvue import tsdataui
28+
from dvue import tsdataui
2929

3030
class DeltaCDNodesUIManager(tsdataui.TimeSeriesDataUIManager):
3131
"""
@@ -365,7 +365,7 @@ def show_deltacd_nodes_ui(nc_files, nodes_file=None):
365365
This UI is designed for netCDF files that use 'node' as the station dimension.
366366
"""
367367
dcd_ui = DeltaCDNodesUIManager(*nc_files, nodes_file=nodes_file)
368-
from pydelmod.dvue import dataui
368+
from dvue import dataui
369369
dui = dataui.DataUI(dcd_ui, station_id_column="node", crs=ccrs.epsg(26910))
370370
dui.create_view().servable(title="DeltaCD Nodes UI Manager").show()
371371

pydelmod/deltacduimgr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import geopandas as gpd
1010
import numpy as np
1111
import holoviews as hv
12-
from pydelmod.dvue import tsdataui
12+
from dvue import tsdataui
1313

1414
class DeltaCDUIManager(tsdataui.TimeSeriesDataUIManager):
1515
"""
@@ -359,7 +359,7 @@ def show_deltacd_ui(nc_files, geojson_file=None):
359359
Show the DeltaCD UI Manager for the specified netCDF file and GeoJSON file.
360360
"""
361361
dcd_ui = DeltaCDUIManager(*nc_files, geojson_file=geojson_file)
362-
from pydelmod.dvue import dataui
362+
from dvue import dataui
363363
import cartopy.crs as ccrs
364364
dui=dataui.DataUI(dcd_ui, station_id_column="area_id", crs=ccrs.epsg(26910))
365365
dui.create_view().servable(title="DeltaCD UI Manager").show()

pydelmod/dsm2ui.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ def import_vtk_modules():
4646
import pyhecdss as dss
4747
from vtools.functions.filter import cosine_lanczos
4848
from .dsm2study import *
49-
from .dvue.dataui import full_stack
50-
from .dvue.tsdataui import TimeSeriesDataUIManager
49+
from dvue.dataui import full_stack
50+
from dvue.tsdataui import TimeSeriesDataUIManager
5151

5252

5353
class DSM2DataUIManager(TimeSeriesDataUIManager):
@@ -1568,7 +1568,7 @@ def build_output_plotter(*echo_files, channel_shapefile=None):
15681568
return plotter
15691569

15701570

1571-
from .dvue import dataui
1571+
from dvue import dataui
15721572
import click
15731573

15741574

pydelmod/dssui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
import pyhecdss as dss
2222
from vtools.functions.filter import cosine_lanczos
2323

24-
from .dvue.dataui import DataUI, full_stack
25-
from .dvue.tsdataui import TimeSeriesDataUIManager
24+
from dvue.dataui import DataUI, full_stack
25+
from dvue.tsdataui import TimeSeriesDataUIManager
2626

2727

2828
class DSSDataUIManager(TimeSeriesDataUIManager):

pydelmod/dvue/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

pydelmod/dvue/actions.py

Lines changed: 0 additions & 167 deletions
This file was deleted.

pydelmod/dvue/dataui.noselection.html

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)