Aug 28, 2018

How to downscale temperature raster with higher resolution Digial Elevation Model

Transform low resolution to high, with statistical predictor.

From this:
 To this:


Useful example with code in Rmd. Full script @GitHub

Load requiered libraries.
```{r setup, include=FALSE}
library(sp)
library(raster)
```

Some magic happens here - Check the full code @GitHub.

Store the result in GeoTIFF.

```{r save-downscaled-raster}
    # write GeoTIFF with float 32 and LZW compression
    writeRaster(corrected_raster, filename=paste(basepath, 
    '/' ,basename ,'.tif',sep=''), format="GTiff", overwrite=TRUE, 
    datatype = 'FLT4S', options=c("COMPRESS=LZW"))
```
Читать дальше......

Aug 6, 2018

BBC environment correspondence:

BBC environment correspondence:

Climate change: 'Hothouse Earth' risks even if CO₂ emissions slashed - http://www.bbc.co.uk/news/science-environment-45084144
http://www.bbc.co.uk/news/science-environment-45084144 Читать дальше......