<html><head></head><body><div style="font-family: Verdana;font-size: 12.0px;"><div>[resending the mail with smaller attachments]</div>

<div> </div>

<div>>I was hoping to also provide some kind of visual representation of the<br/>
>vote evolution. That is the reason for the vote log publication delay.<br/>
>However, other duties prevented to do so. If someone has good skills in<br/>
>this area, please do create a chart of the CSV file and let's as know.<br/>
>Otherwise, I will do that when the time allows me (mid next week most<br/>
>probably).<br/>
><br/>
>Best,<br/>
>Vasile<br/>
>CRO 2017<br/>
><br/>
>[1] <a href="http://www.geo-spatial.org/file_download/29668/osgeo_board_elections.csv" target="_blank">http://www.geo-spatial.org/file_download/29668/osgeo_board_elections.csv</a><br/>
>[2] <a href="https://wiki.osgeo.org/wiki/Board_Election_2017_Results" target="_blank">https://wiki.osgeo.org/wiki/Board_Election_2017_Results</a><br/>
<br/>
attached a simplified csv for input in R and a cumulative sum grafics for all candidates,<br/>
produced by some simple code lines in R:<br/>
<br/>
data <- read.table("rinpunt.csv", header = TRUE, sep = ";")<br/>
summary(data)<br/>
attach(data)<br/>
<br/>
plot(Response.ID, cumsum(Astrid.Emde), cex = .9, ylab = "cumulative sum", col = "blue", main = "OSGeo board election 2017")<br/>
points(Response.ID, cumsum(Maria.Arias.de.Reyna), cex = .9, , col = "green")<br/>
points(Response.ID, cumsum(Venkatesh.Raghavan), cex = .9, col = "red")<br/>
points(Response.ID, cumsum(Jody.Garnett), cex = .9, col = "yellow")<br/>
points(Response.ID, cumsum(Sanghee.Shin), cex = .9, col = "black")<br/>
points(Response.ID, cumsum(Vicky.Vergara), cex = .9, col = "orange")<br/>
points(Response.ID, cumsum(Helena.Mitasova), cex = .9, col = "orchid")<br/>
points(Response.ID, cumsum(Dirk.Frigne), cex = .9, col = "indianred")<br/>
points(Response.ID, cumsum(Jeff.McKenna), cex = .9, col = "turquoise4")<br/>
<br/>
<br/>
legend(269, 198, legend=c("Astrid Emde", "Maria Arias de Reyna", "Venkatesh Raghavan", "Jody Garnett", "Sanghee Shin", "Vicky Vergara", "Helena Mitasova", "Dirk Frigne", "Jeff McKenna"),<br/>
col=c("blue", "green", "red", "yellow", "black", "orange", "orchid", "indianred", "turquoise4"), cex=0.8, pch = c(21,21,21,21,21,21,21,21,21), pt.cex = 0.9)<br/>
<br/>
Kind regards<br/>
Helmut<br/>
<br/>
OSGeo charter member</div></div></body></html>