In [ ]:
%matplotlib inline
In [ ]:
from IPython.display import display, HTML
In [ ]:
import matplotlib.pyplot as plt
plt.rcParams['figure.figsize'] = (14.0, 8.0)
In [ ]:
import numpy as np
In [ ]:
from dtocean_core import start_logging
from dtocean_core.core import Core
from dtocean_core.menu import ModuleMenu, ProjectMenu, ThemeMenu
from dtocean_core.pipeline import Tree
In [ ]:
def html_list(x):
message = "<ul>"
for name in x:
message += "<li>{}</li>".format(name)
message += "</ul>"
return message
def html_dict(x):
message = "<ul>"
for name, status in x.iteritems():
message += "<li>{}: <b>{}</b></li>".format(name, status)
message += "</ul>"
return message
In [ ]:
# Bring up the logger
start_logging()
In [ ]:
new_core = Core()
project_menu = ProjectMenu()
theme_menu = ThemeMenu()
pipe_tree = Tree()
In [ ]:
project_title = "DTOcean"
new_project = project_menu.new_project(new_core, project_title)
In [ ]:
options_branch = pipe_tree.get_branch(new_core, new_project, "System Type Selection")
variable_id = "device.system_type"
my_var = options_branch.get_input_variable(new_core, new_project, variable_id)
my_var.set_raw_interface(new_core, "Wave Floating")
my_var.read(new_core, new_project)
In [ ]:
project_menu.initiate_pipeline(new_core, new_project)
In [ ]:
names_themes = theme_menu.get_available(new_core, new_project)
message = html_list(names_themes)
HTML(message)
In [ ]:
theme_name = 'Environmental Impact Assessment (Experimental)'
theme_menu.activate(new_core, new_project, theme_name)
In [ ]:
environmental_branch = pipe_tree.get_branch(new_core, new_project, 'Environmental Impact Assessment (Experimental)')
input_status = environmental_branch.get_input_status(new_core, new_project)
message = html_dict(input_status)
HTML(message)
In [ ]:
project_menu.initiate_dataflow(new_core, new_project)
Prepare the test data for loading. The test_data directory of the source code should be copied to the directory that the notebook is running. When the python file is run a pickle file is generated containing a dictionary of inputs.
In [ ]:
%run test_data/inputs_environmental_not_none.py
In [ ]:
environmental_branch.read_test_data(new_core,
new_project,
"test_data/inputs_environmental_not_none.pkl")
In [ ]:
can_execute = theme_menu.is_executable(new_core, new_project, theme_name)
display(can_execute)
In [ ]:
input_status = environmental_branch.get_input_status(new_core, new_project)
message = html_dict(input_status)
HTML(message)
The "current" module refers to the next module to be executed in the chain (pipeline) of modules. This command will only execute that module and another will be used for executing all of the modules at once.
Note, any data supplied by the module will be automatically copied into the active data state.
In [ ]:
theme_menu.execute_all(new_core, new_project)
In [ ]:
output_status = environmental_branch.get_output_status(new_core, new_project)
message = html_dict(output_status)
HTML(message)
In [ ]:
hydro_global_eis = new_core.get_data_value(new_project, "project.hydro_global_eis")
hydro_global_eis
In [ ]: