sql >> Database >  >> RDS >> Sqlserver

SQL Server genereert willekeurige ruimtelijke geografie rond punt?

Ik heb een antwoord gevonden op dit bericht https://gis.stackexchange.com/a/25883/ 37373

Ik heb het antwoord aangepast in SQL Server-code.

DECLARE @geo as GEOGRAPHY,@newgeo as GEOGRAPHY
SET @geo = (SELECT ZipGeo FROM Location.ZipCodes WHERE ZipCode='90210')

DECLARE @r float,@t float, @w float, @x float, @y float, @u float, @v float;

SET @u=RAND();
SET @v=RAND();

--8046m = ~ 5 miles
SET @r= 8046/(111300*1.0);
SET @w = @r * sqrt(@u);
SET @t = 2 * PI() * @v;
SET @x = @w * cos(@t);
SET @y = @w * sin(@t);
SET @x = @x / cos(@geo.Lat);

SET @newgeo = geography::STPointFromText('POINT('+CAST(@[email protected] AS VARCHAR(MAX))+' '+CAST(@[email protected] AS VARCHAR(MAX))+')',4326)
--Convert the distance back to miles to validate
SELECT @geo.STDistance(@newgeo)/1609.34



  1. Hoe RADIANS() werkt in MariaDB

  2. CHR() Functie in Oracle

  3. Hoe ora_hash te implementeren (zaaibare hash die elk sql-gegevenstype in n buckets verdeelt)

  4. Wat is de juiste codering / escaping / html-entiteiten die nodig zijn bij het verzenden van gegevens van js naar php, php naar mysql en voor REST json-antwoorden