-
Notifications
You must be signed in to change notification settings - Fork 17
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
speed up sample_polar #669
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I now also avoid wgs_to_proj <- function(lon, lat, proj4string) {
xy <- data.frame(x = lon, y = lat)
sp::coordinates(xy) <- c("x", "y")
sp::proj4string(xy) <- sp::CRS("+proj=longlat +datum=WGS84")
res <- sp::spTransform(xy, proj4string)
# Check if the result is a SpatialPointsDataFrame
if (inherits(res, "SpatialPointsDataFrame")) {
# If it is, convert it to a SpatialPoints object
rownames(res@bbox) <- c("x", "y")
colnames(res@coords) <- c("x", "y")
res <- sp::SpatialPoints(coords = res@coords, proj4string = res@proj4string, bbox = res@bbox)
}
return(res)
}
wgs_to_proj_new2 <- function(lon, lat, proj4string) {
xy<-sf::st_as_sf(data.frame(x = lon, y = lat), coords=c('x','y'), crs=4326L)
res <- sf::st_transform(xy, proj4string)
res <- sf::as_Spatial(res)
rownames(res@bbox) <- c("x", "y")
colnames(res@coords) <- c("x", "y")
return(res)
}
bench::mark(
wgs_to_proj(1:2,52+1:2, "+proj=aeqd +lat_0=56.3675003051758 +lon_0=12.8516998291016 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs"),
wgs_to_proj_new2(1:2,52+1:2, "+proj=aeqd +lat_0=56.3675003051758 +lon_0=12.8516998291016 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs")
)
#> # A tibble: 2 × 6
#> expression min median `itr/sec` mem_alloc `gc/sec`
#> <bch:expr> <bch:> <bch:> <dbl> <bch:byt> <dbl>
#> 1 "wgs_to_proj(1:2, 52 + 1:2, \"+pro… 46.2ms 57.6ms 17.2 32.8MB 2.15
#> 2 "wgs_to_proj_new2(1:2, 52 + 1:2, \… 20.8ms 23.3ms 40.4 24.8KB 2.02 Created on 2024-07-17 with reprex v2.1.0 |
The same can be done to require(bioRad)
#> Loading required package: bioRad
#> Welcome to bioRad version 0.7.3.9000
#> Attempting to load MistNet from: /home/bart/R/x86_64-pc-linux-gnu-library/4.4/vol2birdR/lib
#> MistNet successfully initialized.
#> using vol2birdR version 1.0.2 (MistNet installed)
template_raster <- raster::raster(ncol=300, nrow=300,
raster::extent(12, 13, 56, 57),
crs = sp::CRS("+proj=longlat")
)
pvolfile <- system.file("extdata", "volume.h5", package = "bioRad")
data(example_vp)
pvol <- read_pvolfile(pvolfile)
bench::mark(ppi <- integrate_to_ppi(pvol, example_vp, raster = template_raster), iterations = 5)
#> Warning: Some expressions had a GC in every iteration; so filtering is
#> disabled.
#> # A tibble: 1 × 6
#> expression min median `itr/sec` mem_alloc `gc/sec`
#> <bch:expr> <bch> <bch:> <dbl> <bch:byt> <dbl>
#> 1 ppi <- integrate_to_ppi(pvol, examp… 4.5s 4.95s 0.201 618MB 3.58
unloadNamespace("bioRad")
devtools::load_all("~/bioRad")
#> ℹ Loading bioRad
#> Welcome to bioRad version 0.7.3.9000
#> using vol2birdR version 1.0.2 (MistNet installed)
bench::mark(ppi2 <- integrate_to_ppi(pvol, example_vp, raster = template_raster), iterations = 5)
#> Warning: Some expressions had a GC in every iteration; so filtering is
#> disabled.
#> # A tibble: 1 × 6
#> expression min median `itr/sec` mem_alloc `gc/sec`
#> <bch:expr> <bch> <bch:> <dbl> <bch:byt> <dbl>
#> 1 ppi2 <- integrate_to_ppi(pvol, exam… 2.94s 3.39s 0.301 584MB 3.92
all.equal(ppi, ppi2)
#> [1] TRUE Created on 2024-07-17 with reprex v2.1.0 |
Thanks @bart1, this is very helpful |
adokter
approved these changes
Jul 17, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I noticed projecting to ppi of rasters became rather slow I guess this relates to the
sp
/sf
changes. These issued extent doproject_as_ppi
and maybeintegrate_to_ppi
. This was mainly a problem for rasters. This pull should fix that. Here is a small comparisons of the old and new (notebench::mark
also checks the results are equal). Nowsample_polar
is 4 times quicker for rasters. Profiling shows that now most time is spend in thest_transform
function (about 80%) which we cant really get around.Created on 2024-07-17 with reprex v2.1.0