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
Currently, if a dependency for a variable (attr or geom) is not in the database, the importShapefile will go through a download-upload-import cycle.
The download is from the web-hosted data source into the R environment, where it is transformed into the standard format.
The standardized data is then uploaded to PostGIS.
Now that the dependency exists in PostGIS, the attr and geom are joined and together they are imported back into the R environment.
We should be able to skip the import step if we already have the dependency in memory. The snag here is attr and geom are joined in PG and then imported. There are three cases to address:
neither dependency existed in the DB and was just downloaded into the R environment
geom didn't exist, was just downloaded, and attr needs to be imported from DB
attr didn't exist, was just downloaded, and geom needs to be imported from DB
This is an important issue and could help ease the memory strains and help with #8
The text was updated successfully, but these errors were encountered:
Currently, if a dependency for a variable (attr or geom) is not in the database, the importShapefile will go through a download-upload-import cycle.
The download is from the web-hosted data source into the R environment, where it is transformed into the standard format.
The standardized data is then uploaded to PostGIS.
Now that the dependency exists in PostGIS, the attr and geom are joined and together they are imported back into the R environment.
We should be able to skip the import step if we already have the dependency in memory. The snag here is attr and geom are joined in PG and then imported. There are three cases to address:
This is an important issue and could help ease the memory strains and help with #8
The text was updated successfully, but these errors were encountered: