POI
中国POI(Point of Interest)数据库
什么是POI?
POI是“Point of Interest”的缩写,可以翻译成“兴趣点”吧,每个POI包含四方面信息,名称、类别、经度、纬度。
这个计划的远景目标是建立全国的POI数据库,并且全部开放。
目前POI数据库计划已经发布有北京市区POI数据16000条,全国村镇POI数据8万余条。全国其它地区的POI数据正在搜集整理中,同时还有一个全国公路收费站POI数据的计划也在进行。
一、道路收费站标注计划
1 估计总数据量:目前全国总共有2000多个路桥收费站,其中广东有418个,居全国之首。点这里看详情
2 估计完成时间:2004年6月30日。
3 适用机型:根据我们目前掌握的技术,这些数据可以作为地图的一部分用于任何能加载自制地图的GPS上,比如GARMIN、MAGELLAN的手持GPS。对没有地图功能或者自己无法上载地图的GPS,可以作为航点(WAYPOINT)上传,GPS手持机一般都有至少500航点的存储能力,足以应付日常用途。
4 数据提供模式:
融合到拼音版地图中。有GARMIN、MAGELLAN两种格式。
OZI航点文件格式。每个省的收费站作为一个单独的WAYPOINT文件,可以分别上传到GPS上。
MAPINFO交换文件格式,也以省为单位划分成独立的文件,方便用于其它场合。
5 数据更新周期:每周更新一次。
6 项目起因:
平常行车,最花钱的部分就是道路通行费,甚至高达油钱的3倍。不仅高速公路收费,就连国道省道县道也收费,收费标准甚至高于高速公路。“贷款修路,收费还贷”成了想方设法收费的“理由”。违规设立道路收费站、出让道路收费权、延长道路收费期限等现象在全国屡见不鲜。道路高收费也是超载现象产生的根源之一。我们个人无法改变这种现状,走不起只能绕过去。要避开这些国道收费点,在GPS普及之前是个相当困难的问题,因为那些地方我们可能一辈子也就去那么一两次,看到收费站的时候,就算想绕道,恐怕都不知道该走哪条路绕。而对当地人来说,凡是有收费站的地方,一定就有小路绕行。有个朋友说,“国道进天津收费20,我提前左转弯,多开3公里,就躲过去了,至今最少已经节约了几百块”。集合大家的力量,把全国范围的道路收费站确切位置标注出来,善莫大焉。当然,最好能同时提供绕行路线,并标注绕行的代价,比如多绕的距离、路面质量以及需要注意的地方。
7 参与方式:
这个项目的特点决定了这是一个需要全国GPS爱好者共同参与才能作好的项目,对每一个参与者来说,不用花费多少时间,只要在路过收费站的时候,在GPS上打个点(WAYPOINT),然后将这个点的坐标、所在道路、收费站名称、收费起止时间、收费标准等信息发EMAIL给俺,当然如果有GPS轨迹形式或者ROUTE形式的绕行路线就更理想了。俺的邮箱在网站首页,来信的时候请在标题中带上“POI”三个字母。
希望对这个项目有兴趣的朋友将这个项目推荐给别的GPS爱好者,大家共同努力,尽快完成这个项目。
二、全国POI数据
目前正在整理、搜集、制作更多的POI数据,将会陆续发布。对此事有兴趣的朋友请根据首页联系方法随时与兄弟联系。
1 北京市区POI数据库
这个数据库包含了北京城区的16000多个POI数据,POI名称有汉字和拼音两种版本,这些POI数据可以传输到GPS中,前提条件是GPS支持POI或者地图。支持POI的手持GPS有Magellan GPS315/320系列,比如GPS315可以储存18220个POI数据(仅限英文版。兄弟测试过中文版315,无法上传POI数据)。常见的支持上传地图的手持GPS有Garmin eTrex系列的Legend和Vista,Magellan的Meridian系列和Sportrak系列。对地图机来说,POI数据可以作为地图,因此只要地图机的内存允许,就可以添加任意数量的POI。
在遍历行的时候,把第一行去掉不就可以了么,下面是示例
for (int j = 0; j < rowSize; j++) {//遍历行
Row row = sheetgetRow(j);
if (row == null) {//略过空行
continue;
}
int cellSize = rowgetLastCellNum();//行中有多少个单元格,也就是有多少列
if (j == 0) {//第一行是标题行
continue;
}
} else {//其他行是数据行
Map<String, String> rowMap = new HashMap<String, String>();//对应一个数据行
for (int k = 0; k < titlessize(); k++) {
Cell cell = rowgetCell(k);
String key = titlesget(k);
String value = null;
if (cell != null) {
value = celltoString();
}
rowMapput(key, value);
}
先按行读取,然后获取列,定位到单元格后就可以获取值了,循环存入list即可。
/
读取Excel数据内容
@param InputStream
@return Map 包含单元格数据内容的Map对象
/
public Map<Integer, String> readExcelContent(InputStream is) {
Map<Integer, String> content = new HashMap<Integer, String>();
String str = "";
try {
fs = new POIFSFileSystem(is);
wb = new HSSFWorkbook(fs);
} catch (IOException e) {
eprintStackTrace();
}
sheet = wbgetSheetAt(0);
// 得到总行数
int rowNum = sheetgetLastRowNum();
row = sheetgetRow(0);
int colNum = rowgetPhysicalNumberOfCells();
// 正文内容应该从第二行开始,第一行为表头的标题
for (int i = 1; i <= rowNum; i++) {
row = sheetgetRow(i);
int j = 0;
while (j < colNum) {
// 每个单元格的数据内容用"-"分割开,以后需要时用String类的replace()方法还原数据
// 也可以将每个单元格的数据设置到一个javabean的属性中,此时需要新建一个javabean
// str += getStringCellValue(rowgetCell((short) j))trim() +
// "-";
str += getCellFormatValue(rowgetCell((short) j))trim() + " ";
j++;
}
contentput(i, str);
str = "";
}
return content;
}
controller
@RequestMapping("assign2/downloadAssignWayConfigHistorydo")public void downloadAssignWayConfigHistory(>}
service
public void exportAssignCaseWayHistory(String[] exceltitles,ArrayList<Map<String, Object>> excelDatas, OutputStream out) {
try{
// 第一步,创建一个workbook,对应一个Excel文件
HSSFWorkbook workbook = new HSSFWorkbook();
// 第二步,在webbook中添加一个sheet,对应Excel文件中的sheet
HSSFSheet hssfSheet = workbookcreateSheet("sheet1");
// 第三步,在sheet中添加表头第0行,注意老版本poi对Excel的行数列数有限制short
HSSFRow row = hssfSheetcreateRow(0);
//不带背景颜色居中的cellStyle
HSSFCellStyle hssfCellStyle = workbookcreateCellStyle();
//居中
hssfCellStylesetAlignment(HSSFCellStyleALIGN_CENTER);
hssfCellStylesetVerticalAlignment(hssfCellStyleVERTICAL_CENTER);
//带背景和字体颜色并且居中的cellStyle
HSSFCellStyle hssfCellStyleWithBackgroundColor = workbookcreateCellStyle();
//居中
hssfCellStyleWithBackgroundColorsetAlignment(HSSFCellStyleALIGN_CENTER);
hssfCellStyleWithBackgroundColorsetVerticalAlignment(hssfCellStyleVERTICAL_CENTER);
//背景
hssfCellStyleWithBackgroundColorsetFillForegroundColor(IndexedColorsYELLOWgetIndex());
hssfCellStyleWithBackgroundColorsetFillPattern(hssfCellStyleSOLID_FOREGROUND);
//字体
HSSFFont font = workbookcreateFont();
fontsetColor(HSSFColorREDindex);
hssfCellStyleWithBackgroundColorsetFont(font);
HSSFCell hssfCell = null;
for (int i = 0; i < exceltitleslength; i++) {
hssfCell = rowcreateCell(i);//列索引从0开始
hssfCellsetCellValue(exceltitles[i]);//列名1
hssfCellsetCellStyle(hssfCellStyle);//列居中显示
//设置列宽
if (i == 1 || i == 6 || i == 7) {
hssfSheetsetColumnWidth(i, 5000);
}else {
hssfSheetsetColumnWidth(i, 3000);
}
}
// 第五步,写入实体数据
for (int i = 0; i < excelDatassize(); i++) {
row = hssfSheetcreateRow(2i+1); //奇数行
Map<String, Object> excelData = excelDatasget(i);
// 第六步,创建单元格,并设置值
String updateBy = (String) excelDataget("updateBy");
String updateDate = (String) excelDataget("updateDate");
String region = (String) excelDataget("region");
String branch = (String) excelDataget("branch");
String center = (String) excelDataget("center");
String dept = (String) excelDataget("dept");
String assignMode = (String) excelDataget("assignMode");
String newAssignMode = (String) excelDataget("newAssignMode");
String turnableDimension = (String) excelDataget("turnableDimension");
String newTurnableDimension = (String) excelDataget("newTurnableDimension");
String M0 = (String) excelDataget("M0");
String M1 = (String) excelDataget("M1");
String M2 = (String) excelDataget("M2");
String M3 = (String) excelDataget("M3");
String newM0 = (String) excelDataget("newM0");
String newM1 = (String) excelDataget("newM1");
String newM2 = (String) excelDataget("newM2");
String newM3 = (String) excelDataget("newM3");
HSSFCell cell0 = rowcreateCell(0);
cell0setCellStyle(hssfCellStyle);
cell0setCellValue(updateBy);
HSSFCell cell1 = rowcreateCell(1);
cell1setCellStyle(hssfCellStyle);
cell1setCellValue(updateDate);
HSSFCell cell2 = rowcreateCell(2);
cell2setCellStyle(hssfCellStyle);
cell2setCellValue(region);
HSSFCell cell3 = rowcreateCell(3);
cell3setCellStyle(hssfCellStyle);
cell3setCellValue(branch);
HSSFCell cell4 = rowcreateCell(4);
cell4setCellStyle(hssfCellStyle);
cell4setCellValue(center);
HSSFCell cell5 = rowcreateCell(5);
cell5setCellStyle(hssfCellStyle);
cell5setCellValue(dept);
HSSFCell cell6 = rowcreateCell(6);
cell6setCellStyle(hssfCellStyle);
cell6setCellValue(assignModeequals("0")"模式1":"模式2");
if ("BRANCH"equals(turnableDimension)) {
turnableDimension = "分部";
} else if ("CENTER"equals(turnableDimension)) {
turnableDimension = "中心";
} else if ("DEPT"equals(turnableDimension)) {
turnableDimension = "部";
}
HSSFCell cell7 = rowcreateCell(7);
cell7setCellStyle(hssfCellStyle);
cell7setCellValue(turnableDimension);
HSSFCell cell8 = rowcreateCell(8);
cell8setCellStyle(hssfCellStyle);
cell8setCellValue(M0equalsIgnoreCase("Y")"案2":"案2");
HSSFCell cell9 = rowcreateCell(9);
cell9setCellStyle(hssfCellStyle);
cell9setCellValue(M1equalsIgnoreCase("Y")"案1":"案2");
HSSFCell cell10 = rowcreateCell(10);
cell10setCellStyle(hssfCellStyle);
cell10setCellValue(M2equalsIgnoreCase("Y")"案1":"案2");
HSSFCell cell11 = rowcreateCell(11);
cell11setCellStyle(hssfCellStyle);
cell11setCellValue(M3equalsIgnoreCase("Y")"案1":"案2");
row = hssfSheetcreateRow(2i+2); //偶数行
HSSFCell newCell6 = rowcreateCell(6);
newCell6setCellValue(newAssignModeequals("0")"模式1":"模式2");//设置值
if (!newAssignModeequals(assignMode)){//设置背景色
newCell6setCellStyle(hssfCellStyleWithBackgroundColor);
}else {
newCell6setCellStyle(hssfCellStyle);
}
if ("BRANCH"equals(newTurnableDimension)) {
newTurnableDimension = "haha";
} else if ("CENTER"equals(newTurnableDimension)) {
newTurnableDimension = "hehe";
} else if ("DEPT"equals(newTurnableDimension)) {
newTurnableDimension = "hiahia";
}
HSSFCell newCell7 = rowcreateCell(7);
newCell7setCellValue(newTurnableDimension);
if (!newTurnableDimensionequals(turnableDimension)){//设置背景色
newCell7setCellStyle(hssfCellStyleWithBackgroundColor);
}else {
newCell7setCellStyle(hssfCellStyle);
}
HSSFCell newCell8 = rowcreateCell(8);
newCell8setCellValue(newM0equalsIgnoreCase("Y")"案1":"案2");
if (!newM0equals(M0)){//设置背景色
newCell8setCellStyle(hssfCellStyleWithBackgroundColor);
}else {
newCell8setCellStyle(hssfCellStyle);
}
HSSFCell newCell9 = rowcreateCell(9);
newCell9setCellValue(newM1equalsIgnoreCase("Y")"案1":"案2");
if (!newM1equals(M1)){//设置背景色
newCell9setCellStyle(hssfCellStyleWithBackgroundColor);
}else {
newCell9setCellStyle(hssfCellStyle);
}
HSSFCell newCell10 = rowcreateCell(10);
newCell10setCellValue(newM2equalsIgnoreCase("Y")"案1":"案2");
if (!newM2equals(M2)){//设置背景色
newCell10setCellStyle(hssfCellStyleWithBackgroundColor);
}else {
newCell10setCellStyle(hssfCellStyle);
}
HSSFCell newCell11 = rowcreateCell(11);
newCell11setCellValue(newM3equalsIgnoreCase("Y")"案1":"案2");
if (!newM3equals(M3)){//设置背景色
newCell11setCellStyle(hssfCellStyleWithBackgroundColor);
}else {
newCell11setCellStyle(hssfCellStyle);
}
//合并单元格
for (int j = 0; j < 6; j++){
CellRangeAddress cellRangeAddress = new CellRangeAddress(2i+1, 2i+2, j, j);
hssfSheetaddMergedRegion(cellRangeAddress);
}
}
// 第七步,将文件输出到客户端浏览器
try {
workbookwrite(out);
outflush();
outclose();
} catch (Exception e) {
eprintStackTrace();
}
}catch(Exception e){
eprintStackTrace();
}
}
所谓标题1就是一种样式,右键选修改时可以看到它的定义为:
字体: 二号, 加粗, 字距调整二号, 行距: 多倍行距 241 字行, 段落间距段前: 17 磅, 段后: 165 磅, 与下段同页, 段中不分页, 1 级, 样式: 链接, 快速样式, 优先级: 10, 基于: 正文, 后续样式: 正文
xssf没预定义样式,所以你可根据标题1的定义自己一个个设置属性值即可
以上就是关于POI是什么如何使用全部的内容,包括:POI是什么如何使用、jAVA-poi读取excel忽略第一行、POI 如何读取EXcel表,之后如何存入List集合中。等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)