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

Cut new version #30

Merged
merged 18 commits into from
Apr 26, 2021
Merged

Cut new version #30

merged 18 commits into from
Apr 26, 2021

Commits on Apr 22, 2021

  1. HRRR - FileLoader - Remove forecast_flag parameter.

    This option was dropped in SMRF with PR#205
    jomey committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    ff0cffe View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2021

  1. HRRR - Deprecate the HRRR class in favor of data.hrrr.

    This deprecates the HRRR class, which was broken up into the data.hrrr
    structure in a previous commit. The class was kept around for backwards
    compatibility and this change will also include a version bump.
    jomey committed Apr 23, 2021
    Configuration menu
    Copy the full SHA
    59d3d0e View commit details
    Browse the repository at this point in the history
  2. Remove examples folder.

    The file contained had dependencies that were not met in this repository
    and usage with this library has changes since.
    jomey committed Apr 23, 2021
    Configuration menu
    Copy the full SHA
    3748291 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7eef144 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e77b0c9 View commit details
    Browse the repository at this point in the history
  5. HRRR - Deprecate utils method to get a file name.

    The method has moved to the FileHandler.
    jomey committed Apr 23, 2021
    Configuration menu
    Copy the full SHA
    7e3826e View commit details
    Browse the repository at this point in the history
  6. HRRR - FileLoader - Rename parameter in 'get_saved_data' method.

    Rename parameter in method to `file_dir` from `output_dir` and add as
    class property. The current implementation utilized the 'output_dir'
    property from the base class, which is parsing the `output_dir` value
    from a config file. However, calling this method should not overwrite
    this property.
    jomey committed Apr 23, 2021
    Configuration menu
    Copy the full SHA
    30fff0c View commit details
    Browse the repository at this point in the history
  7. HRRR - FileLoader - Remove duplicate property initialization.

    The start and end date are already initialized in the ConfigFile base
    class.
    jomey committed Apr 23, 2021
    Configuration menu
    Copy the full SHA
    cb105e6 View commit details
    Browse the repository at this point in the history
  8. HRRR - FileLoader - Consolidate logic to convert to dataframe.

    There were two separate places where the dataframe was read and data
    manipulated. This combines them into one method.
    jomey committed Apr 23, 2021
    Configuration menu
    Copy the full SHA
    1e1b175 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    627415d View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2021

  1. HRRR - FileLoader - Further refine the parameters.

    Move the basic parameters for file type and file directory to the
    initializer. This separates the type of data from the `get_saved_data`
    method, where filters for the data are given with parameters.
    jomey committed Apr 24, 2021
    Configuration menu
    Copy the full SHA
    87c6a4d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fa90008 View commit details
    Browse the repository at this point in the history
  3. HRRR - ConfigFile - Refactor config_file parameter.

    Rename the `config_file` parameter and rename to config to support
    either a .ini style file or a dictionary.
    jomey committed Apr 24, 2021
    Configuration menu
    Copy the full SHA
    33cab7c View commit details
    Browse the repository at this point in the history
  4. HRRR - FileLoader - Pass the logger to the file loader.

    Consolidate the log messages by using the same logger.
    jomey committed Apr 24, 2021
    Configuration menu
    Copy the full SHA
    ae0ad6d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    22bb95e View commit details
    Browse the repository at this point in the history
  6. Address lint errors.

    jomey committed Apr 24, 2021
    Configuration menu
    Copy the full SHA
    56e8e4e View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2021

  1. HRRR - ConfigFile - improve logger handling.

    There is no need to record an initialization entry in the log when using
    an external logger. This also combines the logic for creating a logger
    and then recording the above mentioned entry.
    jomey committed Apr 25, 2021
    Configuration menu
    Copy the full SHA
    23d6344 View commit details
    Browse the repository at this point in the history
  2. Utils - read_config - Drop check for Python version.

    No version of less than 3.5 is supported by this library anymore.
    jomey committed Apr 25, 2021
    Configuration menu
    Copy the full SHA
    03377a0 View commit details
    Browse the repository at this point in the history