California Iso Download Csv Data

Data Downloads. To download data related to alternative fuels and advanced vehicles, follow the steps below. Choose data to download. Choose the dataset and file format you want to download. File Format Read descriptions of the data included in the alternative. Below are free Area Code quick references in printable format. Each list includes area codes and helpful additional information such as time zones. Area Code / Time Zones This is our most popular list. On a single page, it has each area code with corresponding time zone and state.

Permalink

Join GitHub today

GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.

Sign up
Find file Copy path
Cannot retrieve contributors at this time
# CAISO-oasisAPI-operations.R
#
# Contributors: Peter Alstone
#
# Version 0.1
#
# These R functions can be used to access CAISO operations data, an alternative to using the 'Oasis' system
# get R: cran.r-project.org
# FUNCTIONS ------------------------------------------------
# fetch CAISO LMP data from OASIS (see 'Interface Specification for OASIS API)
getCAISOlmp<-function(startdate=20110101, enddate=20110102, market_run_id='DAM',node='ALL',
onlyDo=NA,allAtOnce=TRUE){
# # DON'T use node by node , only use ALL nodes -- doesn't append data!
# this function simply grabs the csv data from caiso and dumps it into a data frame with the same structure as the csv.
# onlyDo means 'only do the first X nodes in the list'
# allAtOnce means to use the 'all apnode' command to download instead of node by node crawling -- use anything else at your peril.
# convert CAISO format to POSIXct dates
start<- strptime(startdate,'%Y%m%d')
end<- strptime(enddate,'%Y%m%d')
# Initialize data frame with starting day
activeDay<-start
#define base URL
baseURL<-'http://oasis.caiso.com/mrtu-oasis/SingleZip?'
if(node!='ALL'){ #if there is only one node...just do that.
while(activeDay<end){
activeNode<-node
# assemble url for LMP
getURL<- paste(baseURL,'resultformat=6&queryname=PRC_LMP&startdate=',strftime(activeDay,'%Y%m%d'),'&enddate=',strftime(activeDay,'%Y%m%d'),'&market_run_id=',market_run_id,'&node=',activeNode,sep='')
temp<- tempfile() #create temp file
download.file(getURL,temp) # get data into temp
data<- read.csv(unzip(temp)) # unzip and read csv, dump into data
unlink(temp)
#end for
activeDay<-activeDay+86400# add one day (in seconds)
#end while
}
return(data)
}else{ #...or get all of the nodes...
if(allAtOnce){ #get all nodes day by day.
# First day -- initialize data output frame.
getURL<- paste(baseURL,'resultformat=6&queryname=PRC_LMP&startdate=',strftime(activeDay,'%Y%m%d'),'&enddate=',strftime(activeDay,'%Y%m%d'),'&market_run_id=',market_run_id,'&grp_type=ALL_APNODES',sep='')
temp<- tempfile() #create temp file
try(download.file(getURL,temp)) # get data into temp
try(data<- read.csv(unzip(temp))) # unzip and read csv, dump into data
unlink(temp)
activeDay<-activeDay+86400#increment one day
while(activeDay<end){
# assemble url for LMP
getURL<- paste(baseURL,'resultformat=6&queryname=PRC_LMP&startdate=',strftime(activeDay,'%Y%m%d'),'&enddate=',strftime(activeDay,'%Y%m%d'),'&market_run_id=',market_run_id,'&grp_type=ALL_APNODES',sep='')
temp<- tempfile() #create temp file
try(download.file(getURL,temp)) # get data into temp
try(newdata<- read.csv(unzip(temp))) # unzip and read csv, dump into data
unlink(temp)
try(data<- rbind(data,newdata))#append new data to existing
activeDay<-activeDay+86400# add one day (in seconds)
}
}else{ # go through pnodes one by one (very slow)
#get list of all Pnodes (this may or may not be all...just take the start date)
pnodeURL<- paste(baseURL,'resultformat=6&queryname=ATL_PNODE&Pnode_type=ALL&startdate=',strftime(start,'%Y%m%d'),sep='')
temp<- tempfile() #create temp file
download.file(pnodeURL,temp) # get data into temp
pnode.desc<- read.csv(unzip(temp)) # unzip and read csv, dump into data
unlink(temp)
if(is.na(onlyDo)){numberNodes<- length(pnode.desc$PNODE_ID)}else{numberNodes<-onlyDo}
activeNode<-pnode.desc$PNODE_ID[1]
# assemble url for LMP and download.
getURL<- paste(baseURL,'resultformat=6&queryname=PRC_LMP&startdate=',strftime(activeDay,'%Y%m%d'),'&enddate=',strftime(activeDay,'%Y%m%d'),'&market_run_id=',market_run_id,'&node=',activeNode,sep='')
temp<- tempfile() #create temp file
download.file(getURL,temp) # get data into temp
data<- read.csv(unzip(temp)) # unzip and read csv, dump into data (THE MAIN OUTPUT)
unlink(temp)
while(activeDay<end){
for(iin2:numberNodes){
activeNode<-pnode.desc$PNODE_ID[i]
# assemble url for LMP
getURL<- paste(baseURL,'resultformat=6&queryname=PRC_LMP&startdate=',strftime(activeDay,'%Y%m%d'),'&enddate=',strftime(activeDay,'%Y%m%d'),'&market_run_id=',market_run_id,'&node=',activeNode,sep='')
temp<- tempfile() #create temp file
try(download.file(getURL,temp)) # get data into temp
try(newdata<- read.csv(unzip(temp))) # unzip and read csv, dump into data
unlink(temp)
try(data<- rbind(data,newdata))#append new data to existing DF
}
#end for
activeDay<-activeDay+86400# add one day (in seconds)
} #end while
} #end else
return(data)
} #end else
} #end FUNCTION ... getCAISOlmp
# fetch CAISO energy clearing data from OASIS (see 'Interface Specification for OASIS API)
getCAISOsysenergy<-function(startdate=20110101, enddate=20110102,
market_run_id=c('DAM','RTM','RUC','HASP')){
# this function simply grabs the csv data from caiso and dumps it into a data frame with the same structure as the csv.
# use a set of market run IDs to get all of them using c(oncatenate)...otherwise specify 'DAM' 'RTM' 'RUC' or 'HASP'
# convert CAISO format to POSIXct dates
start<- strptime(startdate,'%Y%m%d')
end<- strptime(enddate,'%Y%m%d')
# Initialize data frame with starting day
activeDay<-start
#define base URL
baseURL<-'http://oasis.caiso.com/mrtu-oasis/SingleZip?'
# First day -- initialize data output frame with first data.
dummy<-1
for(iinmarket_run_id){
getURL<- paste(baseURL,'resultformat=6&queryname=ENE_SLRS&startdate=',strftime(activeDay,'%Y%m%d'),'&enddate=',strftime(activeDay,'%Y%m%d'),'&market_run_id=',i,'&tac_zone_name=ALL&schedule=ALL',sep='')
temp<- tempfile() #create temp file
try(download.file(getURL,temp)) # get data into temp
if(dummy1){try(data<- read.csv(unzip(temp)))
dummy=dummy+1
}else{
try(newdata<- read.csv(unzip(temp)))
try(data<- rbind(data,newdata))#append new data to existing
} # unzip and read csv, dump into data
unlink(temp)
} #end for loop for first day
activeDay<-activeDay+86400# add one day (in seconds)
# Subsequent days -- download and append
while(activeDay<end){
for(iinmarket_run_id){ #loop through market types
getURL<- paste(baseURL,'resultformat=6&queryname=ENE_SLRS&startdate=',strftime(activeDay,'%Y%m%d'),'&enddate=',strftime(activeDay,'%Y%m%d'),'&market_run_id=',i,'&tac_zone_name=ALL&schedule=ALL',sep='')
temp<- tempfile() #create temp file
try(download.file(getURL,temp)) # get data into temp
try(newdata<- read.csv(unzip(temp))) # unzip and read csv, dump into data
unlink(temp)
try(data<- rbind(data,newdata))#append new data to existing
}
activeDay<-activeDay+86400# add one day (in seconds)
} #end while loop for moving through time...
return(data) # these are the data you are looking for...
} #end FUNCTION ... getCAISOsysenergy
# fetch CAISO load data from OASIS (see 'Interface Specification for OASIS API)
getCAISOload<-function(startdate=20110101, enddate=20110102){
# this function simply grabs the csv data from caiso and dumps it into a data frame with the same structure as the csv.
# convert CAISO format to POSIXct dates
start<- strptime(startdate,'%Y%m%d')
end<- strptime(enddate,'%Y%m%d')
# Initialize data frame with starting day
activeDay<-start
#define base URL
baseURL<-'http://oasis.caiso.com/mrtu-oasis/SingleZip?'
# First day -- initialize data output frame with first data.
getURL<- paste(baseURL,'resultformat=6&queryname=SLD_FCST&startdate=',strftime(activeDay,'%Y%m%d'),'&enddate=',strftime(activeDay,'%Y%m%d'),sep='')
temp<- tempfile() #create temp file
try(download.file(getURL,temp)) # get data into temp
try(data<- read.csv(unzip(temp)))
unlink(temp)
activeDay<-activeDay+86400# add one day (in seconds)
# Subsequent days -- download and append
while(activeDay<end){
getURL<- paste(baseURL,'resultformat=6&queryname=SLD_FCST&startdate=',strftime(activeDay,'%Y%m%d'),'&enddate=',strftime(activeDay,'%Y%m%d'),sep='')
temp<- tempfile() #create temp file
try(download.file(getURL,temp)) # get data into temp
try(newdata<- read.csv(unzip(temp))) # unzip and read csv, dump into data
unlink(temp)
try(data<- rbind(data,newdata))#append new data to existing
activeDay<-activeDay+86400# add one day (in seconds)
} #end while loop for moving through time...
return(data) # these are the data you are looking for...
} #end FUNCTION ... getCAISOload
# Fetch CAISO public bid data (be careful, these are big files)
getCAISObids<-function(startdate=20110101, enddate=20110102, market='DAM'){
#market is DAM or RTM
# this function simply grabs the csv data from caiso and dumps it into a data frame with the same structure as the csv.
# convert CAISO format to POSIXct dates
start<- strptime(startdate,'%Y%m%d')
end<- strptime(enddate,'%Y%m%d')
# Initialize data frame with starting day
activeDay<-start
#define base URL
baseURL<-'http://oasis.caiso.com/mrtu-oasis/GroupZip?'#note this is a grouped file
reportname<-paste('PUB_',market,'_GRP',sep='')
# First day -- initialize data output frame with first data.
getURL<- paste(baseURL,'resultformat=6&groupid=',reportname,'&startdate=',strftime(activeDay,'%Y%m%d'),sep='')
temp<- tempfile() #create temp file
try(download.file(getURL,temp)) # get data into temp
try(data<- read.csv(unzip(temp)))
unlink(temp)
activeDay<-activeDay+86400# add one day (in seconds)
# Subsequent days -- download and append
while(activeDay<end){
getURL<- paste(baseURL,'resultformat=6&groupid=',reportname,'&startdate=',strftime(activeDay,'%Y%m%d'),sep='')
temp<- tempfile() #create temp file
try(download.file(getURL,temp)) # get data into temp
try(newdata<- read.csv(unzip(temp))) # unzip and read csv, dump into data
unlink(temp)
try(data<- rbind(data,newdata))#append new data to existing
activeDay<-activeDay+86400# add one day (in seconds)
} #end while loop for moving through time...
return(data) # these are the data you are looking for...
} #end FUNCTION ... getCAISObids
# Fetch CAISO public bid data (be careful, these are big files)
getCAISOopres<-function(startdate=20110101, enddate=20110102){
#market is DAM or RTM
# this function simply grabs the csv data from caiso and dumps it into a data frame with the same structure as the csv.
# convert CAISO format to POSIXct dates
start<- strptime(startdate,'%Y%m%d')
end<- strptime(enddate,'%Y%m%d')
# Initialize data frame with starting day
activeDay<-start
#define base URL
baseURL<-'http://oasis.caiso.com/mrtu-oasis/SingleZip?'#note this is a grouped file
# First day -- initialize data output frame with first data.
getURL<- paste(baseURL,'resultformat=6&queryname=AS_OP_RSRV&startdate=',strftime(activeDay,'%Y%m%d'),'&enddate=',strftime(activeDay,'%Y%m%d'),sep='')
temp<- tempfile() #create temp file
try(download.file(getURL,temp)) # get data into temp
try(data<- read.csv(unzip(temp)))
unlink(temp)
activeDay<-activeDay+86400# add one day (in seconds)
# Subsequent days -- download and append
while(activeDay<end){
getURL<- paste(baseURL,'resultformat=6&queryname=AS_OP_RSRV&startdate=',strftime(activeDay,'%Y%m%d'),'&enddate=',strftime(activeDay,'%Y%m%d'),sep='')
temp<- tempfile() #create temp file
try(download.file(getURL,temp)) # get data into temp
try(newdata<- read.csv(unzip(temp))) # unzip and read csv, dump into data
unlink(temp)
try(data<- rbind(data,newdata))#append new data to existing
activeDay<-activeDay+86400# add one day (in seconds)
} #end while loop for moving through time...
return(data) # these are the data you are looking for...
} #end FUNCTION ... getCAISOopres
# add date info to CAISO data frames
addDatesCAISO<-function(caisodata,date.format=c('%Y%m%d'),date.column='OPR_DT'){
caisodata$posixlt<- as.POSIXlt(caisodata[[date.column]])
caisodata$year<-caisodata$posixlt$year+1900
caisodata$mon<- strftime(caisodata$posixlt,'%b')
caisodata$monnum<-strftime(caisodata$posixlt,'%m')
caisodata$mday<-caisodata$posixlt$mday
caisodata$wday<- strftime(caisodata$posixlt,'%a') #week day
caisodata$date<- strftime(caisodata$posixlt,date.format)
caisodata$yhr<-caisodata$posixlt$yday*24+caisodata$posixlt$hour+1#hour ending 1-8760 over the year
caisodata$yday<-caisodata$posixlt$yday
return(caisodata)
}
# melt CAISO data into a mono-value data frame for analysis.
meltCAISO<-function(caisodata,preserve.na=FALSE){
hourLabels<- c('HE01','HE02','HE03','HE04','HE05','HE06','HE07','HE08','HE09','HE10','HE11','HE12','HE13','HE14','HE15','HE16','HE17','HE18','HE19','HE20','HE21','HE22','HE23','HE24')
data<- melt(caisodata,id=which(!names(caisodata) %in%hourLabels),measured=which(names(caisodata) %in%hourLabels,na.rm=preserve.na))
return(data)
}
# Load duration curves with classic R look saved to pdf
makeLDC<-function(data,value.column,file='mypdf.pdf',
h=5,w=10,
xlab='Exceedance (unitless)',ylab='value',
main='Load Duration Curve',sub='CAISO total service area',type='p'){
data<-arrange(data,desc(data[[value.column]]))
pdf(file,width=w,height=h)
cumdist<-1:length(data[[value.column]]) / length(data[[value.column]])
myplot<-plot(cumdist,data[[value.column]],xlab=xlab,ylab=ylab,main=main,sub=sub,type=type)
print(myplot)
dev.off()}
# Load duration curves with classic R look ready to send to a graphics device.
viewLDC<-function(data,value.column,
color, #use same number of colors as value column!
h=5,w=10,
xlab='Exceedance (unitless)',ylab='value',
main='Load Duration Curve',sub='CAISO total service area',type='p'){
if(length(value.column)1){
# for first value column
data<-arrange(data,desc(data[[value.column]]))
cumdist<-1:length(data[[value.column]]) / length(data[[value.column]])
myplot<-plot(cumdist,data[[value.column]],col=color[1],xlab=xlab,ylab=ylab,main=main,sub=sub,type=type)
return(myplot)
}else{
# for first value column initialize plot
active.data<-arrange(data,desc(data[[value.column[1]]]))
cumdist<-1:length(active.data[[value.column[1]]]) / length(active.data[[value.column[1]]])
myplot<-plot(cumdist,active.data[[value.column[1]]],col=color[1],xlab=xlab,ylab=ylab,main=main,sub=sub,type=type)
for(iin2:length(value.column)){
active.data<-arrange(data,desc(data[[value.column[i]]]))
cumdist<-1:length(active.data[[value.column[i]]]) / length(active.data[[value.column[i]]])
points(cumdist,active.data[[value.column[i]]],col=color[i])
}
return(myplot)
}}#end function view LDC
# add temporal categories (useful for slicing up data by season / peak / weekend)
addTimeCats<-function(data,time.column='posixlt',hour.column='dhr'){
begin.summer<-5#first month of summer
end.summer<-9#last month of summer
begin.peak.sum<-13# first hour on peak
end.peak.sum<-19# last hour on peak
begin.peak.wint<-17
end.peak.wint<-20
for(iin1:length(data[[time.column]])){
month<-data[[time.column]][['mon']][i]+1
hour<-data[[hour.column]][i]
day<-data[[time.column]][['wday']][i]
season<-if(month<=begin.summer|month>=end.summer){'winter'}else{'summer'}
daytype<-if(day0|day6){'weekend'}else{'weekday'}
period<-if(daytype'weekend'){'off.peak'}else{if(season'summer'&begin.peak.sum<=hour&hour<=end.peak.sum){'peak'}else{if(season'winter'&begin.peak.wint<=hour&hour<=end.peak.wint){'peak'}else{'off.peak'}}}
data$season[i] <-season
data$period[i] <-period
data$daytype[i] <-daytype
}
return(data)
}
# Arrange ggplots (appropriated from http://gettinggeneticsdone.blogspot.com/2010/03/arrange-multiple-ggplot2-plots-in-same.html)
vp.layout<-function(x, y) viewport(layout.pos.row=x, layout.pos.col=y)
arrange_ggplot2<-function(..., nrow=NULL, ncol=NULL, as.table=FALSE) {
dots<-list(...)
n<- length(dots)
if(is.null(nrow) & is.null(ncol)) { nrow= floor(n/2) ; ncol= ceiling(n/nrow)}
if(is.null(nrow)) { nrow= ceiling(n/ncol)}
if(is.null(ncol)) { ncol= ceiling(n/nrow)}
## NOTE see n2mfrow in grDevices for possible alternative
grid.newpage()
pushViewport(viewport(layout=grid.layout(nrow,ncol) ) )
ii.p<-1
for(ii.rowin seq(1, nrow)){
ii.table.row<-ii.row
if(as.table) {ii.table.row<-nrow-ii.table.row+1}
for(ii.colin seq(1, ncol)){
ii.table<-ii.p
if(ii.p>n) break
print(dots[[ii.table]], vp=vp.layout(ii.table.row, ii.col))
ii.p<-ii.p+1
}
}
}
# Calculate DR payment (NOTE: Electricity savings potential ests are broken somehow...too high in some random cases...)
dr.payment<-function(LMP,nbt.threshold,potential,load.shape,retail.elec,only.during.nbt=FALSE){
# LMP is a vector of LMP for the time period
# nbt.threshold is a vector of nbt threshold times for the period (or a single value)
# mw.potential is the maximum savings potential for the measure (a single value)
# load shape is a vector of relative availability for the measure--fractions of peak (in time)
# retail.elec is either a vector of prices or a single value
timesteps<- length(LMP)
if(length(nbt.threshold1)){nbt.threshold<-matrix(nbt.threshold,nrow=timesteps)}
if(length(retail.elec1)){retail.elec<-matrix(retail.elec,nrow=timesteps)}
if(length(load.shape)!=timesteps){stop('load shape different length than lmp')}
potential<-potential*load.shape
# make dr payment matrix with zeroes if < nbt and lMP if > nbt.
dr.payment<-matrix(data=0,nrow=timesteps)
pass.nbt<- which(LMP>=nbt.threshold)
fail.nbt<- which(LMP<nbt.threshold)
dr.payment[pass.nbt]<-LMP[pass.nbt]
if(only.during.nbt){retail.elec[fail.nbt]<-0}
dr.rev<-dr.payment*potential
e.save<-retail.elec*potential
tot<-dr.rev+e.save
out<-data.frame(dr.rev=dr.rev,e.save=e.save,tot=tot)
} #end function dr.payment
  • Copy lines
  • Copy permalink
Permalink

Join GitHub today

Weather Data Csv Download

GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.

IsoSign up
Find file Copy path
jakevdpAdd california cities data92952a9Nov 23, 2016

California Iso Download Csv Data Sheet

Windows
1 contributor

California Iso Download Csv Database

citylatdlongdelevation_melevation_ftpopulation_totalarea_total_sq_miarea_land_sq_miarea_water_sq_miarea_total_km2area_land_km2area_water_km2area_water_percent
0Adelanto34.57611111111112-117.43277777777779875.02871.03176556.02756.008999999999990.018000000000000002145.107145.0620.0460.03
1AgouraHills34.15333333333333-118.76166666666667281.0922.0203307.8227.7929999999999990.02899999999999999820.2620.1840.0760.37
2Alameda37.75611111111111-122.2744444444444433.07546722.9610.61099999999999912.34959.46527.48231.98353.79
3Albany37.886944444444445-122.2977777777777843.0189695.4651.7883.67714.1554.6329.52467.28
4Alhambra34.081944444444446-118.135150.0492.0830897.6320000000000017.6310.00119.76619.7629999999999980.0030.01
5AlisoViejo33.575-117.72555555555556127.0417.0478237.4727.4720.019.35219.3520.00.0
6Alturas41.48722222222222-120.54251332.04370.028272.4492.4350.0139999999999999996.34200000000000056.3060.0360000000000000040.57
7AmadorCity38.419444444444444-120.82416666666666280.0919.01850.3140.3140.00.8130.8130.00.0
8AmericanCanyon38.168055555555554-122.252514.046.0194544.8454.8370.00812.54812.5270000000000010.0210.17
9Anaheim33.836111111111116-117.8897222222222348.0157.033600050.8110000000000149.8350.976131.6129.072999999999982.52699999999999971.92
10Anderson40.452222222222225-122.29666666666667132.0430.099326.626.3720000000000010.24817.14516.5040.6423.74
11AngelsCamp38.068333333333335-120.53972222222222420.01378.038363.6373.6280.0090000000000000019.4219.3970.0240.25
12Antioch38.005-121.8058333333333313.043.010710029.08300000000000228.3490.734000000000000175.32473.4221.9022.52
13AppleValley34.516666666666666-117.21666666666667898.02946.06913573.52373.1930.33190.426189.570.8560.45
14Arcadia34.132777777777775-118.0363888888889147.0482.05636411.13310.9250.2080000000000000228.83628.2960.541.87
15Arcata40.86638888888889-124.0827777777777823.01723110.9940000000000029.0970000000000011.896999999999999828.47300000000000323.5614.91217.25
16ArroyoGrande35.12083333333334-120.5866666666666636.0118.0177165.8355.8350.015.11315.1130.00.0
17Artesia33.867222222222225-118.0805555555555516.052.0165221.6211.6210.04.1974.1970.00.0
18Arvin35.20916666666667-118.82833333333333137.0449.0193044.8194.8190.012.48200000000000112.4820000000000010.00.0
19Atascadero35.48416666666667-120.6725268.0879.02831026.1325.6410.48967.67566.408999999999991.2651.87
20Atherton37.45861111111111-122.218.059.069145.04899999999999955.01699999999999950.03213.07599999999999912.9930.081999999999999990.63
21Atwater37.34777777777778-120.6091666666666746.0151.0281686.0966.0870000000000010.00900000000000000115.78815.7659999999999980.0220000000000000020.14
22Auburn38.89861111111111-121.07444444444444374.01227.0133307.1667.1380.02799999999999999718.5618.4880.0710.38
23Avalon33.340833333333336-118.327777777777779.030.037282.9372.9350.0027.6077.6020.0050.07
24Avenal36.00416666666667-120.12888888888888246.0807.01323919.42219.4220.050.30250.3020.00.0
25Azusa34.13055555555555-117.90694444444445186.0610.0463619.6699.6560.01300000000000000125.04199999999999825.010.0320.13
26Bakersfield35.36666666666667-119.01666666666667404.0347483143.609142.1641.445371.94599999999997368.2043.7421.01
27BaldwinPark34.08277777777778-117.97166666666666114.0374.0753906.78600000000000056.6310.15517.57517.1740.42.28
28Banning33.931666666666665-116.89750000000001716.02349.02960323.09923.0990.059.82659.8260.00.0
29Barstow34.9-117.01666666666667664.02178.02263941.39441.3850.009000000000000001107.209107.1860.0230.02
30Beaumont33.924166666666665-116.97361111111111796.02612.03687730.92630.9120.01399999999999999980.09880.0620.0360000000000000040.04
31Bell33.983333333333334-118.1833333333333443.0141.0354772.622.5010.119000000000000016.78299999999999956.4760.3074.53
32Bellflower33.88805555555555-118.127522.071.0766166.176.1170000000000010.05315.98115.8430.1380.86
33BellGardens33.96805555555556-118.1561111111111237.0121.0420722.4632.4590.0046.3796.3679999999999990.0120.18
34Belmont37.518055555555556-122.2916666666666713.043.0258354.634.6210.00900000000000000111.99211.970.0220000000000000020.19
35Belvedere37.87277777777778-122.4644444444444511.036.020682.4060.5191.88699999999999986.2341.3454.88899999999999978.42
36Benicia38.06333333333333-122.156111111111128.026.02699715.7212.9292.791000000000000440.71433.4867.22917.75
37Berkeley37.87166666666667-122.27277777777778200.0660.011258017.69599999999999810.477.22645.83327.11800000000000218.71599999999999840.83
38BeverlyHills34.073055555555555-118.3994444444444679.0259.0342905.715.7079999999999990.00214.7914.7840.0060.04
39BigBearLake34.24138888888889-116.903333333333342058.06752.050196.5346.3460.18816.92316.4350.4882.88
40Biggs39.413888888888884-121.7102777777777830.098.017070.6360.6360.01.6461.6460.00.0
41Bishop37.3635-118.39514150.038791.9111.8640.0474.9494.8270.1222.5
42BlueLake40.882777777777775-123.9838888888888840.0131.012530.6220.59200000000000010.031.611.53300000000000010.0774.8
43Blythe33.61027777777778-114.5963888888888883.0272.02081726.97199999999999826.1890.782999999999999969.85567.8282.02699999999999972.9
44Bradbury34.14944444444444-117.97444444444444206.0676.010481.95800000000000021.95699999999999990.0015.0735.070.0030.06
45Brawley32.978611111111114-115.53027777777778-34.0-112.0249537.6827.6820.019.89519.8950.00.0
46Brea33.92333333333333-117.8888888888889110.0361.03928212.10900000000000212.0780.03131.36300000000000331.2830.080.26
47Brentwood37.93194444444444-121.6958333333333479.05148114.80514.7860.01938.34538.2950.0490.13
48Brisbane37.68083333333333-122.4191666666666733.0108.0428220.0773.09616.98099999999999851.9989999999999958.01700000000000143.98184.58
49Buellton34.61416666666667-120.19388888888889109.0358.048281.58300000000000021.58199999999999990.0014.0994.0980.0020.04
50BuenaPark33.85611111111111-118.0041666666666623.075.08053010.55299999999999910.5240000000000010.02899999999999999827.33199999999999727.2569999999999980.0750.28
51Burbank34.180277777777775-118.32833333333333185.0607.010334017.37917.3409999999999980.03845.01144.9130000000000040.0980.22
52Burlingame37.583333333333336-122.3636111111111112.039.0288066.0574.4060000000000011.65115.68611.4114.27527.25
53Calabasas34.138333333333335-118.66083333333334243.05.02305813.313.2490.05134.434.270.1310.38
54Calexico32.678888888888885-115.498888888888893.0385728.3918.3910.021.73321.7330.00.0
55CaliforniaCity35.12583333333333-117.98583333333333733.02405.014120203.63099999999997203.5230.10800000000000001527.401527.1220.278999999999999970.05
56Calimesa33.988055555555555-117.04305555555555729.02392.0787914.84700000000000114.8470000000000010.038.45438.4540.00.0
57Calipatria33.12555555555556-115.51416666666667-180.077053.7163.7160.09.6249.6240.00.0
58Calistoga38.581388888888895-122.58277777777778106.0348.051552.6132.5950.0180000000000000026.7696.7220.0470.7
59Camarillo34.233333333333334-119.0333333333333354.0177.06520119.54319.5280.01550.61750.5770.040.08
60Campbell37.28388888888889-121.95560.0197.0393495.8865.7979999999999990.0880000000000000115.24515.0170000000000010.2281.49
61CanyonLake33.68416666666666-117.25555555555556422.01385.0105614.6713.9280.74312.09910.1731.92615.92
62Capitola36.97638888888889-121.954722222222234.013.099181.6761.59300000000000020.0834.344.1260.2144.92
63Carlsbad33.121944444444445-117.2969444444444516.052.010532839.1137.7221.3880000000000001101.29597.6993.5963.55
64CarmelbytheSea36.555277777777775-121.9233333333333337221.081.080.02.7982.7980.00.0
65Carpinteria34.399166666666666-119.5163888888888810.033.0130409.2722.58600000000000036.68624.0119999999999976.69717.31572.11
66Carson33.83972222222222-118.259722222222228.227.09171418.96818.7240.24449.12699999999999548.4950.6311.29
67CathedralCity33.80777777777777-116.46472222222222100.0328.05120021.75621.4990000000000020.25756.34955.6830.66599999999999991.18
68Ceres37.60138888888889-120.9572222222222328.092.0454178.0198.0110000000000010.00820.77120.7490000000000020.0220000000000000020.1
69Cerritos33.86833333333333-118.067514.034.0490418.8568.7250.13122.93699999999999822.5980000000000030.338999999999999971.48
70Chico39.74-121.8355555555555474.0245.08618733.09532.9230.17285.7160000000000185.2710.4460.52
71Chino34.01777777777777-117.69222.0728.07798329.65199999999999729.6390.01300000000000000176.7989999999999976.7660.0330.04
72ChinoHills33.97527777777778-117.72305555555556365.01070.07565544.74899999999999544.6810000000000040.068115.899115.7230.1750.15
73Chowchilla37.11666666666667-120.2666666666666773.0240.0187207.66100000000000057.66100000000000050.019.84219.8420.00.0
74ChulaVista32.62777777777778-117.0480555555555521.069.024391652.09399999999999449.6312.463134.925128.5456.384.73
75CitrusHeights38.7-121.2833333333333350.0164.08330114.22814.2280.036.85136.8510.00.0
76Claremont34.11-117.719722222222233492613.48599999999999913.3479999999999990.13834.9334.5710.3581.03
77Clayton37.941111111111105-121.93583333333333120.0394.0108973.83600000000000033.83600000000000030.09.9359.9350.00.0
78Clearlake38.958333333333336-122.62638888888888432.01417.01525010.58110.1290.45227.40426.2341.174.27
79Cloverdale38.799166666666665-123.01722222222222335.086182.6482.6480.06.8576.8570.00.0
80Clovis36.82527777777778-119.70305555555557110.0361.010131423.27800000000000223.2780000000000020.060.28899999999999460.2889999999999940.00.0
81Coachella33.67944444444444-116.17444444444445-20.74-66.04070428.9528.950.074.9810000000000174.981000000000010.00.0
82Coalinga36.13972222222222-120.36027777777777205.0673.0133806.156.1190.03115.92715.8470000000000010.080.5
83Colfax39.09722222222222-120.9538888888889739.02425.019631.40699999999999981.40699999999999980.03.6453.6450.00.0
84Colma37.678888888888885-122.4555555555555637.0121.017921.9091.9090.04.9454.9450.00.0
85Colton34.065-117.32166666666666306.01004.05215416.03915.3240000000000020.71541.54100000000000439.6891.85199999999999994.46
86Colusa39.214444444444446-122.0094444444444416.052.059711.8341.8340.04.7514.7510.00.0
87Commerce34.00055555555556-118.1547222222222343.0141.0128236.5379999999999996.5370000000000010.00116.93316.930.0030.02
88Compton33.89666666666667-118.2250000000000121.069.09645510.11610.0120.1040000000000000126.20199999999999825.9320.271.03
89Concord37.97805555555556-122.0311111111111226.085.312206730.54630.5460.079.1139999999999979.113999999999990.00.0
90Corcoran36.09805555555556-119.5602777777777763.0207.0255157.46700000000000057.46700000000000050.019.33819.3380.00.0
91Corning39.92611111111111-122.1805555555555684.0276.0173823.553.550.09.1939.1930.00.0
92Corona33.86666666666667-117.56666666666666206.0678.015839138.9338.8250.105100.829100.557999999999990.2720.27
93Coronado32.67805555555555-117.17256.020.02469732.6667.93124.73584.60320.54164.06275.72
94CorteMadera37.925555555555555-122.527512.039.092534.4060000000000013.16399999999999971.24211.418.1933.21628.19
95CostaMesa33.665-117.9122222222222330.098.010996015.715.6540000000000020.04640.66240.5430.119000000000000010.29
96Cotati38.32777777777778-122.7091666666666834.0112.073101.8831.880.0034.8774.8690.0080.17
97Covina34.09166666666667-117.87916666666666170.0558.0477967.0417.0260.01518.23618.1959999999999980.0390.22
98CrescentCity41.755833333333335-124.2016666666666743.076432.4151.9630.4526.2555.0851.1718.7
99Cudahy33.96416666666667-118.182537.0121.0238051.2261.1750.0513.1753.0430.1324.15
100CulverCity34.007777777777775-118.4008333333333429.095.0388835.1389999999999995.1110000000000010.02799999999999999713.3113.2380.072000000000000010.54
101Cupertino37.3175-122.0419444444444472.0236.05830211.25711.2559999999999980.00129.15629.1530000000000020.0030.01
102Cypress33.818333333333335-118.0391666666666612.039.0478026.596.5810.00900000000000000117.06900000000000317.0450.0240.14
103DalyCity37.686388888888885-122.4683333333333357.0187.01011237.6647.6640.019.84919.8490.00.0
104DanaPoint33.467222222222226-117.6980555555555644.0144.03335129.4846.49700000000000122.98776.3639999999999916.82859.53677.96
105Danville37.82166666666667-122.0109.0358.04203918.02818.0280.046.69300000000000546.6930000000000050.00.0
106Davis38.553888888888885-121.7380555555555616.052.0656229.9199.8870.03225.6925.6080.081999999999999990.32
107Delano35.76888888888889-119.2469444444444596.0315.05381914.35514.3029999999999990.05200000000000000537.1837.0440000000000040.1350.36
108DelMar32.955000000000005-117.2638888888888934.0112.041611.7771.70699999999999990.074.6024.4210.181000000000000023.94
109DelReyOaks36.593333333333334-121.83525.082.016240.4830.481000000000000040.0021.2511.2460.0050.42
110DesertHotSprings33.961111111111116-116.50805555555556328.01076.02593823.64223.6150.02700000000000000361.23300000000000461.1639999999999940.0690.11
111DiamondBar34.001666666666665-117.82083333333333212.0696.05554414.88514.880.00538.55238.5380000000000040.0139999999999999990.04
112Dinuba36.544999999999995-119.38916666666667102.0345.0214536.476.470.016.75816.7580.00.0
113Dixon38.44916666666666-121.8269444444444419.062.0183517.09200000000000056.9960.09618.36818.1180.2491.36
114Dorris41.965-121.918888888888891294.04245.09390.7180.70200000000000010.0161.861.8190.0409999999999999952.19
115DosPalos36.983333333333334-120.63333333333334362.0118.049501.351.350.03.49600000000000043.49600000000000040.00.0
116Downey33.93805555555555-118.1308333333333336.0118.011177212.56812.4080.1632.55132.1370.4141.27
117Duarte34.140277777777776-117.96166666666667156.0512.0213216.696.690.017.32817.3280.00.0
118Dublin37.702222222222225-121.93583333333333367.04989014.91214.9080.00438.62238.6110.0110000000000000010.03
119Dunsmuir41.22166666666667-122.27305555555556695.02280.016501.7351.69800000000000020.0370000000000000054.4944.3980.0962.14
120EastPaloAlto37.466944444444444-122.139722222222236.020.0281552.6122.5050.1076.7666.48799999999999950.2784.11
121Eastvale33.963055555555556-117.56388888888888627.05366811.44511.4050.0429.64400000000000229.5390.104000000000000010.35
122ElCajon32.79833333333333-116.96000000000001133.0436.09947814.43314.4330.037.38137.3810.00.0
123ElCentro32.8-115.56666666666666-12.0-39.04259811.09911.0810.01800000000000000228.74628.70.0460.16
124ElCerrito37.91583333333333-122.3116666666666769.0235493.6883.6880.09.5519.5510.00.0
125ElkGrove38.43833333333333-121.3819444444444414.045.015301542.23942.190.049109.398109.2710.1270.12
126ElMonte34.07333333333334-118.027591.0299.01134759.6489.5620000000000010.08624.98800000000000324.7660.2220.89
127ElSegundo33.921388888888885-118.4061111111111235.0115.0166545.4655.4629999999999990.00214.15200000000000114.1480.0040.03
128Emeryville37.831388888888895-122.285277777777787.023.0100802.011.2460.7645.2063.22600000000000041.97938.02
129Encinitas33.044444444444444-117.2716666666666625.082.05951819.9918.8121.17851.77248.7223.055.89
130Escalon37.791666666666664-120.9916666666666636.0118.072662.36800000000000032.3010.0676.13399999999999955.9590.1752.85
131Escondido33.124722222222225-117.08083333333333197.0646.014391136.98900000000000436.8130.1760000000000000295.80195.3450.4560.48
132Etna41.45722222222223-122.89694444444446895.02936.07370.7590.7580.0011.9651.9620.0020.12
133Eureka40.801944444444445-124.1636111111111239.02719114.4549.3845.0737.43524.30513.1335.07
134Exeter36.29416666666666-119.14277777777778119.0390.0103342.4632.4630.06.3796.3790.00.0
135Fairfax37.98722222222222-122.5888888888888935.0115.074412.2042.2040.05.7070000000000015.7070000000000010.00.0
136Fairfield38.257777777777775-122.054166666666664.013.010832137.63534.393.24597.47594.8392.6355.65
137Farmersville36.301111111111105-119.2075109.0358.0105882.2582.2580.05.8495.8490.00.0
138Ferndale40.57666666666667-124.2633333333333417.056.013711.02700000000000011.02700000000000010.02.6592.6590.00.0
139Fillmore34.40138888888889-118.91777777777779139.0456.0150023.3653.3640.0018.7158.7120.0030.03
140Firebaugh36.85888888888889-120.4561111111111146.0151.075493.51899999999999973.46199999999999970.0579.1139999999999998.9670.148000000000000021.62
141Folsom38.67222222222222-121.1577777777777867.0220.07220324.30121.9452.35662.9389999999999956.8386.1019.69
142Fontana34.1-117.46666666666667377.01237.020181242.43199999999999542.4319999999999953.0109.899109.8996.03.0
143FortBragg39.44583333333333-123.8052777777777726.085.072732.82.77.27.10.1
144FortJones41.60722222222223-122.84194444444444842.02762.08390.6020.6020.01.561.560.00.0
145Fortuna40.59805555555556-124.1572222222222320.066.0119264.8454.8450.012.54900000000000112.5490000000000010.00.0
146FosterCity37.55138888888889-122.266388888888882.07.03056719.8409999999999983.756000000000000216.08551.3880000000000059.72941.65981.07
147FountainValley33.70861111111111-117.956388888888910.033.0553139.0319.0179999999999990.01300000000000000123.39123.3570.0340.14
148Fowler36.63333333333333-119.6833333333333494.0308.055702.5312.5310.06.5566.5560.00.0
149Fremont37.54833333333333-121.9886111111111171.0218.022000087.6177.45910.151226.91200.61826.29199999999999811.59
150Fresno36.75-119.76666666666667308.0509039112.30799999999999111.957000000000010.35100000000000003290.877289.9670.910.31
151Fullerton33.88-117.9286111111111150.0164.013516122.3622.3530.01100000000000000157.9210000000000157.8930.0270000000000000030.05
152Galt38.26083333333333-121.3030555555555616.047.0236475.9445.9310.01300000000000000115.39715.3620.0350.23
153Gardena33.89361111111111-118.3077777777777715.049.0588295.8655.8290.03600000000000000415.19099999999999915.0970000000000010.0940.62
154GardenGrove33.778888888888886-117.9602777777777827.089.017088317.95917.9410.01800000000000000246.51300000000000546.4670.0460.1
155Gilroy37.011944444444445-121.5861.0200.04882116.15616.1460.0141.84541.8189999999999960.0270000000000000030.06
156Glendale34.170833333333334-118.25159.0522.019602130.58300000000000230.4530000000000030.1379.21278.8740.337999999999999970.43
157Glendora34.130833333333335-117.85416666666666236.0774.05007319.55819.3930.16550.65550.2280.427000000000000050.84
158Goleta34.440555555555555-119.8136111111111120.0298887.9757.9030.0720000000000000120.65420.4670.1870.9
159Gonzales36.50666666666667-121.4444444444444441.0135.081871.9591.9210.0385.0754.9760.0981.93
160GrandTerrace34.03111111111111-117.31666666666666324.01063.0120403.5023.5020.09.079.070.00.0
161GrassValley39.219166666666666-121.05833333333334735.02411.0128604.7434.7430.012.28512.2850.00.0
162Greenfield36.32083333333334-121.2438888888888988.0289.0163302.1352.1350.05.535.530.00.0
163Gridley39.36388888888889-121.6936111111111129.095.065932.070.02.070.00.0
164GroverBeach35.12083333333334-120.6194444444444419.062.0131562.3142.310.0045.9955.9830.0110000000000000010.19
165Guadalupe34.96555555555556-120.5730555555555626.085.070801.3141.30900000000000020.0053.4053.3910.0139999999999999990.4
166Gustine37.257777777777775-120.9988888888888930.098.055201.5511.5510.04.01699999999999954.01699999999999950.00.0
167HalfMoonBay37.45888888888889-122.4369444444444522.072.0113246.4446.42399999999999950.0216.69216.6390.0530.32
168Hanford36.3275-119.6455555555555676.0249.05528316.58900000000000216.5890000000000020.042.96642.9660.00.0
169HawaiianGardens33.828611111111115-118.073611111111110.033.0142540.9560.9460.012.4772.450.0270000000000000031.09
170Hawthorne33.91722222222222-118.3486111111111122.072.0842936.09200000000000056.0810.01100000000000000115.77900000000000215.750.0289999999999999980.18
171Hayward37.66888888888889-122.08083333333333105.014939263.74800000000000545.32318.425165.108117.3860000000000147.72100000000000428.9
172Healdsburg38.6175-122.8663888888888832.0105.0112544.46399999999999954.4570.00699999999999999911.56111.5430.0180000000000000020.15
173Hemet33.74194444444444-116.98305555555555486.01594.07865727.84699999999999827.8469999999999980.072.12472.1240.00.0
174Hercules38.01722222222222-122.2886111111111124.079.02406018.1790000000000026.20511.97447.08399999999999616.07231.01199999999999765.87
175HermosaBeach33.86638888888889-118.399722222222228.026.0195061.42699999999999981.42699999999999980.03.6953.6950.00.0
176Hesperia34.41277777777778-117.30611111111111971.03186.09017373.20973.0960.113189.61189.315999999999970.2940.15
177HiddenHills34.1675-118.66083333333334328.01076.018561.6891.6890.04.3734.3730.00.0
178Highland34.11833333333333-117.2025399.01309.05301418.8918.7550.13548.92448.5750.3490.71
179Hillsborough37.56027777777778-122.3563888888888998.0322.0108256.196.190.016.03116.0310.00.0
180Hollister36.84722222222222-121.3983333333333488.0289.0349287.297.290.018.8818.880.00.0
181Holtville32.81111111111111-115.38027777777778-3.0-10.059391.1531.1480.0052.9862.97399999999999980.0120.4
182Hughson37.60305555555556-120.8669444444444438.0125.066401.8151.8150.04.70100000000000054.70100000000000050.00.0
183HuntingtonBeach33.69277777777778-118.0002777777777812.039.019757531.88199999999999826.7485.133999999999999582.5760000000000169.27813.29816.1
184HuntingtonPark33.983333333333334-118.2166666666666752.0171.0581143.0163.0130.0037.8117.80200000000000050.0080.11
185Huron36.20277777777778-120.10305555555556114.0374.067541.5911.5910.04.1214.1210.00.0
186ImperialBeach32.57833333333333-117.1172222222222121.069.0263244.4854.16100000000000050.32411.61610.7779999999999990.8387.22
187Imperial32.847500000000004-115.56944444444444-18.0-59.0147585.8565.8560.015.16815.1680.00.0
188IndianWells33.715833333333336-116.341111111111127.089.0495814.59114.3210.2737.7937.0910.69900000000000011.85
189Indio33.72-116.23194444444445-4.0-13.07603629.18929.1809999999999970.00875.675.5790.0210.03
190Industry34.016666666666666-117.9598.0322.021912.06411.7850.2789999999999999731.24530.5220.7232.31
191Inglewood33.9575-118.346111111111140.0131.01096739.0939.0680.02523.54923.4860.0640.27
192Ione38.35277777777778-120.9327777777777991.0299.079184.784.7650.01512.37900000000000112.3410.0390.31
193Irvine33.68416666666666-117.792517.045.021552966.45466.106000000000010.348172.115171.214000000000030.90099999999999990.52
194Irwindale34.11666666666667-117.96666666666667143.0469.014229.6138.8260.78724.89722.8592.03800000000000038.19
195Isleton38.161944444444444-121.609166666666673.010.08040.492000000000000050.440.0520000000000000051.2721.1390.13410.5
196Jackson38.348888888888894-120.77416666666666371.01217.046513.733.730.09.669.660.00.0
197JurupaValley33.99944444444444-117.475277777777789749643.543.30.2112.7112.10.6
198Kerman36.72361111111111-120.0667.0220.0173033.2333.2330.08.3728.3720.00.0
199KingCity36.21277777777778-121.1261111111111102.0335.0128743.9843.8450.13910.3179.9580.363.49
200Kingsburg36.513888888888886-119.5538888888888992.0302.0113822.82800000000000032.82800000000000030.07.3257.3250.00.0
201LaCaadaFlintridge34.207721-118.206979202468.6458.6280.01722.39122.3469999999999980.0440000000000000040.2
202Lafayette37.88583333333333-122.1180555555555497.5320.02428515.38715.2209999999999980.16639.85339.4220.4311.08
203LagunaBeach33.53138888888889-117.769166666666666.020.0227239.8218.850.97125.43522.9212.5159.89
204LagunaHills33.599722222222226-117.69944444444445113.0371.0303446.6956.670.02517.3417.2760.0640.37
205LagunaNiguel33.53194444444444-117.7025121.0397.06297914.88514.8330.05200000000000000538.55138.4180.1340.35
206LagunaWoods33.60916666666667-117.73277777777778116.0381.0187473.1153.1150.08.078.0689999999999990.00.01
207LaHabra33.93194444444444-117.9461111111111191.0299.0602397.3767.370.00619.10419.0880.0160.08
208LaHabraHeights33.96388888888889-117.95277777777778225.0738.053256.1620000000000016.1590.00315.95815.950.0069999999999999990.05
209LakeElsinore33.68138888888889-117.34527777777777395.01306.05182141.68736.2085.479107.9793.77914.1913.14
210LakeForest33.641666666666666-117.69083333333333148.0400.07726417.90217.8160.08646.3660000000000146.1430.2230.48
211Lakeport39.043055555555554-122.91583333333334413.01355.047533.1983.05800000000000030.148.2839999999999997.920.3644.39
212Lakewood33.847500000000004-118.1199999999999914.046.0800489.4660000000000019.4150.05124.51724.3840.1330.54
213LaMesa32.771388888888886-117.02277777777778161.0528.0570659.1169.0760.0423.61223.5069999999999980.104000000000000010.44
214LaMirada33.90222222222222-118.0097222222222259.0194.0485277.8577.840.01720.35120.3059999999999970.0450.22
215Lancaster34.68333333333333-118.15719.02359.015663394.5470000000000194.276000000000010.271244.87599999999998244.1750.7010.29
216LaPalma33.849444444444444-118.0438888888888914.046.0155681.83199999999999991.8080.0244.7444.68199999999999950.0631.32
217LaPuente34.0325-117.95527777777778107.0351.0398163.483.47899999999999960.0019.0129.010.0020.02
218LaQuinta33.67527777777777-116.29750.03746735.55135.1170.43492.0779999999999990.9541.1241.22
219Larkspur37.93416666666666-122.5352777777777843.0119263.24300000000000033.02699999999999970.216000000000000038.3997.840.566.66
220Lathrop37.816944444444445-121.288611111111117.020.01802323.03321.9309999999999971.10259.65556.82.85399999999999964.79
221LaVerne34.114444444444445-117.7713888888889323.01060.0310638.5620000000000018.430.13222.17521.8340.3411.54
222Lawndale33.88666666666666-118.353611111111118.059.0327691.9741.9740.05.1135.1130.00.0
223LemonGrove32.74138888888889-117.03166666666667136.0440.0253203.883.880.010.0510.050.00.0
224Lemoore36.30083333333333-119.7827777777777870.0230.0252818.5170000000000018.5170000000000010.022.05800000000000322.0580000000000030.00.0
225Lincoln38.88722222222222-121.296111111111151.0167.04281920.1320.1059999999999980.02452.13752.0750.0620.12
226Lindsay36.2-119.08333333333333118.0387.0117682.612.610.06.75899999999999956.75899999999999950.00.0
227LiveOakSutterCounty39.27583333333333-121.6600000000000179.083921.8691.8690.04.83899999999999954.83899999999999950.00.0
228Livermore37.68194444444444-121.76805555555555495.08354725.17625.1730000000000020.00365.20465.198000000000010.0069999999999999990.01
229Livingston37.386944444444445-120.7236111111111140.0131.0130583.7153.7150.09.6229.6220.00.0
230Lodi38.12888888888889-121.2808333333333315.050.06213413.82513.6109999999999990.21435.80535.2519999999999950.55299999999999991.54
231LomaLinda34.04833333333333-117.25055555555555355.01165.0232617.5177.5160.00119.4719.4670.0020.01
232Lomita33.79333333333333-118.3161111111111129.095.0202561.9111.9110.04.9494.9490.00.0
233Lompoc34.64611111111111-120.4602777777777832.0105.04243411.67511.5970000000000010.07830.23730.0370.2010.66
234LongBeach33.76833333333333-118.195555555555560.046225751.43750.2931.1440000000000001133.22299999999998130.2592.9642.22
235Loomis38.81638888888889-121.19277777777778123.0404.064307.2677.2670.018.82218.8220.00.0
236LosAlamitos33.80222222222222-118.064444444444457.023.0114494.11600000000000054.050.06610.65910.4890.171.6
237LosAltos37.36805555555556-122.0975157.0289766.4876.4870.0
238LosAltosHills37.37138888888889-122.137589.0292.079228.8028.8020.022.79699999999999722.7969999999999970.00.0
239LosAngeles34.05-118.2571.02.03884307503.0469.034.01302.01214.088.06.7
240LosBanos37.05833333333333-120.8536.0118.03597210.1179.9930.12426.20300000000000325.8819999999999980.3211.22
241LosGatos37.236111111111114-121.96166666666667105.0344.02941311.1611.080.0828.90300000000000228.6970.206000000000000020.71
242Loyalton39.67666666666666-120.243055555555561509.04951.07690.3550.3550.00.92099999999999990.92099999999999990.00.0
243Lynwood33.92472222222222-118.2019444444444528.092.0697724.844.840.012.53612.5360.00.0
244Madera36.96138888888889-120.0608333333333383.0271.06141615.78900000000000115.7890000000000010.040.89440.8940.00.0
245Malibu34.03-118.7532.0105.01264519.82819.7850.04351.35451.2420.1130.22
246MammothLakes37.64861111111111-118.971944444444452402.07880.0823425.30599999999999724.8660.4465.54164.4021.1391.74
247ManhattanBeach33.888888888888886-118.4052777777777820.067.0351353.94100000000000033.9370.00410.20810.1970000000000010.010.1
248Manteca37.80277777777778-121.2208333333333311.038.07106717.75717.7330.02445.9910000000000145.9289999999999950.0620.13
249Maricopa35.05888888888889-119.40083333333334269.0883.011541.50199999999999981.50199999999999980.03.893.890.00.0
250Marina36.68444444444444-121.8022222222222113.043.0297189.7638.8830.8825.28723.0069999999999982.289.02
251Martinez38.019444444444446-122.134166666666677.023.03582413.13512.1309999999999981.00434.01931.422.67.64
252Marysville39.15-121.5833333333333319.062.0120723.5853.4640.1219.2839999999999998.9710.3123.36
253Maywood33.98777777777778-118.1866666666666746.0151.0273951.1781.1780.03.0523.0520.00.0
254McFarland35.67805555555555-119.22916666666667108.0354.0137452.6682.6680.06.916.910.00.0
255Mendota36.75361111111111-120.3816666666666653.0174.0110143.2813.2780.0038.4998.4910.0080.1
256Menifee33.67833333333333-117.16694444444445434.01424.07751946.60746.4660.141120.711120.3450.3650.3
257MenloPark37.45277777777778-122.1833333333333422.072.03202617.4159.797.62545.10525.35519.7543.79
258Merced37.3-120.4833333333333352.0171.08079323.31623.3160.060.38899999999999660.3889999999999960.00.0
259Millbrae37.600833333333334-122.4013888888888933.0215363.2593.2470.0128.4398.4089999999999990.030.36
260MillValley37.90611111111111-122.54579.0139034.84699999999999954.7630.08412.55512.3359999999999990.218999999999999971.74
261Milpitas37.43472222222222-121.895000000000015.016.07009213.64099999999999813.5910.0535.32835.20.1280.36
262MissionViejo33.61277777777778-117.65611111111112121.0448.09634618.12317.7390.38446.9389999999999945.9439999999999960.9952.12
263Modesto37.66138888888889-120.9944444444444427.089.020116537.09236.8670.22596.06995.4860.5830.61
264Monrovia34.14416666666666-118.00194444444445174.0571.03659013.71413.6050.10935.51935.2369999999999950.2820.79
265Montague41.727222222222224-122.52638888888889774.02539.014431.79300000000000011.7780.0154.6444.6050.0390.85
266Montclair34.07083333333334-117.6975326.01066.0366645.5175.5170.014.28900000000000114.2890000000000010.00.0
267Montebello34.01444444444444-118.1144444444444461.0200.0625008.3738.3330.0421.68521.5810.104000000000000010.48
268Monterey36.6-121.98.026.02781011.7640000000000018.4660000000000013.29830.46921.9278.54228.03
269MontereyPark34.049166666666665-118.13555555555556117.0384.0602697.7337.6720000000000010.06120.02919.870.1580.79
270MonteSereno37.238055555555555-121.98944444444444515.033411.6151.6150.04.1844.1840.00.0
271Moorpark34.280833333333334-118.87333333333332157.0515.03442112.79900000000000112.5790.2233.14932.580.5691.72
272Moraga37.835-122.12972222222221160169.4429.4330.00900000000000000124.45524.4320.0230.09
273MorenoValley33.94305555555555-117.22833333333334497.01631.019336551.47551.2750.2133.319132.80.5190.39
274MorganHill37.13055555555555-121.65444444444445107.0350.03788212.88212.8820.033.36333.3630.00.0
275MorroBay35.37916666666667-120.8533333333333219.062.01023410.3220000000000015.3035.01926.73413.73400000000000213.048.63
276MountainView37.38944444444444-122.0819444444444532.0105.07406612.27311.9950.27831.78831.0680.722.26
277MountShasta41.31444444444444-122.311388888888891099.03606.033943.773.7660.0049.7649.7540.010.1
278Murrieta33.56944444444445-117.2025334.01096.010346633.61333.5770.03600000000000000487.0579999999999986.9640.0940.11
279Napa38.30472222222222-122.2988888888888820.07691518.14700000000000217.8390000000000020.30847.046.2030.7971.69
280NationalCity32.67805555555555-117.0991666666666621.069.0585829.1167.2771.83923.60918.8474.76220.17
281Needles34.83833333333334-114.6111111111111151.0495.0484431.27530.8080000000000030.46781.00279.7931.2091.49
282NevadaCity39.26138888888889-121.01861111111111755.02477.030682.19199999999999972.1880.0045.67700000000000055.6670000000000010.010.17
283Newark37.53333333333333-122.0333333333333320.04353913.89813.8750.02335.99635.9360.0610.17
284Newman37.315-121.022527.089.0102242.1022.1020.05.4445.4440.00.0
285NewportBeach33.61666666666667-117.897500000000013.08518652.97823.80529.173000000000002137.21161.65399999999999675.55755.07
286Norco33.93111111111111-117.54861111111111195.0640.02706314.27799999999999913.9620.31636.9836.1610.81900000000000012.22
287Norwalk33.90694444444444-118.0833333333333328.092.01055499.7469.7070.03925.24300000000000225.1410.1020.4
288Novato38.1075-122.569722222222239.030.05190427.95699999999999727.440.51772.40771.0681.3391.85
289Oakdale37.76916666666666-120.8569444444444448.0157.0206756.0956.0450.0515.78415.6550.1290.81
290Oakland37.80444444444444-122.2708333333333343.040625378.00255.78622.215999999999998202.024144.48557.5428.48
291Oakley37.9975-121.71256.020.03543216.15515.8530.30241.84241.0590.78299999999999991.87
292Oceanside33.211666666666666-117.3258333333333420.066.018309542.17441.2350.9390000000000001109.23100000000001106.797999999999992.43300000000000032.23
293Ojai34.44916666666666-119.24666666666667227.0745.074614.4014.3860.01511.39811.3590000000000020.040.35
294Ontario34.05277777777778-117.62777777777777282.0925.016392450.00649.9410.065129.515129.3450.170.13
295Orange33.80305555555555-117.832559.0195.013641625.2424.7969999999999970.4429999999999999565.3710000000000164.223999999999991.1471.75
296OrangeCove36.62444444444444-119.31361111111111129.0423.090781.9121.9120.04.95100000000000054.95100000000000050.00.0
297Orinda37.882777777777775-122.17972222222222151.0495.01834212.69812.6830.01532.88732.8480.0390.12
298Orland39.7475-122.1963888888888979.0259.072912.9712.9710.07.6960000000000017.6960000000000010.00.0
299Oroville39.516666666666666-121.5551.0167.01550613.01112.9930.01800000000000000233.70133.6530.0480.14
300Oxnard34.19138888888889-119.182516.052.020358539.20826.89400000000000212.314101.5479999999999969.65631.89331.41
301Pacifica37.62277777777778-122.4855555555555525.082.03723412.6612.6580.00232.78932.7840.0050.01
302PacificGrove36.617777777777775-121.9166666666666746.0151.0152954.0032.8651.13810.3667.4192.94628.42
303Palmdale34.58111111111111-118.10055555555554810.02657.0152750106.21600000000001105.9610.255275.099274.4390.660.24
304PalmDesert33.72555555555556-116.3694444444444467.0220.04844527.01426.810.20469.9660000000000169.4370.5290.76
305PalmSprings33.823888888888895-116.53027777777778146.0440.04455294.97594.1160.8590000000000001245.984243.7612.2240.9
306PaloAlto37.42916666666667-122.138055555555579.030.06440325.78723.8841.90366.7869999999999961.8580000000000044.9289999999999997.38
307PalosVerdesEstates33.786944444444444-118.3966666666666864.0210.0134384.7744.7740.012.36512.3640.0010.01
308Paradise39.75972222222222-121.62138888888889542.01778.02624918.32218.3080.01399999999999999947.45547.4180.0370000000000000050.08
309Paramount33.9-118.1666666666666721.069.0540984.844.7290.11112.53612.2490.286000000000000032.28
310Parlier36.611666666666665-119.52694444444444105.0344.0144942.1942.1940.05.6825.6820.00.0
311Pasadena34.15611111111111-118.13194444444444263.0863.013712223.12822.970.15859.90259.4930.4090.68
312PasoRobles35.64083333333333-120.6538888888889242.02979219.42519.120.30550.31249.5220.791.57
313Patterson37.473055555555554-121.1327777777777831.0102.0204135.9545.9540.015.42115.4210.00.0
314Perris33.79666666666667-117.22444444444444443.01453.07132631.50331.3930.1181.59481.3080.286000000000000030.35
315Petaluma38.24583333333334-122.631388888888889.030.05892114.48914.3820.10737.52737.2490.2780.74
316PicoRivera33.98888888888889-118.0891666666666650.0164.0629428.8828.2960.58623.00321.4851.5186.6
317Piedmont37.81666666666667-122.23333333333333331.0106671.67800000000000021.67800000000000020.04.3454.3450.00.0
318Pinole38.004444444444445-122.291111111111131.023.01839013.5755.32299999999999958.25235.1613.78721.37260.79
319PismoBeach35.14833333333333-120.6480555555555617.056.0765513.4759999999999993.59899999999999989.87734.9049.32200000000000125.58199999999999773.29
320Pittsburg38.028055555555554-121.884722222222228.026.06326419.15417.2181.93649.6144.5955.01510.11
321Placentia33.8825-117.8549999999999983.0272.0505336.5820000000000016.5680.01399999999999999917.04817.0110.0370000000000000050.22
322Placerville38.72972222222222-120.798611111111111867.0103895.8135.8120.00115.05415.0520.0020.01
323PleasantHill37.948055555555555-122.052516.052.0331527.0727.0720.018.31518.3150.00.0
324Pleasanton37.6625-121.87472222222222351.07028524.26624.1130000000000030.15362.84762.4520.3950.63
325Plymouth38.481944444444444-120.84472222222222330.01083.010050.94400000000000010.93099999999999990.0130000000000000012.4442.4110.0331.34
326PointArena38.90888888888889-123.6930555555555636.0118.04491.351.350.03.49600000000000043.49600000000000040.00.0
327Pomona34.06083333333333-117.75583333333333259.0850.0122.96400000000000222.9519999999999980.01259.47459.4439999999999960.030.05
328Porterville36.06861111111112-119.0275139.0459.05569717.67900000000000217.6070.0720000000000000145.7945.6030.1880.41
329PortHueneme34.16027777777778-119.194444444444444.012.0217234.6714.45100000000000050.2212.09599999999999811.5279999999999990.5694.7
330Portola39.81027777777778-120.469722222222231480.04856.021045.4075.4070.014.00314.0030.00.0
331PortolaValley37.375-122.21861111111112140.0459.043539.0939.0920.00123.55123.5469999999999970.0040.02
332Poway32.97-117.03861111111111157.0515.04781139.16539.0790.086101.43799999999999101.2140.2230.22
333RanchoCordova38.58916666666667-121.3027777777777827.089.06477633.87433.5070.3670000000000000587.7329999999999986.782000000000010.9511.08
334RanchoCucamonga34.123333333333335-117.57944444444443368.01207.017074639.87139.8510.02103.26299999999999103.2120.0510.05
335RanchoMirage33.76916666666666-116.4211111111111283.0272.01721824.4470.38964.3260000000000163.3180000000000051.0081.57
336RanchoPalosVerdes33.75833333333333-118.3641666666666667.0220.04164313.46513.4650.034.87534.8740.0010.0
337RanchoSantaMargarita33.64138888888889-117.59444444444443290.0775.04785312.99212.9570.03533.65099999999999633.560.0910.27
338RedBluff40.17666666666666-122.2380555555555693.0305.0246747.67700000000000057.5630.11419.88219.5870.2951.48
339Redding40.583333333333336-122.36666666666666151.0495.09232861.17559.6471.528158.442154.4853.9572.5
340Redlands34.05472222222222-117.1825414.01358.06874736.42736.1260.30194.34493.5650.7790.83
341RedondoBeach33.85638888888889-118.3769444444444362.0667486.2079999999999996.19799999999999950.0116.0816.0540000000000020.0260000000000000020.16
342RedwoodCity37.48277777777778-122.236111111111116.020.07681534.62519.4215.20589.67750.29739.3843.91
343Reedley36.59638888888889-119.45027777777779106.0348.0241945.1560000000000015.0840.0720000000000000113.35213.1659999999999990.1851.39
344Rialto34.11138888888889-117.3825383.01257.010174022.36522.3510.01399999999999999957.92657.8889999999999960.0370000000000000050.06
345Richmond37.93583333333333-122.3477777777777814.046.010370152.4830.06822.412135.92377.87558.04842.71
346Ridgecrest35.6225-117.67083333333333698.02290.02761621.41699999999999820.7660.650999999999999955.46899999999999453.7831.6853.04
347RioDell40.49916666666667-124.1063888888888949.0161.033632.4182.2820.1366.2615.910.351000000000000035.61
348RioVista38.163888888888884-121.695833333333346.020.073607.0939999999999996.6910.4029999999999999718.37517.331.0445.68
349Ripon37.74055555555556-121.1283333333333321.069.0142975.4955.3050.1914.23200000000000113.7390.4933.47
350Riverbank37.731388888888894-120.9436111111111143.0141.0226784.11600000000000054.0920.02410.66110.5990.0620.59
351Riverside33.948055555555555-117.39611111111111262.0860.031367381.44481.140.304210.94099999999997210.152000000000020.78799999999999990.37
352Rocklin38.8-121.2466666666666779.0249.05697419.59419.5410.05350.74899999999999550.610.1390.27
353RohnertPark38.34722222222222-122.6952777777777832.0105.0409717.0079999999999997.0029999999999990.00518.14918.1360.0130000000000000010.07
354RollingHills33.75944444444445-118.34166666666667389.01276.018602.9912.9910.07.7467.7460.00.0
355RollingHillsEstates33.77361111111111-118.36083333333333143.0469.080673.6133.5690.0440000000000000049.3599.2440.1151.22
356Rosemead34.06666666666667-118.0833333333333397.0318.0537645.1765.1620000000000010.01399999999999999913.40599999999999913.370.0350.26
357Roseville38.7525-121.2894444444444450.0164.012732336.22336.2220.00193.8170000000000193.8140.0030.0
358Ross37.962500000000006-122.5549999999999911.036.024151.5561.5560.04.0310000000000014.0310000000000010.00.0
359Sacramento38.55555555555555-121.468888888888889.030.0466488100.10597.9152.19259.27299999999997253.65.6729999999999992.19
360Salinas36.67777777777778-121.6555555555555716.052.016366523.21723.1790000000000020.03860.13160.0330.0990.16
361SanAnselmo37.974722222222226-122.5616666666666714.046.0123362.6772.6770.06.9346.9340.00.0
362SanBernardino34.1-117.3321.01974.020992459.64559.2010.444154.48153.331.150.74
363SanBruno37.625277777777775-122.425277777777785.016.0411145.4785.4780.014.18799999999999914.1879999999999990.00.0
364SanCarlos37.49916666666667-122.2633333333333433.0284065.5415.5379999999999990.00314.3514.3430.0069999999999999990.05
365SanClemente33.437777777777775-117.6202777777777771.0250.06352219.46818.7110.75750.42248.4610000000000061.96099999999999993.89
366SandCity36.617222222222225-121.8483333333333322.072.03342.9240.5622.3627.5751.45699999999999996.11980.77
367SanDiego32.715-117.162500000000016.03.01345895372.4325.1947.21964.51842.23122.2712.68
368SanDimas34.10277777777778-117.81611111111111750.03337115.42715.0370.3939.95738.9469999999999961.012.53
369SanFernando34.28722222222222-118.4388888888889326.01070.0236452.3742.3740.06.1496.1490.00.0
370SanFrancisco37.78333333333333-122.4166666666666752.0837442231.8946.87185.0280.0
371SanGabriel34.094166666666666-118.09833333333333128.0420.0397184.1464.1450.00110.73599999999999910.7340000000000020.0020.02
372Sanger36.70805555555556-119.55583333333333371.0242705.5245.5240.014.30714.3070.00.0
373SanJacinto33.78722222222222-116.96666666666667477.01565.04419926.13125.7159999999999980.41567.67966.6051.0741.59
374SanJoaquin36.60666666666667-120.1891666666666753.0174.040011.1481.1480.02.97300000000000032.97300000000000030.00.0
375SanJose37.333333333333336-121.926.01000536179.97176.525999999999983.4389999999999996466.10900000000004457.200999999999968.9081.91
376SanJuanBautista36.844166666666666-121.5372222222222366.0217.018620.7110.7110.01.84300000000000021.84199999999999990.0010.06
377SanJuanCapistrano33.49944444444444-117.6616666666666837.096.03459314.29514.1150.1837.02436.5590.4661.26
378SanLeandro37.725-122.1561111111111215.056.08686915.66313.3432.3240.56534.5569999999999956.00799999999999914.81
379SanLuisObispo35.274166666666666-120.6630555555555671.0233.04511912.9312.7770000000000010.15333.48900000000000433.0930.3961.18
380SanMarcos33.14194444444444-117.170277777777788378124.3924.370.0263.16963.1170.0530.08
381SanMarino34.12277777777778-118.11305555555555172.0564.0131473.77399999999999963.7670.0069999999999999999.7759.7570.0180000000000000020.18
382SanMateo37.55416666666667-122.3130555555555513.043.09720715.88412.133.753999999999999641.13731.4169.72200000000000123.63
383SanPablo37.96222222222222-122.3455555555555516.052.0291392.6342.6340.06.8226.8220.00.0
384SanRafael37.97361111111111-122.5311111111111213.043.05771322.42199999999999716.475.95200000000000158.07442.65715.41726.55
385SanRamon37.78-121.97805555555556146.0480.07392718.07718.0610.01646.81899999999999646.7780.0420.09
386SantaAna33.740833333333335-117.8813888888888835.0115.032452827.51827.270.24871.27170.6280.6430.9
387SantaBarbara34.42583333333333-119.7141666666666715.049.09089341.96819.46822.5108.69750.42258.27553.61
388SantaClara37.35444444444445-121.9691666666666723.075.011646818.40718.4070.047.67547.6750.00.0
389SantaClarita34.416666666666664-118.50638888888889368.01207.020913062.1662.10.06160.993160.8250.1680.099
390SantaCruz36.971944444444446-122.0263888888888911.036.06286415.82812.743.08840.99632.9977.99919.51
391SantaFeSprings33.9375-118.0672222222222141.0135.0162238.9148.8740.0423.08822.9850.103000000000000010.45
392SantaMaria34.95138888888889-120.4333333333333467.0220.010145923.39522.7560.63960.59258.9371.6552.73
393SantaMonica34.02194444444444-118.48138888888889105.0897368.4168.4150.001
394SantaPaula34.35583333333334-119.0683333333333385.0279.0293214.7074.5930.11412.18911.8950.2942.41
395SantaRosa38.448611111111106-122.7047222222222350.0164.017068541.49899999999999541.2940.205107.48100000000001106.950.5310.49
396Santee32.86972222222222-116.97111111111111105.0345.05341316.52816.2350.29342.80842.0490.7591.77
397Saratoga37.2725-122.01944444444445410.02992612.38212.3820.032.0732.070.00.0
398Sausalito37.85916666666667-122.485277777777784.013.070612.25699999999999971.7710.4865.8464.5861.259000000000000121.54
399ScottsValley37.05138888888889-122.01333333333334171.0561.0115804.5954.5950.011.911.90.00.0
400SealBeach33.759166666666665-118.08254.013.02416813.0411.2861.75433.77529.2309999999999984.54413.45
401Seaside36.611111111111114-121.8447222222222210.033.0330259.3769.2370.13924.28199999999999623.9230000000000020.3591.48
402Sebastopol38.399166666666666-122.8269444444444425.082.073791.85300000000000021.85300000000000020.04.79899999999999954.79899999999999950.00.0
403Selma36.57083333333334-119.6119444444444394.0308.0232195.1365.1360.013.30299999999999913.3029999999999990.00.0
404Shafter35.50055555555556-119.27166666666666106.0348.01698827.94527.9450.072.37672.3760.00.0
405ShastaLake40.67805555555555-122.36999999999999246.0810.01016410.92910.9210.00828.30528.2840000000000020.020.07
406SierraMadre34.164722222222224-118.05083333333333252.0827.0109172.9572.95300000000000030.0047.6597.6470.0120.15
407SignalHill33.79935-118.1655845.0148.0114652.1912.1890.0025.6729999999999995.6690.0040.08
408SimiValley34.27111111111111-118.73944444444444234.0768.012687442.24741.480.767109.41799999999999107.432999999999991.9861.81
409SolanaBeach32.99527777777778-117.2602777777777722.072.0128673.62399999999999973.520.104000000000000019.3860000000000019.1150.272.88
410Soledad36.42472222222222-121.3263888888888958.0190.0257384.5664.4140.15211.82511.4320.392999999999999963.32
411Solvang34.59388888888889-120.13972222222223154.0505.052452.4262.4250.0016.2846.2810000000000010.0030.05
412Sonoma38.288888888888884-122.458888888888926.085.0106482.7422.7420.07.1027.1020.00.0
413Sonora37.98444444444444-120.38166666666666544.01785.071693.07800000000000033.06399999999999960.0139999999999999997.9727.9360.0360000000000000040.45
414SouthElMonte34.04888888888889-118.0483333333333376.0249.0201162.84800000000000032.8430.0057.3779999999999997.3640.0139999999999999990.19
415SouthGate33.94416666666666-118.1950000000000137.0120.0943967.3537.2360000000000010.1169999999999999919.04418.7420.3031.59
416SouthLakeTahoe38.94-119.976944444444441901.06237.02140316.60299999999999810.1616.44243.00326.31816.68538.8
417SouthPasadena34.113055555555555-118.15583333333333201.0659.0256193.4173.4050.0128.8518.820.0310.35
418SouthSanFrancisco37.65611111111111-122.425555555555564.013.06440930.1589.14121.01778.10923.67454.43569.69
419Stanton33.802499999999995-117.9944444444444420.066.0381863.153.150.08.1588.1580.00.0
420StHelena38.50527777777778-122.4702777777777877.0253.058145.0274.9860000000000010.04099999999999999513.01912.9130.1060.81
421Stockton37.97555555555556-121.300833333333334.013.030109064.75361.673.083167.708159.722999999999987.9854.76
422SuisunCity38.245-122.016944444444452.07.0281114.1634.1050.05799999999999999610.78310.6330.151.39
423Sunnyvale37.37111111111111-122.037539.0128.014008122.68921.9870.702000000000000158.76556.9469999999999961.8183.09
424Susanville40.41638888888889-120.653055555555571276.04186.0179748.0170000000000017.9310.08620.76320.5410.2221.07
425SutterCreek38.393055555555556-120.8025362.01188.025012.55800000000000032.55800000000000030.06.6256.6250.00.0
426Taft35.1425-119.4563888888889291.0955.0932715.11315.1130.039.14339.1430.00.0
427Tehachapi35.132222222222225-118.448888888888891210.03970.0144149.9719.8740.0969999999999999925.82325.5730.250.97
428Tehama40.02444444444444-122.1238888888888964.0210.04180.7940.7940.02.0572.0570.00.0
429Temecula33.50333333333333-117.1236111111111310.591019.010520830.16699999999999830.1510.01678.13378.0920.0420.05
430TempleCity34.10277777777778-118.05805555555555122.0400.0355584.0064.0060.010.37410.3740.00.0
431ThousandOaks34.18944444444444-118.875270.0886.012837455.18100000000000455.0310000000000060.15142.918142.530.3870.27
432Tiburon37.87361111111111-122.456666666666664.013.0896213.1824.4460000000000018.73634.1411.51522.62566.27
433Torrance33.834722222222226-118.3413888888888927.089.014702720.55320.4779999999999980.07553.23300000000000453.0380000000000040.1950.37
434Tracy37.738055555555555-121.4338888888888916.052.08292222.13922.0030.13657.3456.9869999999999950.352000000000000040.61
435Trinidad41.05916666666666-124.1430555555555653.0174.03670.67099999999999990.4850.186000000000000031.73699999999999991.2550.4820000000000000427.75
436Truckee39.342222222222226-120.203611111111121773.05817.01618033.65432.3219999999999961.331999999999999987.16283.7133.4493.96
437Tulare36.20666666666667-119.342588.0289.05927821.01620.9309999999999970.08554.43354.2119999999999960.2210.41
438Tulelake41.95416666666667-121.475833333333341230.04035.010100.412000000000000030.410.0021.0671.0610.0060.58
439Turlock37.505833333333335-120.8488888888888831.0102.06973316.92816.9280.043.84399999999999443.8439999999999940.00.0
440Tustin33.73972222222222-117.8136111111111143.0141.07554011.08211.0820.028.70128.7010.00.0
441TwentyninePalms34.138333333333335-116.07249999999999607.01991.02576859.14359.1430.0153.179153.1790.00.0
442Ukiah39.150277777777774-123.20777777777778193.0639.0160754.72199999999999954.670.05200000000000000512.23200000000000112.0959999999999980.1361.11
443UnionCity37.58694444444445-122.025833333333347215519.019.00.0
444Upland34.1-117.65405.01328.07373215.65115.6170.03440.53540.4480.0870.21
445Vacaville38.35388888888889-121.9727777777777853.0174.09242828.58528.3730.21274.0339999999999973.4850.550.74
446Vallejo38.113055555555555-122.2358333333333321.060.011594249.530.618.8128.379.448.838.0
447Ventura34.275-119.2277777777777710643332.09521.65510.4483.12456.08527.03932.53
448Vernon34.00111111111111-118.2111111111111162.0203.01125.1574.9730.18413.35700000000000112.880.476000000000000033.57
449Victorville34.53611111111111-117.28833333333333832.02726.012033673.74173.1780.563190.988189.529000000000021.4590.76
450VillaPark33.816111111111105-117.8111111111111104.0341.058122.07800000000000032.07800000000000030.05.3829999999999995.3829999999999990.00.0
451Visalia36.31666666666667-119.3101.0331.012444236.26636.2460.0293.92893.8760.05120.05
452Vista33.19361111111111-117.2411111111111199.0325.09383418.67818.6780.048.37699999999999548.3769999999999950.00.0
453Walnut34.03333333333333-117.86666666666666171.0561.0291728.9968.9920.00423.323.290.010.04
454WalnutCreek37.906388888888884-122.065131.06417319.76900000000000219.7570.01251.20151.1690.0310.06
455Wasco35.594166666666666-119.34083333333332100.0328.0255459.4269.4260.024.41324.4130.00.0
456Waterford37.644999999999996-120.767552.0171.084562.3692.32800000000000030.0409999999999999956.1356.030.1051.72
457Watsonville36.919999999999995-121.763611111111129.029.0511996.78299999999999956.6870.09617.56900000000000317.3190000000000030.251.42
458Weed41.424166666666665-122.384444444444451044.03425.029674.7954.790.00512.41712.4050.0120.1
459WestCovina34.056666666666665-117.91861111111112110.0362.010609816.0916.0410.04941.6710000000000141.5450.1260.3
460WestHollywood34.08777777777778-118.3722222222222286.0282.0346501.88699999999999981.88699999999999980.04.8884.8880.00.0
461WestlakeVillage34.14194444444444-118.81944444444444268.0880.082705.50899999999999955.1850.3214.25713.430.8285.8
462Westminster33.75138888888889-117.9938888888888912.039.08970110.04910.0490.026.02699999999999726.0269999999999970.00.0
463Westmorland33.03722222222222-115.62138888888889-164.022250.590.590.01.52900000000000011.52900000000000010.00.0
464WestSacramento38.580555555555556-121.530277777777786.020.04874422.84621.4251.42159.17255.491000000000013.6816.22
465Wheatland39.01-121.4230555555555628.092.034561.4861.4790.0069999999999999993.84800000000000033.83100000000000040.0170.45
466Whittier33.96555555555556-118.02444444444444112.0367.08533114.714.70.01637.037.00.0409999999999999950.11
467Wildomar33.603611111111114-117.27277777777778387.01270.03217623.68800000000000223.6880000000000020.061.35100000000000661.3510000000000060.00.0
468Williams39.15472222222222-122.1494444444444625.082.051235.4445.4440.014.10099999999999914.1009999999999990.00.0
469Willits39.40972222222222-123.35555555555555424.01391.048882.8032.7980.0057.267.2479999999999990.0130000000000000010.17
470Willows39.52444444444444-122.1936111111111142.0138.061662.8732.8470.0260000000000000027.4417.3729999999999990.0680.92
471Windsor38.54611111111111-122.8052777777777736.0118.0268017.2929999999999997.2680.02518.88799999999999818.8240.0640.34
472Winters38.525-121.9708333333333340.0131.066242.9372.9120.0257.6077.5429999999999990.0650.85
473Woodlake36.41638888888889-119.09944444444444134.0440.072792.7652.2480.5177.1595.8210000000000011.33818.69
474Woodland38.67861111111111-121.7733333333333321.069.05546815.30299999999999915.3029999999999990.039.63439.6340.00.0
475Woodside37.420833333333334-122.25972222222222117.0384.0528711.73200000000000111.7320000000000010.030.38630.3860.00.0
476YorbaLinda33.888551-117.81323182.3270.06523720.01819.4830.53551.84750.461.38699999999999982.67
477Yountville38.403055555555554-122.3622222222222130.098.029331.5311.5310.03.9663.9660.00.0
478Yreka41.72666666666667-122.6375787.02582.0776510.0529999999999999.980.07326.03599999999999825.8469999999999980.1880.72
479YubaCity39.13472222222222-121.626111111111118.059.06492514.65599999999999914.5780.07837.95937.7580.2010.53
480Yucaipa34.030277777777776-117.04861111111111798.02618.05136727.89327.8880.00572.24472.231000000000010.0130000000000000010.02
481YuccaValley34.13333333333333-116.416666666666671027.03369.02070040.01540.0150.0103.639103.6390.00.0