Skip to content

Releases: UNSW-CEEM/NEMOSIS

NEMOSIS

25 Jun 05:39
Compare
Choose a tag to compare

Update excel file reading functionality to handle AEMO changing the tab name in the "NEM Registration and Exemption List.xls" work book from "Generators and Scheduled Loads" to "PU and Scheduled Loads". NEMOSIS should now work for both the old and new name.

v3.6.0

16 May 04:14
9ed5346
Compare
Choose a tag to compare

A few minor updates:

  • Added the table ROOFTOP_PV_ACTUAL. Thanks @mdavis-xyz for the suggestion.
  • Added data clean for the table Generators and Scheduled Loads such that all missing values of nan values are converted to '-'. Thanks @mdavis-xyz for the suggestion.
  • Improved datetime parsing. Thanks @mdavis-xyz for the pull request.
  • Added columns RAISE1SEC and LOWER1SEC to NEXT_DAY_DISPATCH_LOAD and DISPATCHLOAD. Thanks @rccolle for the pull request.

NEMOSIS

11 Nov 00:21
Compare
Choose a tag to compare
  • Add new table, NEXT_DAY_DISPATCHLOAD, which contains the same data as DISPATCHLOAD but is available the next day. Data source is here: https://nemweb.com.au/Reports/Current/Next_Day_Dispatch/.
  • Documentation for NEXT_DAY_DISPATCHLOAD and DAILY_REGION_SUMMARY still need to be added to the NEMOSIS wiki.

NEMOSIS

08 Nov 06:04
Compare
Choose a tag to compare

NEMOSIS

18 Oct 09:04
Compare
Choose a tag to compare
  • Replace print messages with logging, this means messages displayed by NEMOSIS can be controlled by the user as per the readme documentation. Thanks to @prakaa
  • Fix bug where attempting to download bidding data that is not available on nemweb would cause NEMOSIS to crash. Not AEMO stopped uploading monthly bidding files to the public archive as of April 2021. If NEMOSIS can't find bidding in the archive, it attempts to download from the 'bid move complete' dataset, which only hosts a 12 month window of the most recent bidding data (https://www.nemweb.com.au/REPORTS/Archive/Bidmove_Complete/). If the bidding data is not available a warning is logged.

NEMOSIS

27 Jun 05:14
Compare
Choose a tag to compare
  • Fixed #20 where NEMOSIS couldn't access bid data after March 2021 because AEMO changed the format in which the data was published. Thanks @dawkinsmw for helping put together the methodology for extracting the data from the new format. Note with the format change there is still a window of missing data which includes March 2021, the 1st of April 2021, and the first 4 hrs of the 2nd of April.
  • Added the rebuild option to the dynamic_data_compiler function, this forces NEMOSIS to rebuild feather or parquet cache files from the raw CSV data. This is useful if you want to add extra columns to the data cache, as described here: https://github.com/UNSW-CEEM/NEMOSIS#accessing-additional-table-columns

NEMOSIS

11 Jul 09:34
Compare
Choose a tag to compare

Major version increment due to small but breaking changes to the API

  • removed data_merge argument from dynamic data_compiler as cache_compiler now contains this functionality
  • invalid arguments to data_compiler and cache_compiler now raise errors
  • all static tables can now be accessed using the static_table function. Functions static_table_FCAS_elements_file and static_table_xl have been removed.

NEMOSIS

24 May 02:47
Compare
Choose a tag to compare

Major version increment:
Updated API, thanks to @prakaa for #15. New features are: 1) type parsing for data returned via the API, 2) cache_compiler function that builds a cache of typed feather or parquet files. See the updated readme for more details.

Patch version increment:
Removed columns SEMISCHEDULE_CLEAREDMW, SEMISCHEDULE_COMPLIANCEMW from TRADINGLOAD defaults

NEMOSIS

01 Mar 07:23
55ae1fd
Compare
Choose a tag to compare

Updated API. Thanks to @prakaa for #11

Fixed column bug. Thanks to @jotaigna #12

NEMOSIS

10 Jun 05:18
Compare
Choose a tag to compare

OS independent path concatenation
gui creates directories if they don't exist already

Thanks to @jurasofish for the updates.