本文整理汇总了Java中de.fhpotsdam.unfolding.data.PointFeature.putProperty方法的典型用法代码示例。如果您正苦于以下问题:Java PointFeature.putProperty方法的具体用法?Java PointFeature.putProperty怎么用?Java PointFeature.putProperty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类de.fhpotsdam.unfolding.data.PointFeature
的用法示例。
在下文中一共展示了PointFeature.putProperty方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: parseAirports
import de.fhpotsdam.unfolding.data.PointFeature; //导入方法依赖的package包/类
public static List<PointFeature> parseAirports(PApplet p, String fileName) {
List<PointFeature> features = new ArrayList<PointFeature>();
String[] rows = p.loadStrings(fileName);
for (String row : rows) {
// hot-fix for altitude when lat lon out of place
int i = 0;
// split row by commas not in quotations
String[] columns = row.split(",(?=([^\"]*\"[^\"]*\")*[^\"]*$)");
// get location and create feature
//System.out.println(columns[6]);
float lat = Float.parseFloat(columns[6]);
float lon = Float.parseFloat(columns[7]);
Location loc = new Location(lat, lon);
PointFeature point = new PointFeature(loc);
// set ID to OpenFlights unique identifier
point.setId(columns[0]);
// get other fields from csv
point.addProperty("name", columns[1]);
point.putProperty("city", columns[2]);
point.putProperty("country", columns[3]);
// pretty sure IATA/FAA is used in routes.dat
// get airport IATA/FAA code
if(!columns[4].equals("")) {
point.putProperty("code", columns[4]);
}
// get airport ICAO code if no IATA
else if(!columns[5].equals("")) {
point.putProperty("code", columns[5]);
}
point.putProperty("altitude", columns[8 + i]);
features.add(point);
}
return features;
}