Hello All,
I have been using ArcGIS for geocoding in the past unitil I realized there's something available for stata. I'm trying to geocode some addresses and was using the jsonio package. It didn't work very well-stopped working when the address cannot be found. So I split all my addresses into files with only one address and try to geocode it using "ggeocode" command. Not sure if it is because of the quota of Google geocoding API?
It worked for the first several files but later on stata refuses to take any "ggeocode" command. My "query java" result also turned into this:
I'm very new to java. So these results get me very confused. Anyone has the similar experience? Very much appreciated!
I have been using ArcGIS for geocoding in the past unitil I realized there's something available for stata. I'm trying to geocode some addresses and was using the jsonio package. It didn't work very well-stopped working when the address cannot be found. So I split all my addresses into files with only one address and try to geocode it using "ggeocode" command. Not sure if it is because of the quota of Google geocoding API?
Code:
local maxid1 = 468 local maxid2 = 1176 forvalues x=1/2{ clear all display `x' forvalues i=1/`maxid`x'' { use temp\geocode`x'.dta, clear keep if id==`i' ggeocode address, ret(viewport address bbox) save temp\geocode`x'_`i'.dta, replace } }
Code:
. query java ----------------------------------------------------------------------------------- Java system information Java initialized no Advanced Java settings set java_heapinit 63999m set java_heapmax 64000m set java_vmpath C:\Program Files\Java\jre1.8.0_131\bin\server\jvm.dll
Comment