Determining if an Asset is within 600 metres of a SiteSQL: IF clause within WHERE clauseLarge dataset (SQL to C#), long load time fixSQL to determine minimum sequential days of access?Using LIMIT within GROUP BY to get N results per group?How to determine which Geocoordinates are inside a defined Area?Inconsistent geolocation query results in SQLCompare a value to a potentially large data setSelect all points that are within a 100 metre radius of a POINT()sql spatial select linestring parts within polygon using stintersectionFind the length of a bounding rectangle polygon

Where can I find visible/radio telescopic observations of the center of the Milky Way galaxy?

Teacher help me explain this to my students

what kind of chord progession is this?

What are these arcade games in Ghostbusters 1984?

Is it true that cut time means "play twice as fast as written"?

A steel cutting sword?

Why would Ryanair allow me to book this journey through a third party, but not through their own website?

Website returning plaintext password

What is the object moving across the ceiling in this stock footage?

Can I tell a prospective employee that everyone in the team is leaving?

Plot and know intersection points of multiple lines/functions

Sitecore 9.0 works with solr 7.2.1?

How to deal with a colleague who is being aggressive?

Is the Indo-European language family made up?

A Riley Respite

Why didn't Thanos use the Time Stone to stop the Avengers' plan?

Caught 2 students cheating together on the final exam that I proctored

Why does this if-statement combining assignment and an equality check return true?

Boss wants me to falsify a report. How should I document this unethical demand?

Looking for a soft substance that doesn't dissolve underwater

What is a Centaur Thief's climbing speed?

Who will lead the country until there is a new Tory leader?

Construct a word ladder

The usage of "run a mile" in a sentence



Determining if an Asset is within 600 metres of a Site


SQL: IF clause within WHERE clauseLarge dataset (SQL to C#), long load time fixSQL to determine minimum sequential days of access?Using LIMIT within GROUP BY to get N results per group?How to determine which Geocoordinates are inside a defined Area?Inconsistent geolocation query results in SQLCompare a value to a potentially large data setSelect all points that are within a 100 metre radius of a POINT()sql spatial select linestring parts within polygon using stintersectionFind the length of a bounding rectangle polygon






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I have 20k assets in specific locations in the city I live in and I would like to determine which of those assets are within 600 metres of around 250 sites. One asset can be within the radius of multiple sites. I would like an output of only those assets that are within the site radius excluding all other assets.



I have created geographic point columns for both the asset and site based on their known latitude and longitude in their respective tables. The code that I am using below works, but it is taking hours to calculate which is not feasible for future tasks.



I am using a LocalDB SQL Server and SSMS.



SELECT 
Assets.Asset_ID, Assets.AssetPoint, Site.Site_ID, Site.SitePoint
FROM
Assets
CROSS JOIN
Site
WHERE
(Assets.AssetPoint.STIntersects(Site.SitePoint.STBuffer(600)) = 1)


I am hoping for a table that has assets aligned to sites computed in a few minutes.










share|improve this question
























  • I guess you need to create a bounding box for each; if the bounding boxes don't overlap, then those assets can be quickly eliminated

    – Strawberry
    Mar 24 at 6:36

















0















I have 20k assets in specific locations in the city I live in and I would like to determine which of those assets are within 600 metres of around 250 sites. One asset can be within the radius of multiple sites. I would like an output of only those assets that are within the site radius excluding all other assets.



I have created geographic point columns for both the asset and site based on their known latitude and longitude in their respective tables. The code that I am using below works, but it is taking hours to calculate which is not feasible for future tasks.



I am using a LocalDB SQL Server and SSMS.



SELECT 
Assets.Asset_ID, Assets.AssetPoint, Site.Site_ID, Site.SitePoint
FROM
Assets
CROSS JOIN
Site
WHERE
(Assets.AssetPoint.STIntersects(Site.SitePoint.STBuffer(600)) = 1)


I am hoping for a table that has assets aligned to sites computed in a few minutes.










share|improve this question
























  • I guess you need to create a bounding box for each; if the bounding boxes don't overlap, then those assets can be quickly eliminated

    – Strawberry
    Mar 24 at 6:36













0












0








0


1






I have 20k assets in specific locations in the city I live in and I would like to determine which of those assets are within 600 metres of around 250 sites. One asset can be within the radius of multiple sites. I would like an output of only those assets that are within the site radius excluding all other assets.



I have created geographic point columns for both the asset and site based on their known latitude and longitude in their respective tables. The code that I am using below works, but it is taking hours to calculate which is not feasible for future tasks.



I am using a LocalDB SQL Server and SSMS.



SELECT 
Assets.Asset_ID, Assets.AssetPoint, Site.Site_ID, Site.SitePoint
FROM
Assets
CROSS JOIN
Site
WHERE
(Assets.AssetPoint.STIntersects(Site.SitePoint.STBuffer(600)) = 1)


I am hoping for a table that has assets aligned to sites computed in a few minutes.










share|improve this question
















I have 20k assets in specific locations in the city I live in and I would like to determine which of those assets are within 600 metres of around 250 sites. One asset can be within the radius of multiple sites. I would like an output of only those assets that are within the site radius excluding all other assets.



I have created geographic point columns for both the asset and site based on their known latitude and longitude in their respective tables. The code that I am using below works, but it is taking hours to calculate which is not feasible for future tasks.



I am using a LocalDB SQL Server and SSMS.



SELECT 
Assets.Asset_ID, Assets.AssetPoint, Site.Site_ID, Site.SitePoint
FROM
Assets
CROSS JOIN
Site
WHERE
(Assets.AssetPoint.STIntersects(Site.SitePoint.STBuffer(600)) = 1)


I am hoping for a table that has assets aligned to sites computed in a few minutes.







sql sql-server geolocation geography






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 24 at 9:40









marc_s

591k13211301278




591k13211301278










asked Mar 24 at 3:58









KFOzKFOz

32




32












  • I guess you need to create a bounding box for each; if the bounding boxes don't overlap, then those assets can be quickly eliminated

    – Strawberry
    Mar 24 at 6:36

















  • I guess you need to create a bounding box for each; if the bounding boxes don't overlap, then those assets can be quickly eliminated

    – Strawberry
    Mar 24 at 6:36
















I guess you need to create a bounding box for each; if the bounding boxes don't overlap, then those assets can be quickly eliminated

– Strawberry
Mar 24 at 6:36





I guess you need to create a bounding box for each; if the bounding boxes don't overlap, then those assets can be quickly eliminated

– Strawberry
Mar 24 at 6:36












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55320599%2fdetermining-if-an-asset-is-within-600-metres-of-a-site%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55320599%2fdetermining-if-an-asset-is-within-600-metres-of-a-site%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript