Field.Height heightLevel = fieldReader.getHeightLevel(pos);
String vegetation = fieldReader.getVegetationName(pos);
long population = fieldReader.getPopulation(pos);
ResourceSet resources = getBasicAmount(heightLevel, vegetation);
resources = resources.mult(population);
return resources;
}
}