/** @serie : chile earthquakes data set
@author: coyarzun@error404.cl

Gráfico de latitudes v/s tiempo. */ PFont font; int fontsize = 12; String[] file; Earthquake[] dataset; void setup(){ size(720,400); font = loadFont("AndaleMono-12.vlw"); textFont(font, fontsize); parseData("earthquakes.data"); calcLimits(); } void draw(){ background(0); smooth(); fill(255); textAlign(LEFT); text("CHILE EARTHQUAKES DATA", 2, fontsize); graphLatInTime(20,20,100,100); }