import processing.pdf.*;
Table atolls;
PGraphicsPDF pdf;
PFont helvetica;
void draw() {
textFont(helvetica);
textSize(2);
textAlign(CENTER);
float scale = 300;
String[] years = {"1911", "1921","1953","1960", "1965","1977","1985","1990","1995","2000","2006","2014"};
for (TableRow atollrow : atolls.rows()) {
String atoll_short = atollrow.getString("Atoll_short");
float lat = atollrow.getFloat("Lat");
float lon = atollrow.getFloat("Long");
pushMatrix();