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

[Issue #333] Use just one request to download a date range #347

Open
wants to merge 32 commits into
base: dev
Choose a base branch
from

Commits on Jun 16, 2022

  1. Configuration menu
    Copy the full SHA
    4de1588 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2022

  1. Merge pull requests from dev

    flake8
    
    Merge pull request dbekaert#343 from the-garlic-os/add-dev-dep-autopep8
    
    Add dev dependency "autopep8"
    
    Merge pull request dbekaert#346 from the-garlic-os/lint
    
    flake8
    
    Merge pull request dbekaert#343 from the-garlic-os/add-dev-dep-autopep8
    
    Add dev dependency "autopep8"
    
    Merge pull request dbekaert#349 from the-garlic-os/flake8
    
    More flake8
    jlmaurer authored and garlic-os committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    00cc105 View commit details
    Browse the repository at this point in the history
  2. Housekeeping

    Raise better error for missing subdatasets
    
    Housekeeping
    
    Housekeeping
    
    Use "_" for unused parameter
    
    Housekeeping
    
    Removing used variable assignments, adding comments, adding type annotations, etc. as I go along
    
    Type annotate main program arguments
    
    A mostly complete model of the arguments passed to tropo_delay() as I gathered from analyzing the code. May not be correct for all cases. Still need to figure out what Arguments["Heights"][1] is.
    
    Comment out unused function
    
    Searching for the function name through the whole project with vscode search, I don't see it called anywhere, but I probably shouldn't outright delete it before asking about it.
    garlic-os committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    7829058 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9263707 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2022

  1. Housekeeping

    - Removed or commented out unused names found by vulture
    - Refactored some variable names to use snake_case
    - Importing only from typing and not typing_extensions
    - Replaced uses of `except BaseException` with just `except` along with a TODO comment to fill in the missing exception type
    -
    garlic-os committed Jun 28, 2022
    Configuration menu
    Copy the full SHA
    fe5f579 View commit details
    Browse the repository at this point in the history
  2. Use possibly accidentally unused parameter

    It looks like the otherwise unused `cpu_num` is meant to be passed to np.Pool().
    garlic-os committed Jun 28, 2022
    Configuration menu
    Copy the full SHA
    e530819 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2022

  1. Calculate ERA5 delays with a single request

    A considerable number of function signatures changed as collateral damage, but this should allow RAiDER to calculate delays through ERA5 with only one CDS request for any range of dates.
    garlic-os committed Jul 14, 2022
    Configuration menu
    Copy the full SHA
    692d050 View commit details
    Browse the repository at this point in the history
  2. Housekeeping

    Use super() for calling superclass constructor
    garlic-os committed Jul 14, 2022
    Configuration menu
    Copy the full SHA
    d2051ce View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2022

  1. Remove _tropo_delay

    Following changes to _tropo_delay, it is no longer necessary as a processing layer to tropo_delay.
    garlic-os committed Jul 21, 2022
    Configuration menu
    Copy the full SHA
    307671c View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2022

  1. Housekeeping

    Fix dictionary formatting
    garlic-os committed Jul 27, 2022
    Configuration menu
    Copy the full SHA
    3eb8905 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    29dbaab View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e639fee View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2022

  1. Housekeeping

    Housekeeping
    
    Housekeeping
    garlic-os committed Jul 28, 2022
    Configuration menu
    Copy the full SHA
    9b00d67 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fcb5e2c View commit details
    Browse the repository at this point in the history
  3. Fix missing output files

    Fix missing output files
    garlic-os committed Jul 28, 2022
    Configuration menu
    Copy the full SHA
    889d176 View commit details
    Browse the repository at this point in the history
  4. Add tests for changes

    garlic-os committed Jul 28, 2022
    Configuration menu
    Copy the full SHA
    7e9eba9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0b9b774 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2022

  1. Configuration menu
    Copy the full SHA
    84d47d1 View commit details
    Browse the repository at this point in the history
  2. Remove commented-out code

    Remove commented-out code
    garlic-os committed Jul 29, 2022
    Configuration menu
    Copy the full SHA
    775b808 View commit details
    Browse the repository at this point in the history
  3. Add tests' reference data

    Data that the tests use to compare to live data.
    garlic-os committed Jul 29, 2022
    Configuration menu
    Copy the full SHA
    db89c63 View commit details
    Browse the repository at this point in the history
  4. Fix failing tests

    garlic-os committed Jul 29, 2022
    Configuration menu
    Copy the full SHA
    7863c0c View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2022

  1. enu2ecef and ecef2enu: remove unused arg "heights"

    This also fixes the failing enu2ecef and ecef2enu series of tests.
    garlic-os committed Aug 4, 2022
    Configuration menu
    Copy the full SHA
    5a7ecd4 View commit details
    Browse the repository at this point in the history
  2. Fix wrong use of strptime

    garlic-os committed Aug 4, 2022
    Configuration menu
    Copy the full SHA
    0dc97c4 View commit details
    Browse the repository at this point in the history
  3. Housekeeping

    Rename datetime module to dt to remove ambiguity with datetime and datetime.datetime
    
    Housekeeping
    
    Housekeeping
    
    Improve dict formatting
    garlic-os committed Aug 4, 2022
    Configuration menu
    Copy the full SHA
    2049599 View commit details
    Browse the repository at this point in the history
  4. Fix typos

    garlic-os committed Aug 4, 2022
    Configuration menu
    Copy the full SHA
    919b6be View commit details
    Browse the repository at this point in the history
  5. Housekeeping

    import datetime as dt
    garlic-os committed Aug 4, 2022
    Configuration menu
    Copy the full SHA
    9f8fdf1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    044af23 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    49f0226 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    eb050d0 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2022

  1. Merge from dev

    autopep8
    Housekeeping
    Remove download_only path - Per Jeremy this logic is no longer used.
    stash dep changes
    update environment deps
    correct name of dem_stitcher conda package
    Merge pull request dbekaert#339 from jlmaurer/fix_stitchdem
    update dem.py with new dem-stitcher api
    Merge branch 'dev' into update_deps
    remove uneeded deps
    Update ERA5 API
    Remove unneeded deps
    garlic-os committed Aug 15, 2022
    Configuration menu
    Copy the full SHA
    2cb34f4 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2022

  1. Housekeeping

    Remove unused import
    
    Update .gitignore
    
    Remove unused argument
    
    Ignore .pytest_cache/
    garlic-os committed Aug 17, 2022
    Configuration menu
    Copy the full SHA
    a25dbda View commit details
    Browse the repository at this point in the history
  2. Ensure consistent test directory

    No really for real this time
    garlic-os committed Aug 17, 2022
    Configuration menu
    Copy the full SHA
    e6f24be View commit details
    Browse the repository at this point in the history