diff --git a/mapLoad/mapLoad.pde b/mapLoad/mapLoad.pde index 7c7b036..ad8eed8 100644 --- a/mapLoad/mapLoad.pde +++ b/mapLoad/mapLoad.pde @@ -32,6 +32,10 @@ void loadData() { for (TableRow row : coords.rows()) { float lng = row.getFloat("lng"); //value accessed by column name or index float ltd = row.getFloat("ltd"); + if (lng >= 500) + fill(220, 10, 20); + else + fill(10,220,20); ellipse(lng, ltd, dotWidth, dotHeight); }