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
Hi, thank you for the package! I can't use the overture_sf function to access the Overture buildings datasets. Here is the error I get, even for the code example in the Readme page.
> library(overtureR)
>
> duomo_coords <- c(11.2558, 43.7739)
>
> buffer_distance <- 0.005
>
> duomo_bbox <- st_bbox(c(
+ xmin = duomo_coords[1] - buffer_distance,
+ ymin = duomo_coords[2] - buffer_distance,
+ xmax = duomo_coords[1] + buffer_distance,
+ ymax = duomo_coords[2] + buffer_distance
+ ), crs = 4326)
>
> data <- overture_sf("building", bbox = duomo_bbox)
Error: IOError: When getting information for key 'release/2024-12-18.0/theme=buildings/type=building' in bucket 'overturemaps-us-west-2': AWS Error UNKNOWN (HTTP status 301) during HeadObject operation: No response body. Looks like the configured region is '' while the bucket is located in 'us-west-2'.
Am I missing something?
The text was updated successfully, but these errors were encountered:
Hi @belisards!
Thank you for using the package.
Yes, it seems I have to explicitly set the region of the s3-bucket. I fixed the problem in the last commit.
Please reinstall the package and let me know if it works :)
I tried installing the package in Google Colab and I can't get the error. I can only receive the error if I manually change the 'region' to, for example, 'us-east-1'. I'll investigate more deeply.
Hi, thank you for the package! I can't use the overture_sf function to access the Overture buildings datasets. Here is the error I get, even for the code example in the Readme page.
Am I missing something?
The text was updated successfully, but these errors were encountered: