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

ENH: add 'zdist_factor' input parameter to 'map_gates_to_grid'. #1509

Merged
merged 37 commits into from
Jan 24, 2024

Commits on Aug 14, 2023

  1. Configuration menu
    Copy the full SHA
    8606128 View commit details
    Browse the repository at this point in the history
  2. Update default wind_size in calculate_velocity_texture from 4 to 3

    Using an odd number prevents single index offsets in placement in
    case of an even size
    isilber committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    1fef627 View commit details
    Browse the repository at this point in the history
  3. ADD: optional rectangular window dims for velocity texture analysis.

    Also, modify the default window size to 3 instead of the previous
    value of 4 (even number resulting in a potential offset).
    isilber committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    001596b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3ea3a31 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2bdf042 View commit details
    Browse the repository at this point in the history
  6. pep8

    isilber committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    64a6b3c View commit details
    Browse the repository at this point in the history
  7. line reformatting per black

    isilber committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    6571b78 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2023

  1. Configuration menu
    Copy the full SHA
    4227bf7 View commit details
    Browse the repository at this point in the history
  2. STY: linting (black)

    isilber committed Aug 16, 2023
    Configuration menu
    Copy the full SHA
    30ffecc View commit details
    Browse the repository at this point in the history
  3. FIX: Add in linting fixes

    mgrover1 committed Aug 16, 2023
    Configuration menu
    Copy the full SHA
    57535ed View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2023

  1. Merge remote-tracking branch 'origin/main' into IS_dev

    Conflicts:
    	tests/retrieve/test_simple_moment_calculations.py
    isilber committed Dec 1, 2023
    Configuration menu
    Copy the full SHA
    7b61f8a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e4db15b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c999ccd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8343c40 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    48f74aa View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2023

  1. Configuration menu
    Copy the full SHA
    e672649 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cb6324e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    26039ce View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8ae5a44 View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2023

  1. Configuration menu
    Copy the full SHA
    47966fe View commit details
    Browse the repository at this point in the history
  2. linting

    isilber committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    ea1a94b View commit details
    Browse the repository at this point in the history
  3. FIX: nsweeps wasn't updated when calling 'determine_sweeps'; tests we…

    …re updated accordingly
    isilber committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    1d338c1 View commit details
    Browse the repository at this point in the history
  4. line reformatting per black

    isilber committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    2324233 View commit details
    Browse the repository at this point in the history
  5. FIX: update multiple radar object attributes to ensure its full utili…

    …zation with Py-ART after 'determine_sweeps' is called
    isilber committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    7c6d522 View commit details
    Browse the repository at this point in the history
  6. line reformatting per black

    isilber committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    11999c7 View commit details
    Browse the repository at this point in the history
  7. linting

    isilber committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    e197ab2 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    83e2e16 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    f4592b9 View commit details
    Browse the repository at this point in the history
  10. Update pyart/util/radar_utils.py

    Co-authored-by: Max Grover <mgroverwx@gmail.com>
    isilber and mgrover1 authored Dec 6, 2023
    Configuration menu
    Copy the full SHA
    312c508 View commit details
    Browse the repository at this point in the history
  11. Update pyart/util/radar_utils.py

    Co-authored-by: Max Grover <mgroverwx@gmail.com>
    isilber and mgrover1 authored Dec 6, 2023
    Configuration menu
    Copy the full SHA
    1741279 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2024

  1. Merge remote-tracking branch 'origin' into IS_dev

    Conflicts:
    	pyart/util/radar_utils.py
    isilber committed Jan 18, 2024
    Configuration menu
    Copy the full SHA
    c63b43b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3677401 View commit details
    Browse the repository at this point in the history
  3. ENH: add 'zdist_factor' input parameter to 'map_gates_to_grid'.

    This parameter scales the distance in the z-dimension when calculating
    weights upon gridding. It is a semi-equivalent to the scaling factors in
    the RoI class methods. Example for using this parameter would be setting
    a 'zdist_factor' value of 0.0 combined with an h_factor=0.0 (if calling
    DistBeamRoI) or z_factor=0.0 (if calling DistRoI), resulting in the
    exclusion of the z dimension in gridding weighting, which could serve as
    a potential solution for gridding a single PPI sweep from a single radar.
    In that case, the distance in the weighting function effectively serves as
    the distance of a given point from the PPI sweep's cone.
    isilber committed Jan 18, 2024
    Configuration menu
    Copy the full SHA
    9f72439 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9c47087 View commit details
    Browse the repository at this point in the history
  5. MNT: set a consistent nomenclature for the distance squared parameter.

    In parts of the 'map_grid' method it was referred to as 'dist' whereas
    in another as 'dist2' (parameter calculation lines differ in style but
    identical in value), resulting in an unnecessary scalar allocation,
    and a confusing nomenclature.
    isilber committed Jan 18, 2024
    Configuration menu
    Copy the full SHA
    d8899ce View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2024

  1. Configuration menu
    Copy the full SHA
    137098e View commit details
    Browse the repository at this point in the history
  2. Update pyart/map/gates_to_grid.py

    Co-authored-by: Max Grover <mgroverwx@gmail.com>
    isilber and mgrover1 authored Jan 23, 2024
    Configuration menu
    Copy the full SHA
    1d960f5 View commit details
    Browse the repository at this point in the history