-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
library(qgis) #32
Comments
Also the extra occupied memory can be ignored relative to qgisprocess: > lobstr::mem_used()
31.09 MB
>
> library(qgisprocess)
Attempting to load the cache ... Success!
QGIS version: 3.28.3-Firenze
Having access to 785 algorithms from 9 QGIS processing providers.
Run `qgis_configure(use_cached_data = TRUE)` to reload cache and get more details.
>
> lobstr::mem_used()
43.03 MB
>
> library(qgis)
>
> lobstr::mem_used()
44.16 MB
# New R session
> lobstr::mem_used()
30.60 MB
>
> library(qgis)
Attempting to load the cache ... Success!
>
> lobstr::mem_used()
43.52 MB
|
Ok, thanks for the tests. I just though that the loading the package will take more resources with respect to its size ;-) I will remove the text from the readme. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Jan,
I saw in README 'The package is not meant to be load directly as this would significant number of functions (<900).'. Actually I don't think that's a problem on modern systems. Loading time is still mainly taken by loading qgisprocess in the background.
So I think it's no problem to do
library(qgis)
:The text was updated successfully, but these errors were encountered: