Is there a standard way to store vector information in a database?

I want to store a very large amount of vector data on the server and only poll the parts that I need at this point ...

This should not be a problem.

Is there a way to take a vector file like a svg file and import it into a database? I could always write an svg parser to import it into my database, but is there any standard way to do this or store vector data in a database?

+3
source share
3 answers

I don’t think you can call it a standard, but here is an interesting link to academic work:

Design and implementation of spatial database based on XML-SVG

Annotation:

SVG, , , , , , . , SVG , .

. SVG -. SVG SVG, . .

+3

svg , , svg. .

0

In MSSQL, you have an XML column type that allows you to execute queries of type XPATH.

Select specific rows with SQL Server XML column type

0
source

Source: https://habr.com/ru/post/1699583/


All Articles