当前位置: 首页>>代码示例>>Java>>正文


Java PointFeature.setId方法代码示例

本文整理汇总了Java中de.fhpotsdam.unfolding.data.PointFeature.setId方法的典型用法代码示例。如果您正苦于以下问题:Java PointFeature.setId方法的具体用法?Java PointFeature.setId怎么用?Java PointFeature.setId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在de.fhpotsdam.unfolding.data.PointFeature的用法示例。


在下文中一共展示了PointFeature.setId方法的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;
	
}
 
开发者ID:simontangbit,项目名称:CourseCode,代码行数:47,代码来源:ParseFeed.java


注:本文中的de.fhpotsdam.unfolding.data.PointFeature.setId方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。