Skip to content

Commit ac9a4fc

Browse files
authored
Merge pull request #21 from GRIDAPPSD/releases/2022.08.0
Release of version 2022.08.0
2 parents c99bac4 + e054664 commit ac9a4fc

File tree

7 files changed

+1051365
-525743
lines changed

7 files changed

+1051365
-525743
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
8686
echo " "
8787
echo "Importing data"
88-
docker exec -i $did /bin/bash -c "influx -import -path=/tmp/ghi_dhi_bulkload.txt -precision s; influx -import -path=/tmp/loadprofile_measurement_out.txt -precision s"
88+
docker exec -i $did /bin/bash -c "influx -import -path=/tmp/weather_import_file.txt -precision s; influx -import -path=/tmp/loadprofile_measurement_out.txt -precision s"
8989
status=$?
9090
if [ $status -ne 0 ]; then
9191
echo "Error: influxdb ping status $status"

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ RUN apt-get update \
1212
&& rm -rf /var/cache/apt/archives/* \
1313
&& pip3 install -r /tmp/timeseries/weather/solar-forecasting/requirements.txt \
1414
&& cd /tmp/timeseries/weather/solar-forecasting \
15-
&& python3 build_bulk_load_file.py \
15+
&& python3 process_weather_data.py \
1616
&& cd /tmp/timeseries/loadprofiles \
1717
&& python3 loadprofile_measurement_bulk.py
1818

1919
FROM influxdb:1.8
2020

21-
COPY --from=influxdbbuild /tmp/timeseries/weather/solar-forecasting/ghi_dhi_bulkload.txt /tmp/ghi_dhi_bulkload.txt
21+
COPY --from=influxdbbuild /tmp/timeseries/weather/solar-forecasting/weather_import_file.txt /tmp/weather_import_file.txt
2222
COPY --from=influxdbbuild /tmp/timeseries/loadprofiles/loadprofile_measurement_out.txt /tmp/loadprofile_measurement_out.txt
2323
COPY --from=influxdbbuild /dockerbuildversion.txt /dockerbuildversion.txt
2424
COPY ./influxdb.conf /etc/influxdb/influxdb.conf

0 commit comments

Comments
 (0)