Necesito extraer Points de Linestring usando SQL Server. Sé que puedo ver coordenadas con geometry.ToString() pero necesito nueva geometría de puntos. ¿Cómo puedo hacerlo?Linestring to Points
7
A
Respuesta
1
sé casi nada sobre el tipo de datos de geometría, pero la documentation dice que se obtiene el número de puntos en el objeto utilizando STNumPoints
y luego recuperar puntos individuales utilizando STPointN
.
6
Aquí hay un pequeño ejemplo de cómo extraer los puntos de una serie lineal:
declare @LineString geography,
@loop int
declare @Points table (Point geography)
set @LineString = geography::Parse('LINESTRING(
-22.8317451477051 -43.4041786193848,-22.8308925628662 -43.4045524597168,-22.8314971923828 -43.404727935791,
-22.833927154541 -43.4069404602051,-22.8267574310303 -43.4071388244629)')
set @loop = @LineString.STNumPoints()
while @loop > 0
begin
insert into @Points values(@LineString.STPointN(@loop))
set @loop = @loop -1
end
select Point.Lat as Lat, Point.Long as Long from @Points
Y no se rinden: Datos Espaciales en T-SQL es un poco complicado, pero funciona!
12
Si está utilizando SQL 2005+, yo recomendaría hacerlo con un CTE:
DECLARE @GeometryToConvert GEOMETRY
SET @GeometryToConvert =
GEOMETRY::STGeomFromText('LINESTRING (-71.880713132200128 43.149953199689264, -71.88050339886712 43.149719933022993, -71.880331598867372 43.149278533023676, -71.88013753220099 43.147887799692512, -71.879965998867931 43.147531933026357, -71.879658998868422 43.147003933027179, -71.879539598868575 43.146660333027739, -71.879525332201979 43.145994399695439, -71.87959319886852 43.145452399696296, -71.879660598868384 43.14531113302985, -71.879915932201357 43.145025599696908, -71.879923198868028 43.1449217996971, -71.879885998868076 43.144850733030523, -71.879683932201715 43.144662333030851, -71.879601398868488 43.144565333030982, -71.879316798868956 43.144338333031328, -71.879092332202617 43.144019799698469, -71.8789277322029 43.143902533032019, -71.878747932203169 43.143911533031996, -71.878478132203554 43.14405779969843, -71.878328332203807 43.144066133031743, -71.878148732204068 43.144016599698489, -71.8772655988721 43.143174533033118, -71.876876198872708 43.142725133033821, -71.876801532206173 43.142654933033953, -71.876629398873092 43.142600733034044)', 4269)
;
WITH GeometryPoints(N, Point) AS
(
SELECT 1, @GeometryToConvert.STPointN(1)
UNION ALL
SELECT N + 1, @GeometryToConvert.STPointN(N + 1)
FROM GeometryPoints GP
WHERE N < @GeometryToConvert.STNumPoints()
)
SELECT *, Point.STAsText() FROM GeometryPoints
texto Resultados
Resultados espaciales - STBuffer (0,0001)
Cuestiones relacionadas
- 1. SynchronizationContext y ASP.NET Web API Extensibility Points
- 2. WCF Mex End Points for Multiple Bindings
- 3. Cómo cambiar para usar Story Points para estimaciones en Scrum
- 4. Encontrar N LineString más cercano desde un punto usando MySQL Spatial Extensions
- 5. LINQ to Entities consulta de tabla de tres tablas
- 6. Cuál es la diferencia entre "LINQ to Entities", "LINQ to SQL" y "LINQ to Dataset"
- 7. Entity Framework - Linq To Entities - Many-To-Many Query Problems
- 8. XML to C struct y C struct to XML
- 9. Entity Framework vs Linq to Entities vs Linq to SQL
- 10. En SMTP, ¿deben coincidir los RCPT TO: y TO:?
- 11. CSS 'schema' how-to
- 12. Brush to Brush Animation
- 13. Port Boost to Android
- 14. jquery # color to rgba?
- 15. ZipExtFile to Django File
- 16. MOVE TO SD CARD
- 17. QVariant to QObject *
- 18. sql query to mongodb?
- 19. javascript date to string
- 20. LINQ to feed RSS?
- 21. C++ iterator to const_iterator
- 22. Bad commit to Git
- 23. LINQ to DataTable
- 24. Word Array to String
- 25. Haskell to Clojure
- 26. English to Time
- 27. Python alternative to reduce()
- 28. Homography to Projective transform
- 29. Ruby to Actionscript3 Bytecode
- 30. Mail to MySQL Database
¿Cómo hiciste que tus puntos se vean así? Cuando muestro puntos son apenas legibles. –
Usando la función STBuffer(). El valor ideal difiere dependiendo de si tu estás usando en Geometría o Geografía http://technet.microsoft.com/en-us/library/bb933965.aspx –
Sí, estoy usando la geografía con STBuffer (1) y los puntos son oblongos ¿Cómo puedo hacer que sean círculos perfectos como el tuyo? –