本文整理汇总了Java中processing.core.PApplet.loadStrings方法的典型用法代码示例。如果您正苦于以下问题:Java PApplet.loadStrings方法的具体用法?Java PApplet.loadStrings怎么用?Java PApplet.loadStrings使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类processing.core.PApplet
的用法示例。
在下文中一共展示了PApplet.loadStrings方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: loadLifeExpectancyFromCSV
import processing.core.PApplet; //导入方法依赖的package包/类
public static HashMap<String, Float> loadLifeExpectancyFromCSV(PApplet p, String fileName) {
// HashMap key: country ID and data: lifeExp at birth
HashMap<String, Float> lifeExpMap = new HashMap<String, Float>();
// get lines of csv file
String[] rows = p.loadStrings(fileName);
// Reads country name and population density value from CSV row
for (String row : rows) {
// split row by commas not in quotations
String[] columns = row.split(",(?=([^\"]*\"[^\"]*\")*[^\"]*$)");
// check if there is any life expectancy data from any year, get most recent
/*
* EXTENSION: Add code to also get the year the data is from.
* You may want to use a list of Floats as the values for the HashMap
* and store the year as the second value. (There are many other ways to do this)
*/
//
for(int i = columns.length - 1; i > 3; i--) {
// check if value exists for year
if(!columns[i].equals("..")) {
lifeExpMap.put(columns[3], Float.parseFloat(columns[i]));
// break once most recent data is found
break;
}
}
}
return lifeExpMap;
}
示例2: parseAirports
import processing.core.PApplet; //导入方法依赖的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;
}
示例3: parseRoutes
import processing.core.PApplet; //导入方法依赖的package包/类
public static List<ShapeFeature> parseRoutes(PApplet p, String fileName) {
List<ShapeFeature> routes = new ArrayList<ShapeFeature>();
String[] rows = p.loadStrings(fileName);
for(String row : rows) {
String[] columns = row.split(",");
ShapeFeature route = new ShapeFeature(Feature.FeatureType.LINES);
// set id to be OpenFlights identifier for source airport
// check that both airports on route have OpenFlights Identifier
if(!columns[3].equals("\\N") && !columns[5].equals("\\N")){
// set "source" property to be OpenFlights identifier for source airport
route.putProperty("source", columns[3]);
// "destination property" -- OpenFlights identifier
route.putProperty("destination", columns[5]);
routes.add(route);
}
}
return routes;
}