Skip to content

Commit 9dffb41

Browse files
Move base plots to Python_Toolkit (#268)
2 parents 10f8524 + b8f9d09 commit 9dffb41

File tree

15 files changed

+52
-1474
lines changed

15 files changed

+52
-1474
lines changed

LadybugTools_Engine/Python/src/ladybugtools_toolkit/bhom/wrapped/plot/diurnal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def diurnal(epw_file, return_file: str, data_type_key="Dry Bulb Temperature", co
1111
from ladybug.epw import EPW, AnalysisPeriod
1212
from ladybugtools_toolkit.ladybug_extension.datacollection import collection_to_series
1313
from ladybugtools_toolkit.ladybug_extension.epw import wet_bulb_temperature
14-
from ladybugtools_toolkit.plot._diurnal import diurnal
14+
from python_toolkit.plot.diurnal import diurnal
1515
from ladybug.datacollection import HourlyContinuousCollection
1616
from ladybugtools_toolkit.plot.utilities import figure_to_base64
1717
from ladybugtools_toolkit.bhom.wrapped.metadata.collection import collection_metadata

LadybugTools_Engine/Python/src/ladybugtools_toolkit/bhom/wrapped/plot/heatmap.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ def heatmap(epw_file: str, data_type_key: str, colour_map: str, return_file: str
1111
try:
1212
from ladybug.epw import EPW
1313
from ladybug.datacollection import HourlyContinuousCollection
14-
from ladybugtools_toolkit.plot._heatmap import heatmap
14+
from python_toolkit.plot.heatmap import heatmap
15+
#from ladybugtools_toolkit.plot._heatmap import heatmap
1516
from ladybugtools_toolkit.ladybug_extension.datacollection import collection_to_series
1617
from ladybugtools_toolkit.bhom.wrapped.metadata.collection import collection_metadata
1718
from ladybugtools_toolkit.ladybug_extension.epw import wet_bulb_temperature

LadybugTools_Engine/Python/src/ladybugtools_toolkit/categorical/categorical.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
from python_toolkit.bhom.analytics import bhom_analytics
2323

2424
from ..helpers import rolling_window, validate_timeseries
25-
from ..plot._heatmap import heatmap
2625
from ..plot.utilities import contrasting_color
26+
from python_toolkit.plot.heatmap import heatmap
2727

2828

2929
@dataclass(init=True, repr=True)

LadybugTools_Engine/Python/src/ladybugtools_toolkit/external_comfort/_externalcomfortbase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from ..helpers import convert_keys_to_snake_case
2020
from ..ladybug_extension.analysisperiod import describe_analysis_period
2121
from ..ladybug_extension.datacollection import collection_to_series
22-
from ..plot._heatmap import heatmap
22+
from python_toolkit.plot.heatmap import heatmap
2323
from ..plot._utci import utci_day_comfort_metrics, utci_heatmap_histogram
2424
from ..plot.colormaps import (
2525
DBT_COLORMAP,

0 commit comments

Comments
 (0)