Encaixe a camada de linha na rede no QGIS ou PostGIS

11

Tenho dados de GPS que peguei nas rotas de ônibus e agora gostaria de conectá-los à minha rede rodoviária. Ambas as camadas são camadas de linha em um PostGIS DB. Eu gostaria de usar o QGIS ou o PostGIS, mas se eu tiver que usar o GRASS ou o ArcMap, tudo bem também. Obrigado!

Para esclarecer, estou tentando ajustar linhas a linhas, não pontos a linhas.

mattwigway
fonte

Respostas:

3

Eu costumava ter essa função que usei. Tenha cuidado para alterar a geometria na tabela de pontos existente. Eu não o uso há muito tempo, mas parece que ele deve fazer o trabalho. Tanto quanto me lembro, funciona bem se você tiver índices espaciais em ambas as tabelas. Para chamá-lo

SELECT snap_point_to_line ('tabela de pontos', 'tabela de linhas', 500). Ele se encaixará com uma tolerância de 500, sendo 500 a unidade do seu sistema de projeção. Eu costumava trabalhar com Lambert.

    CREATE OR REPLACE FUNCTION snap_point_to_line(points_table character varying, line_table character varying, tolerance double precision)
      RETURNS boolean AS
    $BODY$
    DECLARE         
            srid integer;
            i integer;

            row record;
            row_1 record;
            closest_distance double precision;

            query varchar;
            snapped_point geometry;
    BEGIN

      --Get the srid of the points table
        FOR row IN EXECUTE 'select getsrid(the_geom) as srid from '||points_table||' where gid = (select min(gid) from '||points_table||')' LOOP
        END LOOP;
        srid := row.srid;


     -- Add a column in which it will store the closest nodes from the line
     FOR row IN EXECUTE 'SELECT the_geom FROM '||points_table LOOP

        query := 'SELECT ST_Transform(the_geom,'||srid||') as the_geom, ST_Distance(GeometryFromText('''||ST_AsText(row.the_geom)||''','||srid||'), ST_Transform(the_geom,'||srid||')) as distance FROM ' ||line_table||' ORDER BY ST_Distance(GeometryFromText('''||ST_AsText(row.the_geom)||''','||srid||'), ST_Transform(the_geom,'||srid||'))  LIMIT 1';
        RAISE NOTICE '%',query; 
        FOR row_1 IN EXECUTE query LOOP
            closest_distance := row_1.distance;

            --If below the distance threeshold, then snap the point
            IF closest_distance < tolerance THEN
                snapped_point := ST_line_interpolate_point(ST_LineMerge(row_1.the_geom),ST_line_locate_point(ST_LineMerge(row_1.the_geom), row.the_geom));

                --UPDATE the_geometry
                EXECUTE 'UPDATE '||points_table||' SET the_geom = GeometryFromText('''||ST_AsText(snapped_point)||''','||srid||') WHERE ST_AsText(the_geom) = '''||ST_AsText(row.the_geom)||'''';

            END IF;
END LOOP;   
    END LOOP;
    RETURN true;
    END;
   $BODY$
    LANGUAGE 'plpgsql' VOLATILE STRICT
    COST 100;
    ALTER FUNCTION snap_point_to_line(character varying, character varying, double precision) OWNER TO yourowner;
Fabien Ancelin
fonte
Obrigado; existe uma maneira de fazer isso encaixar linhas em linhas? Eu não acho que as funções de referência linear funcionem. (Adicionei um esclarecimento à pergunta original).
mattwigway