shp2sdo的下载及使用说明
收藏
<script type="text/javascript">
document.body.oncopy = function() {
if (window.clipboardData) {
setTimeout(function() {
var text = clipboardData.getData("text");
if (text && text.length>300) {
text = text + "\r\n\n本文来自CSDN博客,转载请标明出处:" + location.href;
clipboardData.setData("text", text);
}
}, 100);
}
}
</script><script type="text/javascript">function StorePage(){d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(keyit=window.open('http://www.365key.com/storeit.aspx?t='+escape(d.title)+'&u='+escape(d.location.href)+'&c='+escape(t),'keyit','scrollbars=no,width=475,height=575,left=75,top=20,status=no,resizable=yes'));keyit.focus();}</script>
下载地址:http://www.oracle.com/technology/software/products/spatial/htdocs/xplatformsoft.html
页面里有个Shapefile Converter链接 http://www.oracle.com/technology/software/products/spatial/files/shp2sdo.zip
两份帮助的地址:
http://www.oracle.com/technology/software/products/spatial/files/text_files/using_shp2sdo.txt
http://www.oracle.com/technology/software/products/spatial/files/shp2sdo_readme.html
一个中国朋友写的blog:
http://www.cnblogs.com/freetofly/articles/1025594.html
分享到:
相关推荐
"using_shp2sdo.txt"文件很可能是该工具的使用指南,提供详细的步骤和参数设置,以指导用户正确执行导入过程。 导入shp文件到Oracle数据库的过程通常包括以下步骤: 1. 创建Oracle数据库表:首先,我们需要在...
1. **SDO2Shp.bdsproj**:这是一个Delphi项目文件,表明该软件是使用Embarcadero Delphi开发的,一个面向对象的编程环境,适合创建桌面应用程序。 2. **SDO2Shp.cfg**:配置文件,通常包含程序的设置和选项,用户...
导入SHP文件到Oracle Spatial时,可以使用多种工具,如Oracle Data Integrator (ODI)、FME (Feature Manipulation Engine)、 ogr2ogr(GDAL库的一部分)等。这些工具提供了图形化界面或命令行接口,方便用户进行...
3. **运行shp2sdo_exe**:在命令行中,使用以下格式运行`shp2sdo_exe`: ``` shp2sdo -f "your_shapefile.shp" -g geom -srid 4326 -m "your_table_name" "user/password@database_service" ``` 这里的参数说明...
使用shp2sdo分割Shapefile文件 - **准备工作**: - 确保已安装shp2sdo工具。 - 确认shapefile文件(例如集贸市场的文件)和shp2sdo工具都位于同一路径下,如`C:\data`。 - **操作步骤**: - 打开命令提示符...