This is a very simple geocoding example. However, this code when runs, throws warnings and data.json is empty -
data.json <- fromJSON(paste(readLines(url("http://maps.google.com/maps/api/geocode/json?sensor=false&address=india"))))
Warning messages: 1: In if (is.na(encoding)) return(0L) : the condition has length > 1 and only the first element will be used
2: In if (is.na(i)) { : the condition has length > 1 and only the first element will be used
> length(data.json)
[1] 0
However, when I change the code and put the readLines block inside a paste block like this, it works:
> data.json <- fromJSON(paste(readLines(url("http://maps.google.com/maps/api/geocode/json?sensor=false&address=india")), collapse=""))
> length(data.json)
[1] 2
Why is this? What did paste(..., collapse="") did to get rid of the warnings and the data.json is complete.