int[] alsoLocatedInIds = p.getAlsoLocatedInIds();
if ((printAlsoLocatedIns) && (alsoLocatedInIds != null) && (alsoLocatedInIds.length > 0)) {
StringBuffer alsoLocatedStrs = new StringBuffer();
for (int indx = 0; indx < alsoLocatedInIds.length; indx++) {
int alsoLocatedInId = alsoLocatedInIds[indx];
Place alsoLocatedPlace = standardizer.getPlace(alsoLocatedInId);
if (alsoLocatedStrs.length() > 0) {
alsoLocatedStrs.append(", ");
}
alsoLocatedStrs.append(alsoLocatedPlace.getFullName());
}
placesWriter.println("\talso located in = " + alsoLocatedStrs);
}
}