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

Feature #2781 Convert MET NetCDF point obs to Pandas DataFrame #2877

Merged
merged 15 commits into from
May 8, 2024

Commits on Apr 24, 2024

  1. Per #2781, added function to convert MET NetCDF point observation dat…

    …a to pandas so it can be read and modified in a python embedding script. Added example python embedding script
    georgemccabe committed Apr 24, 2024
    Configuration menu
    Copy the full SHA
    c722bdc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6ed91b3 View commit details
    Browse the repository at this point in the history
  3. fixed function call

    georgemccabe committed Apr 24, 2024
    Configuration menu
    Copy the full SHA
    f6cf1c0 View commit details
    Browse the repository at this point in the history
  4. reduce cognitive complexity to satisfy SonarQube and add boolean retu…

    …rn value to catch if function fails to read data
    georgemccabe committed Apr 24, 2024
    Configuration menu
    Copy the full SHA
    b08518a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    62bc920 View commit details
    Browse the repository at this point in the history
  6. replace call to object function that doesn't exist, handle exception …

    …when file passed to script cannot be read by the NetCDF library
    georgemccabe committed Apr 24, 2024
    Configuration menu
    Copy the full SHA
    284aba7 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2024

  1. Configuration menu
    Copy the full SHA
    7fd191c View commit details
    Browse the repository at this point in the history
  2. rename example script

    georgemccabe committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    ae1791b View commit details
    Browse the repository at this point in the history

Commits on May 2, 2024

  1. Configuration menu
    Copy the full SHA
    482d9c5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2d974bf View commit details
    Browse the repository at this point in the history
  3. fix logic to build pandas DataFrame to properly get header informatio…

    …n from observation header IDs
    georgemccabe committed May 2, 2024
    Configuration menu
    Copy the full SHA
    b71160f View commit details
    Browse the repository at this point in the history
  4. Per #2781, add unit test to demonstrate python embedding script that …

    …reads MET NetCDF point observation file and converts it to a pandas DataFrame
    georgemccabe committed May 2, 2024
    Configuration menu
    Copy the full SHA
    2c9d220 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2024

  1. Configuration menu
    Copy the full SHA
    67703e3 View commit details
    Browse the repository at this point in the history
  2. Per #2781, added init function for nc_point_obs to take an input file…

    …name. Also raise TypeError exception from nc_point_obs.read_data() if input file cannot be read
    georgemccabe committed May 8, 2024
    Configuration menu
    Copy the full SHA
    51db09f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7e9cef9 View commit details
    Browse the repository at this point in the history