Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Shortened filepath for installer build #72

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions LadybugTools_Engine/LadybugTools_Engine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,6 @@
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\simulate\working_directory.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\simulate\__init__.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\cfd\cfd_directory.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\cfd\cfd_result.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\cfd\load_cfd_extract.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\cfd\load_cfd_results.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\cfd\spatial_wind_speed.py" />
Expand Down Expand Up @@ -221,7 +220,6 @@
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\moisture_distribution\load_moisture_sources.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\moisture_distribution\moisture_directory.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\moisture_distribution\moisture_source.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\moisture_distribution\unique_wind_speed_direction.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\moisture_distribution\__init__.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\sky_view_pov.py" />
<Content Include="Python\src\ladybugtools_toolkit\external_comfort\spatial\spatial_comfort.py" />
Expand Down Expand Up @@ -297,6 +295,7 @@
<Content Include="Python\src\ladybugtools_toolkit\ladybug_extension\epw\sun_position_list.py" />
<Content Include="Python\src\ladybugtools_toolkit\ladybug_extension\epw\to_dataframe.py" />
<Content Include="Python\src\ladybugtools_toolkit\ladybug_extension\epw\wet_bulb_temperature.py" />
<Content Include="Python\src\ladybugtools_toolkit\ladybug_extension\epw\unique_wind_speed_direction.py" />
<Content Include="Python\src\ladybugtools_toolkit\ladybug_extension\epw\__init__.py" />
<Content Include="Python\src\ladybugtools_toolkit\ladybug_extension\header\from_string.py" />
<Content Include="Python\src\ladybugtools_toolkit\ladybug_extension\header\from_multiindex.py" />
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,14 @@
import numpy as np
import pandas as pd
from ladybug.epw import EPW
from ladybugtools_toolkit.external_comfort.spatial.cfd.load_cfd_results import (
load_cfd_results,
)
from ladybugtools_toolkit.external_comfort.spatial.moisture_distribution.unique_wind_speed_direction import (
unique_wind_speed_direction,
)
from ladybugtools_toolkit.ladybug_extension.datacollection.to_series import to_series
from scipy.interpolate import interp1d


from ladybugtools_toolkit import analytics
from ladybugtools_toolkit.external_comfort.spatial.cfd.load_cfd_results import \
load_cfd_results
from ladybugtools_toolkit.ladybug_extension.datacollection.to_series import \
to_series
from ladybugtools_toolkit.ladybug_extension.epw.unique_wind_speed_direction import \
unique_wind_speed_direction
from scipy.interpolate import interp1d


@analytics
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
import numpy as np
import pandas as pd
from ladybug.epw import EPW
from ladybugtools_toolkit.external_comfort.spatial.moisture_distribution.unique_wind_speed_direction import (
unique_wind_speed_direction,
)
from ladybugtools_toolkit.helpers.angle_from_north import angle_from_north
from ladybugtools_toolkit.helpers.proximity_decay import proximity_decay
from ladybugtools_toolkit.ladybug_extension.datacollection.to_series import to_series
from ladybugtools_toolkit.ladybug_extension.datacollection.to_series import \
to_series
from ladybugtools_toolkit.ladybug_extension.epw.unique_wind_speed_direction import \
unique_wind_speed_direction
from scipy.spatial.distance import cdist


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@

import pandas as pd
from ladybug.epw import EPW
from ladybugtools_toolkit.ladybug_extension.datacollection.to_series import to_series


from ladybugtools_toolkit import analytics
from ladybugtools_toolkit.ladybug_extension.datacollection.to_series import \
to_series


@analytics
Expand Down