You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Any thoughts on importing straight to MySQL's geometry classes? After I used your converter to put shapefiles in a MySQL db, I've since been churning the resulting rows to incorporate MySQL's geometry, like Points, LineStrings, and Polygons (some with "holes"). This is an incredibly slow process, given that I'm dealing with roughly 9 million rows of points and a bunch of fragile stored procedures/functions.
Then it dawned on me that it might not be too difficult to do rewrite your conversion app to handle this process at the point of insertion, either coinciding or in lieu of the textual representations. Before I embarked on it, I thought I'd see if you had any thoughts on the matter.
The text was updated successfully, but these errors were encountered:
I haven't personally considered it, but I doubt it'd be much work - It's just slightly adjusting the SQL output. To be honest, I've been putting most of my efforts into my pipes project so I haven't really touched this.
Were you thinking simply different SQL or having the app do the inserts itself?
Any thoughts on importing straight to MySQL's geometry classes? After I used your converter to put shapefiles in a MySQL db, I've since been churning the resulting rows to incorporate MySQL's geometry, like Points, LineStrings, and Polygons (some with "holes"). This is an incredibly slow process, given that I'm dealing with roughly 9 million rows of points and a bunch of fragile stored procedures/functions.
Then it dawned on me that it might not be too difficult to do rewrite your conversion app to handle this process at the point of insertion, either coinciding or in lieu of the textual representations. Before I embarked on it, I thought I'd see if you had any thoughts on the matter.
The text was updated successfully, but these errors were encountered: