I have a large amount of spatial data I need analyze and put into use in an application. Original data is represented in WKT format and I'm wrapping it into a INSERT SQL statements to upload the data.
INSERT INTO sp_table ( ID_Info, "shape") VALUES ('California', , ST_GeomFromText('POLYGON((49153 4168, 49154 4168, 49155 4168, 49155 4167, 49153 4168))'));
However this approach is taking too much time and data is large (10 million rows). So, is there any other way to upload large amount of spatial data ?
Any speedup hacks & tricks are welcome appreciated.