-
Notifications
You must be signed in to change notification settings - Fork 7
Enhancing TimeSeriesSources with method to extract future activation ticks
#1059
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
Enhancing TimeSeriesSources with method to extract future activation ticks
#1059
Conversation
…-activation-call # Conflicts: # CHANGELOG.md
…-activation-call # Conflicts: # CHANGELOG.md
…-activation-call # Conflicts: # CHANGELOG.md
src/test/groovy/edu/ie3/datamodel/io/source/csv/CsvWeatherSourceIconTest.groovy
Show resolved
Hide resolved
…-activation-call # Conflicts: # CHANGELOG.md
danielfeismann
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Another question from my side, the rest looks fine for me :)
src/main/java/edu/ie3/datamodel/io/source/couchbase/CouchbaseWeatherSource.java
Show resolved
Hide resolved
sebastian-peter
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just some remarks and questions
src/main/java/edu/ie3/datamodel/io/source/sql/SqlTimeSeriesSource.java
Outdated
Show resolved
Hide resolved
src/main/java/edu/ie3/datamodel/io/source/sql/SqlWeatherSource.java
Outdated
Show resolved
Hide resolved
src/main/java/edu/ie3/datamodel/io/source/influxdb/InfluxDbWeatherSource.java
Show resolved
Hide resolved
src/main/java/edu/ie3/datamodel/io/source/couchbase/CouchbaseWeatherSource.java
Outdated
Show resolved
Hide resolved
src/main/java/edu/ie3/datamodel/models/timeseries/repetitive/LoadProfileInput.java
Show resolved
Hide resolved
...3/datamodel/io/source/csv/_weather/icon/its_weather_513606bc-539e-445b-9675-2f98be3d9231.csv
Show resolved
Hide resolved
…with-future-activation-call # Conflicts: # CHANGELOG.md
|
Note to myself: Does it make sense to only retrieve the next tick after the current instead? Edit: Considering the principle of discrete-event simulations, we only need the very next tick. But since a tick as a Long only takes 8 bytes of memory, we only have ~ 70 kbytes for a whole year of hourly-spaced ticks (for one time series). This does not seem like a problem (currently). |
…with-future-activation-call # Conflicts: # src/main/java/edu/ie3/datamodel/io/source/csv/CsvWeatherSource.java
sebastian-peter
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks all good, thanks @staudtMarius!
Resolves #543
Resolves #572