python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Is there an Aggregate function that functions similarly to STUnion()?
I see that there is something called STUnion() which will union the result of one geography type with another. But is is possible to do that over an entire data set like an aggregate function?
Or if n...
Alexander Ryan Baggett
Votes: 0
Answers: 1
Expand a point by a specific number of miles
So I have a Geography type spatial column in SQL Server. This represents lat/long coordinates as a single point
Values look like this (as a string)
POINT (-96.63 32.97)
What I want to do is expand i...
Alexander Ryan Baggett
Votes: 0
Answers: 1
How to perform more complex spatial joins with GeoDataFrames?
Given two GeoDataFrames, g1, g2, I want to get all the rows from g1 which do not intersect any rows from g2, or only touch them.
For this there are some operations which I am missing in the interface:...
talz
Votes: 0
Answers: 0
sdo_relate ORA-13343: a polygon geometry has fewer than four coordinates
I am trying to do a SDO_relate however it is returning an error.
My code:
ON sdo_relate (f.tls_da_location, ntp.boundary, 'MASK=ANYINTERACT') = 'TRUE'
WHERE ntp.boundary IS NOT NULL
I have tried this...
Marc
Votes: 0
Answers: 1