×
Done
-
In progress
# | Cidade | Crawler | Parser |
---|---|---|---|
1 | São Paulo | ||
2 | Rio de Janeiro | - | |
3 | Brasília | ||
4 | Salvador |
class Queue { | |
constructor() { | |
this.queue = [] | |
} | |
get length() { | |
return this.queue.length; | |
} | |
enqueue(el) { |
class Stack { | |
constructor() { | |
this.stack = []; | |
} | |
get length() { | |
return this.stack.length; | |
} | |
push(el) { |
import requests | |
import shutil | |
BASE_FILE_URLS = [ | |
'https://www.wsl.ch/lud/chelsa/data/timeseries20c/prec/CHELSAcruts_prec_{}_{}_V.1.0.tif', | |
'https://www.wsl.ch/lud/chelsa/data/timeseries20c/tmax/CHELSAcruts_tmax_{}_{}_V.1.0.tif', | |
'https://www.wsl.ch/lud/chelsa/data/timeseries20c/tmin/CHELSAcruts_tmin_{}_{}_V.1.0.tif', | |
] | |
×
Done
-
In progress
# | Cidade | Crawler | Parser |
---|---|---|---|
1 | São Paulo | ||
2 | Rio de Janeiro | - | |
3 | Brasília | ||
4 | Salvador |