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

F841 fixes #18

Merged
merged 15 commits into from
Oct 18, 2024
Merged

F841 fixes #18

merged 15 commits into from
Oct 18, 2024

Commits on Oct 17, 2024

  1. Configuration menu
    Copy the full SHA
    39ff021 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a740da1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4e8b0bf View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    941b52f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fd347b9 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    daee989 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0adc4dc View commit details
    Browse the repository at this point in the history
  8. nix: Fix locales in development environment (#4540)

    This fixes locales in nix provided development environment by setting environment variable.
    
    Closes #4503
    imincik authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    e540efc View commit details
    Browse the repository at this point in the history
  9. docs: add intro text to imageryintro.html (#4536)

    This PR adds an overview text to imageryintro.html including a link to addons.
    
    (aside, addons URL fix in g.gui.gmodeler.html)
    
    Co-authored-by: Nicklas Larsson <n_larsson@yahoo.com>
    Co-authored-by: Vaclav Petras <wenzeslaus@gmail.com>
    3 people authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    9dbc8c9 View commit details
    Browse the repository at this point in the history
  10. GUI: EPSG code source: replace epsg.io with spatialreference.org (#4535)

    As epsg.io is partially outdated (see [source](maptiler/epsg.io#171) and related) and PROJ is our engine anyway, this PR switches the references in the GUI to https://spatialreference.org.
    
    * "See also" section: added URLs to CRS Explorer and EPSG Geodetic Parameter Dataset
    
    Co-authored-by: Vaclav Petras <wenzeslaus@gmail.com>
    neteler and wenzeslaus authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    37d4082 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2024

  1. CI(deps): Update ruff to v0.7.0 (#4544)

    * CI(deps): Update ruff to v0.7.0
    
    * style: Fix FURB156: Use of hardcoded string charset
    
    ---------
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: Edouard Choinière <27212526+echoix@users.noreply.github.com>
    renovate[bot] and echoix authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    3c67825 View commit details
    Browse the repository at this point in the history
  2. i.atcorr: fix out of bound access in trunca, os and iso (#4493)

    * i.atcorr: fix out of bound access in trunca, os and iso
    
    In trunca(), under 2 if conditionals (if rumu[1] > 0.8 and
    rmu[1] > 0.94), k and kk values are set to -1 respectively.
    When these values are used to access an array, it leads
    to out of bound access, which is undefined behavior in c++.
    
    Similarly in os() and iso(), if `taup < h[i]` for all values,
    iplane would still be -1 and we would be accessing an array
    with this as an index, which is undefined behavior.
    
    In both cases, to avoid that, set that index to zero.
    
    This was found using cppcheck tool.
    
    Signed-off-by: Mohan Yelugoti <ymdatta.work@gmail.com>
    
    * Update imagery/i.atcorr/computations.cpp
    
    When plane layer couldn't be determined, throw out an error and exit.
    
    Co-authored-by: Markus Metz <33666869+metzm@users.noreply.github.com>
    
    * Update imagery/i.atcorr/computations.cpp
    
    When plane layer couldn't be determined, throw out an error and exit.
    
    Co-authored-by: Markus Metz <33666869+metzm@users.noreply.github.com>
    
    * Fix clang-format issues
    
    Signed-off-by: Mohan Yelugoti <ymdatta.work@gmail.com>
    
    ---------
    
    Signed-off-by: Mohan Yelugoti <ymdatta.work@gmail.com>
    Co-authored-by: Markus Metz <33666869+metzm@users.noreply.github.com>
    ymdatta and metzm authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    d788eee View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0cb20eb View commit details
    Browse the repository at this point in the history
  4. tests: Call t.remove and g.remove once with multiple inputs as list (#…

    …4523)
    
    * t.rast.accumulate: Call t.remove with multiple inputs in test_accumulation
    
    * t.rast.accdetect: Call t.remove with multiple inputs
    
    * t.rast.univar: Call t.remove once with multiple inputs
    
    * tests: Call g.remove once with multiple names to remove
    
    One call per type, when all other arguments are the same
    
    * benchmark: Call g.remove once with multiple names to remove
    
    One call per type, when all other arguments are the same
    
    * utils/thumbnails: Call g.remove once with multiple names to remove
    
    * Use tuple for supplying multiple input maps
    echoix authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    6fd21a8 View commit details
    Browse the repository at this point in the history
  5. gui: Add fix for wxGUI Data import Python error (#4504)

    This fixes #648 by adding a command tracker queue. When the queue is not empty, closing the dialog is prevented to ensure the completion callback can still access UI elements.
    ww2406 authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    62b001b View commit details
    Browse the repository at this point in the history