Объединение представлений путем нахождения широты и долготы, содержащихся в многоугольниках, из другого представления - PullRequest
0 голосов
/ 09 июля 2020

Я пытаюсь использовать оператор левого соединения с STContains. У кого-нибудь есть предложения, потому что, по-видимому, соединение не работает.

        GeoLocation.STContains(geography::Point(isnull([Occurrence/Dispatch Latitude],0), isnull([Occurrence/Dispatch Longitude],0), 4326) ) = 1```

Field Geolocation in the query means Polygon in geography data type.

I have already tested creating a table with one of the polygons in one column and lat/long in another column, then by using STContains I was able to find the lat/long contained in the polygon.



...