File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ query_abv <- "SELECT
103103 AND NOT ARRAY_CONTAINS(issue, 'COUNTRY_COORDINATE_MISMATCH')
104104 AND level1gid = 'BEL.2_1'
105105 AND \"year\" >= 2007
106- AND \"year\" <= 2018
106+ AND \"year\" <= 2022
107107 AND speciesKey IS NOT NULL
108108 AND decimalLatitude IS NOT NULL
109109 AND decimalLongitude IS NOT NULL
@@ -127,7 +127,7 @@ abv_data_total <- download_occ_cube(
127127 sql_query = query_abv,
128128 file = "abv_data.csv",
129129 path = data_path,
130- overwrite = FALSE
130+ overwrite = TRUE
131131)
132132```
133133
@@ -171,7 +171,7 @@ query_birdcube <- "SELECT
171171 AND NOT ARRAY_CONTAINS(issue, 'COUNTRY_COORDINATE_MISMATCH')
172172 AND level1gid = 'BEL.2_1'
173173 AND \"year\" >= 2007
174- AND \"year\" <= 2018
174+ AND \"year\" <= 2022
175175 AND speciesKey IS NOT NULL
176176 AND decimalLatitude IS NOT NULL
177177 AND decimalLongitude IS NOT NULL
@@ -195,7 +195,7 @@ birdcube_data_total <- download_occ_cube(
195195 sql_query = query_birdcube,
196196 file = "birdcube_data.csv",
197197 path = data_path,
198- overwrite = FALSE
198+ overwrite = TRUE
199199)
200200```
201201
You can’t perform that action at this time.
0 commit comments