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

Added LoS TEC tag to the GNSS TEC Instrument #96

Merged
merged 33 commits into from
Dec 19, 2023
Merged

Added LoS TEC tag to the GNSS TEC Instrument #96

merged 33 commits into from
Dec 19, 2023

Commits on Nov 20, 2023

  1. STY: refactored general load function

    Extracted useful elements of the `load` function to allow their use elsewhere without code duplication.
    aburrell committed Nov 20, 2023
    Configuration menu
    Copy the full SHA
    b56c3ad View commit details
    Browse the repository at this point in the history
  2. ENH: added gnss load functions

    Added type-specific GNSS load functions and exploratory file functions for the line-of-sight files.
    aburrell committed Nov 20, 2023
    Configuration menu
    Copy the full SHA
    6e636d2 View commit details
    Browse the repository at this point in the history
  3. ENH: added 'los' tag to gnss_tec

    Added support for the line-of-sight (los) TEC data.
    aburrell committed Nov 20, 2023
    Configuration menu
    Copy the full SHA
    8117a8c View commit details
    Browse the repository at this point in the history
  4. DOC: updated GNSS method description

    Improved the GNSS instrument method description to encompass the new scope.
    aburrell committed Nov 20, 2023
    Configuration menu
    Copy the full SHA
    dcd81ea View commit details
    Browse the repository at this point in the history
  5. DOC: updated changelog

    Added a summary of the changes to the changelog.
    aburrell committed Nov 20, 2023
    Configuration menu
    Copy the full SHA
    fe6107c View commit details
    Browse the repository at this point in the history
  6. STY: fixed PEP8 violations

    Removed excess lines, fixed typos, added missing imports.
    aburrell committed Nov 20, 2023
    Configuration menu
    Copy the full SHA
    dcbdafd View commit details
    Browse the repository at this point in the history
  7. DOC: updated docstring

    Added missing return value to the docstring.
    aburrell committed Nov 20, 2023
    Configuration menu
    Copy the full SHA
    297c5b8 View commit details
    Browse the repository at this point in the history
  8. BUG: added load options for los data

    Added two load options for the GNSS TEC LoS tests.
    aburrell committed Nov 20, 2023
    Configuration menu
    Copy the full SHA
    656671d View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2023

  1. BUG: allow empty data

    Allow creation of an empty Dataset from an empty DataFrame.
    aburrell committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    04db5e8 View commit details
    Browse the repository at this point in the history
  2. BUG: allow empty file list

    Allow an empty filelist to be provided and create an empty data object.
    aburrell committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    c5ccdaa View commit details
    Browse the repository at this point in the history
  3. BUG: allow empty gnss load

    Allow the GNSS TEC load to work with an empty file list.
    aburrell committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    acb83c5 View commit details
    Browse the repository at this point in the history
  4. TST: added load tests

    Added load tests for the LoS logger warning and ValueError.
    aburrell committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    666ae48 View commit details
    Browse the repository at this point in the history
  5. STY: fixed PEP8 errors

    Removed unused variable and fixed indentation.
    aburrell committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    7ef3225 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2023

  1. TST: skip los CI download tests

    Corrected the download test flag.
    
    Co-authored-by: Jeff Klenzing <19592220+jklenzing@users.noreply.github.com>
    aburrell and jklenzing committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    cdfe14e View commit details
    Browse the repository at this point in the history
  2. BUG: fixed clean method

    Fixed the clean method to have an informative message for the LoS data.  Also removed inaccessable line in the load method.
    aburrell committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    c95f538 View commit details
    Browse the repository at this point in the history
  3. TST: added gnss_tec load error test

    Added a test for the gnss_tec load method ValueError raised if a bad `los_value` is supplied.
    aburrell committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    ecf0044 View commit details
    Browse the repository at this point in the history
  4. TST: added general unit tests

    Added unit tests for uncovered lines in the general instruments methods sub-module.  Also improved style for Error tests.
    aburrell committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    410a818 View commit details
    Browse the repository at this point in the history
  5. TST: added empty load test

    Added a test for loading no data in the `load_los` function, additionally testing the time selection set-up.
    aburrell committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    b30b2db View commit details
    Browse the repository at this point in the history
  6. TST: added coveralls line

    Added a coveralls service job environment variable.
    aburrell committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    42735b1 View commit details
    Browse the repository at this point in the history
  7. BUG: accessed correct instrument kwargs

    Needed to get the right dict from the setup.
    aburrell committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    13562ed View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2023

  1. BUG: add fake files

    Add a fake file to test the load failures.
    aburrell committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    1a62f4e View commit details
    Browse the repository at this point in the history
  2. STY: fixed import order

    Fixed import order to be alphabetical.
    aburrell committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    be25ef5 View commit details
    Browse the repository at this point in the history
  3. TST: updated coveralls

    Updated coveralls to run in parallel.
    aburrell committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    fedd62c View commit details
    Browse the repository at this point in the history
  4. TST: disabled local LoS download tests

    Disabled local LoS download tests, also added a warning for users attempting downloads.
    aburrell committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    45b22e5 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2023

  1. TST: removed old test line

    Removed old test line.
    aburrell committed Nov 29, 2023
    Configuration menu
    Copy the full SHA
    9b8919b View commit details
    Browse the repository at this point in the history
  2. MAINT: updated version caps

    Updated the version caps for coveralls, sphinx, and sphinx_rtd_theme.
    aburrell committed Nov 29, 2023
    Configuration menu
    Copy the full SHA
    5335437 View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2023

  1. Revert "TST: removed old test line"

    This reverts commit 9b8919b.
    aburrell committed Dec 1, 2023
    Configuration menu
    Copy the full SHA
    d78742c View commit details
    Browse the repository at this point in the history
  2. BUG: removed bad test variable

    Removed a test variable that was being used for an incorrect purpose.
    aburrell committed Dec 1, 2023
    Configuration menu
    Copy the full SHA
    ba6ddba View commit details
    Browse the repository at this point in the history
  3. BUG: fixed workflow

    Removed extra 'run' from workflow.
    aburrell committed Dec 1, 2023
    Configuration menu
    Copy the full SHA
    95216c6 View commit details
    Browse the repository at this point in the history
  4. MAINT: updated coveralls

    Updated the coveralls line in the RC CI test.
    aburrell committed Dec 1, 2023
    Configuration menu
    Copy the full SHA
    757133b View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2023

  1. BUG: updated DMSP url

    Added the 'url' kwarg to the DMSP IVM download method, since UTD downloads were failing at the central site.
    aburrell committed Dec 18, 2023
    Configuration menu
    Copy the full SHA
    d549e2c View commit details
    Browse the repository at this point in the history
  2. BUG: removed url kwarg

    Removed the URL kwarg, local tests didn't need the url change.
    aburrell committed Dec 18, 2023
    Configuration menu
    Copy the full SHA
    d173e8a View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2023

  1. BUG: added missing index

    Added a missing index for the test list.
    aburrell committed Dec 19, 2023
    Configuration menu
    Copy the full SHA
    f4c84af View commit details
    Browse the repository at this point in the history