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

v.rast.move: Move points by values from raster map #877

Merged
merged 10 commits into from
Jul 19, 2023

Commits on Mar 17, 2023

  1. v.move.points: Move points by values from raster map

    WIP code for move of vector features positions by X and Y values given in two raster maps. This can move linear features without breaking the visual connection as points falling into the same raster cell are shifted by the same value.
    
    Alternative name would be v.rast.move because the big deal is that it is using raster to do the moving.
    
    The one example included now shows the principle, moves in X direction both ways depending on the raster values. My use case is randomizing a set of lines (connected and not connected).
    
    Feedback welcome.
    wenzeslaus committed Mar 17, 2023
    Configuration menu
    Copy the full SHA
    c1703b3 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2023

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

Commits on Mar 21, 2023

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

Commits on Jul 10, 2023

  1. Rename from v.move.points to v.rast.move because raster plays an impo…

    …rtant role and it now moves vertices (points) of lines, not points.
    wenzeslaus committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    f86aa4b View commit details
    Browse the repository at this point in the history
  2. Warn about the nulls by default. Warn when integers are used (differe…

    …nt null check is needed).
    wenzeslaus committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    7b92a6d View commit details
    Browse the repository at this point in the history
  3. Add tests

    wenzeslaus committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    0382686 View commit details
    Browse the repository at this point in the history
  4. Add Python doc strings

    wenzeslaus committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    0d1199c View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2023

  1. Add documentation

    wenzeslaus committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    c145fdc View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2023

  1. Configuration menu
    Copy the full SHA
    e12ed0e View commit details
    Browse the repository at this point in the history
  2. Fix whitespace

    wenzeslaus committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    3dbe0be View commit details
    Browse the repository at this point in the history