Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^3: DBI placeholders for spatial data

by erix (Prior)
on Jun 26, 2021 at 12:01 UTC ( [id://11134334]=note: print w/replies, xml ) Need Help??


in reply to Re^2: DBI placeholders for spatial data
in thread DBI placeholders for spatial data

You think it will work? That'd be nice, I didn't gather that from your reply (but I didn't TL/DR any links of course). Let's see if it helps Bod.

  • Comment on Re^3: DBI placeholders for spatial data

Replies are listed 'Best First'.
Re^4: DBI placeholders for spatial data
by Bod (Parson) on Jun 26, 2021 at 22:00 UTC

    To test this I have used this code:

    my $test = 'POINT( 20 10 )'; $dbh->do("INSERT INTO Test SET start = ST_GeomFromText(?, 4326), end = + ST_GeomFromText(?, 4326)", undef, $test, $test); if ($dbh->err) { print "ERROR: " . $dbh->errstr; } else { print "SUCCESS!"; } print "\n";
    And from the test it I get this result:
    SELECT ST_AsText(start) FROM Test ------------ POINT(20 10)
    I think we can conclude that feeding POINT($lng $lat) to the placeholder works :)

    A quick note for anyone finding this in future...
    POINT takes longitude first then latitude. Several sources online say that it doesn't matter which way around they are. However, if you want ST_Distance_Sphere to give a correct result, they need to be longitude followed by latitude. This is the reason I created a module to handles points, so I don't need to worry about the order except within the module.

    Edited to remove rogue comma pointed out by LanX

      > feeding POINT($lng, $lat) to the placeholder works

      with comma???

      Cheers Rolf
      (addicted to the Perl Programming Language :)
      Wikisyntax for the Monastery

        with comma???

        No! Not with a comma!
        That was a typo and I have edited the previous comment to remove the rogue comma.

        Thanks for noticing my mistake.

Re^4: DBI placeholders for spatial data
by LanX (Saint) on Jun 26, 2021 at 12:03 UTC
    > I didn't gather that from your reply

    as documented: ST_GeomFromText(wkt[,srid])

    Cheers Rolf
    (addicted to the Perl Programming Language :)
    Wikisyntax for the Monastery

Re^4: DBI placeholders for spatial data
by Bod (Parson) on Jun 26, 2021 at 16:25 UTC
    Let's see if it helps Bod

    I am out visiting my sister currently with no access to a computer to try it. When I get back home later, I shall try and report back.

    Thanks for all the useful suggestions and information.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11134334]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (3)
As of 2024-04-24 23:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found