location = new CityLocation[(pg.getRecordsFinal() - pg.getRecordsInitial()) + 1];
for (int intI = pg.getRecordsInitial(); intI <= pg.getRecordsFinal(); intI++) {
if (rs1.absolute(intI)) {
// definir city
location[iCount] = new CityLocation();
location[iCount].setCity(new City());
location[iCount].getCity().setName(rs1.getString("MUNICY"));
location[iCount].getCity().setState(rs1.getString("UF"));
// definir point
location[iCount].setPoint(new Point());