Skip to content

Commit

Permalink
Merge pull request #102 from addelany/main
Browse files Browse the repository at this point in the history
fix bbox array
  • Loading branch information
addelany authored Jul 16, 2024
2 parents 4d21a95 + d3ab50a commit 0915d55
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/build_model.R
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ build_model <- function(model_id,
"stac_extensions"= list('https://stac-extensions.github.io/table/v1.2.0/schema.json'),
"type"= "Feature",
"id"= stac_id,
"bbox"= list(stac4cast::get_bbox(site_metadata = site_table, sites = site_values)),
#"bbox"= list(stac4cast::get_bbox(site_metadata = site_table, sites = site_values)),
"bbox"= stac4cast::get_bbox(site_metadata = site_table, sites = site_values),
"geometry"= list(
"type"= catalog_config$site_type,
"coordinates"= stac4cast::get_site_coords(site_metadata = site_table, sites = site_values)
Expand Down

0 comments on commit 0915d55

Please sign in to comment.