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
Could this replace some R functionality? Where would this happen?
One potential entry point would be using ogr2ogr to load into postgis. The benefits of this would likely only be noticed with datasets that are never brought into R memory.
Currently, data is:
downloaded to local machine
imported to R
transformed using geom_spec or attr_spec
loaded to postgis with Rpostgis
If steps 2 and 3 could be changed (transformation happens using command line tools only), then data would never have to be loaded into R, potentially dramatically improving efficiency.
Consider trying to recreate a data source using sed, awk, and ogr2ogr for transformations. Is there a noticeable or valuable difference in load efficiency?
The text was updated successfully, but these errors were encountered:
Could this replace some R functionality? Where would this happen?
One potential entry point would be using ogr2ogr to load into postgis. The benefits of this would likely only be noticed with datasets that are never brought into R memory.
Currently, data is:
If steps 2 and 3 could be changed (transformation happens using command line tools only), then data would never have to be loaded into R, potentially dramatically improving efficiency.
Consider trying to recreate a data source using sed, awk, and ogr2ogr for transformations. Is there a noticeable or valuable difference in load efficiency?
The text was updated successfully, but these errors were encountered: