本文整理汇总了Java中de.fhpotsdam.unfolding.data.PointFeature.addProperty方法的典型用法代码示例。如果您正苦于以下问题:Java PointFeature.addProperty方法的具体用法?Java PointFeature.addProperty怎么用?Java PointFeature.addProperty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类de.fhpotsdam.unfolding.data.PointFeature
的用法示例。
在下文中一共展示了PointFeature.addProperty方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: isInCountry
import de.fhpotsdam.unfolding.data.PointFeature; //导入方法依赖的package包/类
private boolean isInCountry(PointFeature earthquake, Marker country) {
// 获取地点
Location checkLoc = earthquake.getLocation();
// some countries represented it as MultiMarker
// looping over SimplePolygonMarkers which make them up to use isInsideByLoc
if (country.getClass() == MultiMarker.class) {
// looping over markers making up MultiMarker
for (Marker marker : ((MultiMarker) country).getMarkers()) {
// checking if inside
if (((AbstractShapeMarker) marker).isInsideByLocation(checkLoc)) {
earthquake.addProperty("country", country.getProperty("name"));
// return if is inside one
return true;
}
}
}
// check if inside country represented by SimplePolygonMarker
else if (((AbstractShapeMarker) country).isInsideByLocation(checkLoc)) {
earthquake.addProperty("country", country.getProperty("name"));
return true;
}
return false;
}
示例2: isInCountry
import de.fhpotsdam.unfolding.data.PointFeature; //导入方法依赖的package包/类
@SuppressWarnings("unused")
private boolean isInCountry(PointFeature earthquake, Marker country) {
// 获取地点
Location checkLoc = earthquake.getLocation();
// some countries represented it as MultiMarker
// looping over SimplePolygonMarkers which make them up to use isInsideByLoc
if(country.getClass() == MultiMarker.class) {
// looping over markers making up MultiMarker
for(Marker marker : ((MultiMarker)country).getMarkers()) {
// checking if inside
if(((AbstractShapeMarker)marker).isInsideByLocation(checkLoc)) {
earthquake.addProperty("country", country.getProperty("name"));
// return if is inside one
return true;
}
}
}
// check if inside country represented by SimplePolygonMarker
else if(((AbstractShapeMarker)country).isInsideByLocation(checkLoc)) {
earthquake.addProperty("country", country.getProperty("name"));
return true;
}
return false;
}
示例3: isInCountry
import de.fhpotsdam.unfolding.data.PointFeature; //导入方法依赖的package包/类
private boolean isInCountry(PointFeature earthquake, Marker country) {
// getting location of feature
Location checkLoc = earthquake.getLocation();
// some countries represented it as MultiMarker
// looping over SimplePolygonMarkers which make them up to use
// isInsideByLoc
if (country.getClass() == MultiMarker.class) {
// looping over markers making up MultiMarker
for (Marker marker : ((MultiMarker) country).getMarkers()) {
// checking if inside
if (((AbstractShapeMarker) marker).isInsideByLocation(checkLoc)) {
earthquake.addProperty("country",
country.getProperty("name"));
// return if is inside one
return true;
}
}
}
// check if inside country represented by SimplePolygonMarker
else if (((AbstractShapeMarker) country).isInsideByLocation(checkLoc)) {
earthquake.addProperty("country", country.getProperty("name"));
return true;
}
return false;
}
示例4: isInCountry
import de.fhpotsdam.unfolding.data.PointFeature; //导入方法依赖的package包/类
private boolean isInCountry(PointFeature earthquake, Marker country) {
// getting location of feature
Location checkLoc = earthquake.getLocation();
// some countries represented it as MultiMarker
// looping over SimplePolygonMarkers which make them up to use isInsideByLoc
if(country.getClass() == MultiMarker.class) {
// looping over markers making up MultiMarker
for(Marker marker : ((MultiMarker)country).getMarkers()) {
// checking if inside
if(((AbstractShapeMarker)marker).isInsideByLocation(checkLoc)) {
earthquake.addProperty("country", country.getProperty("name"));
// return if is inside one
return true;
}
}
}
// check if inside country represented by SimplePolygonMarker
else if(((AbstractShapeMarker)country).isInsideByLocation(checkLoc)) {
earthquake.addProperty("country", country.getProperty("name"));
return true;
}
return false;
}
示例5: 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;
}