- 浏览: 1046461 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (538)
- 奇文共赏 (36)
- spring (13)
- hibernate (10)
- AOP/Aspectj (9)
- spring security (7)
- lucence (5)
- compass (3)
- jbmp (2)
- jboss rule(drools) (0)
- birt (1)
- jasper (1)
- cxf (3)
- flex (98)
- webgis (6)
- 设计模式 (1)
- 代码重构 (2)
- log4j (1)
- tomcat (9)
- 神品音乐 (1)
- 工作计划 (2)
- appfuse (1)
- svn (4)
- 寻章摘句 (3)
- eclipse (10)
- arcgis api for flex (1)
- 算法 (5)
- opengis-cs (1)
- bug心得 (13)
- 图标 (1)
- software&key (14)
- java (17)
- 搞笑视频 (13)
- sqlserver (9)
- postgresql (1)
- postgis (0)
- geoserver (5)
- 日子 (50)
- 水晶报表 (1)
- 绝对电影 (3)
- Alternativa3D (1)
- 酷站大全 (10)
- c++ (5)
- oracle (17)
- oracle spatial (25)
- flashbuilder4 (3)
- TweenLite (1)
- DailyBuild (6)
- 华山论贱 (5)
- 系统性能 (5)
- 经典古文 (6)
- SOA/SCA/OSGI (6)
- jira (2)
- Hadoop生态圈(hadoop/hbase/pig/hive/zookeeper) (37)
- 风水 (1)
- linux操作基础 (17)
- 经济 (4)
- 茶 (3)
- JUnit (1)
- C# dotNet (1)
- netbeans (1)
- Java2D (1)
- QT4 (1)
- google Test/Mock/AutoTest (3)
- maven (1)
- 3d/OSG (1)
- Eclipse RCP (3)
- CUDA (1)
- Access control (0)
- http://linux.chinaunix.net/techdoc/beginner/2008/01/29/977725.shtml (1)
- redis (1)
最新评论
-
dove19900520:
朋友,你确定你的标题跟文章内容对应???
tomcat控制浏览器不缓存 -
wussrc:
我只想说牛逼,就我接触过的那点云计算的东西,仔细想想还真是这么 ...
别样解释云计算,太TM天才跨界了 -
hw_imxy:
endpoint="/Hello/messagebr ...
flex+java代码分两个工程 -
gaohejie:
rsrsdgrfdh坎坎坷坷
Flex 与 Spring 集成 -
李涤尘:
谢谢。不过说得有点太罗嗦了。
Oracle数据库数据的导入及导出(转)
http://www.cnblogs.com/mjgforever/archive/2007/12/24/1012440.html
1 Oracle Spatial 是什么?
提供SQL schema 和 functions 以方便存储、取回、更新和查询空间特性的集合。
MDSYS提供了地理数据的类型
2 Object-Relational Model
SDO_GEOMETRY
支持arcs, circles, compound polygons, compound line strings, and optimized rectangles
3 Spatial Data
例如交通图
4 Geometry Types
Points、point clusters
Line strings
n-point polygons
Arc line strings
Arc polygons
Compound polygons
Compound line strings
Circles
Optimized rectangles
5 Data Model
elements, geometries, layers 所组成的等级结构。
element: points, line strings, polygons
Geometry: An example of a geometry might describe the buildable land in a town.
Layer: A layer is a collection of geometries having the same attribute set.
Coordinate System: Cartesian coordinates, Geodetic coordinates, Projected coordinates, Local coordinates
Tolerance: Tolerance is used to associate a level of precision with spatial data.
6 Query Model
两级过滤。Primary filter, secondary filter.
7 Indexing of Spatial Data
R-tree index
8 Spatial Relationships and Filtering
SDO_RELATE: 评价拓扑标准 nine-intersection model between points, lines, and polygons (interior, a boundary, and an exterior.)
SDO_WITHIN_DISTANCE: 两个空间对象是否在一个距离范围内。
SDO_NN: 离某个空间对象最近的一个对象
9 Spatial Operators, Procedures, Functions
Spatial operators: such as SDO_FILTER and SDO_RELATE
Spatial procedures and functions: SDO_GEOM, SDO_CS, and SDO_LRS.
10 Spatial Aggregate Functions
SDO_AGGR_MBR
SDO_AGGR_UNION
11 Geocoding
一个从地址表中转换到标准地址、位置等的过程。
12 Spatial Java Application Programming Interface
oracle.spatial.geometry
oracle.spatial.network
oracle.spatial.topo
oracle.spatial.util
13 MDDATA Schema
14 Performance and Tuning Information
http://www.oracle.com/technology/products/spatial/
15 Open Geospatial Consortium (OGC) Conformance
Features Specification 1.1.1
SQL92
16 Spatial Release (Version) Number
SELECT SDO_VERSION FROM DUAL;
17 Spatial Application Hardware Requirement Considerations
18 Spatial Error Messages
Oracle Database Error Messages
19 Spatial Examples
readgeom.c and readgeom.h
writegeom.c and writegeom.h
1 Oracle Spatial 是什么?
提供SQL schema 和 functions 以方便存储、取回、更新和查询空间特性的集合。
MDSYS提供了地理数据的类型
2 Object-Relational Model
SDO_GEOMETRY
支持arcs, circles, compound polygons, compound line strings, and optimized rectangles
3 Spatial Data
例如交通图
4 Geometry Types
Points、point clusters
Line strings
n-point polygons
Arc line strings
Arc polygons
Compound polygons
Compound line strings
Circles
Optimized rectangles
5 Data Model
elements, geometries, layers 所组成的等级结构。
element: points, line strings, polygons
Geometry: An example of a geometry might describe the buildable land in a town.
Layer: A layer is a collection of geometries having the same attribute set.
Coordinate System: Cartesian coordinates, Geodetic coordinates, Projected coordinates, Local coordinates
Tolerance: Tolerance is used to associate a level of precision with spatial data.
6 Query Model
两级过滤。Primary filter, secondary filter.
7 Indexing of Spatial Data
R-tree index
8 Spatial Relationships and Filtering
SDO_RELATE: 评价拓扑标准 nine-intersection model between points, lines, and polygons (interior, a boundary, and an exterior.)
SDO_WITHIN_DISTANCE: 两个空间对象是否在一个距离范围内。
SDO_NN: 离某个空间对象最近的一个对象
9 Spatial Operators, Procedures, Functions
Spatial operators: such as SDO_FILTER and SDO_RELATE
Spatial procedures and functions: SDO_GEOM, SDO_CS, and SDO_LRS.
10 Spatial Aggregate Functions
SDO_AGGR_MBR
SDO_AGGR_UNION
11 Geocoding
一个从地址表中转换到标准地址、位置等的过程。
12 Spatial Java Application Programming Interface
oracle.spatial.geometry
oracle.spatial.network
oracle.spatial.topo
oracle.spatial.util
13 MDDATA Schema
14 Performance and Tuning Information
http://www.oracle.com/technology/products/spatial/
15 Open Geospatial Consortium (OGC) Conformance
Features Specification 1.1.1
SQL92
16 Spatial Release (Version) Number
SELECT SDO_VERSION FROM DUAL;
17 Spatial Application Hardware Requirement Considerations
18 Spatial Error Messages
Oracle Database Error Messages
19 Spatial Examples
readgeom.c and readgeom.h
writegeom.c and writegeom.h
发表评论
-
利用Oracle Spatial求几何对象的长度和面积
2010-04-28 16:38 2380http://www.cnblogs.com/clarkzhe ... -
ogr2ogr 参数大全
2010-03-31 08:15 5543http://www.gdal.org/ogr2ogr.htm ... -
数据转换系列二--shp格式数据导入PostGIS数据库之ogr2ogr命令
2010-03-31 08:12 5968http://andrewzhuyl.spaces.live. ... -
数据转换系列一--e00格式向shp(shapefile)转换
2010-03-31 08:11 5080数据转换系列一--e00格式向shp(shapefile)转换 ... -
基于Oracle Spatial的空间分析性能优化研究
2010-03-29 08:13 1342http://www.lw23.com/pdf_5c5f0e6 ... -
Oracle Spatial 和 ArcSDE区别与联系
2010-03-29 08:09 7346一、ORACLE SPATIAL概述 ORAC ... -
浅谈Oracle Spatial几何结构
2010-03-29 08:06 1293http://database.51cto.com/art/2 ... -
Oracle Spatial创建空间索引时遇到的ORA-29855问题
2009-09-16 10:18 3959过程描述: 执行的SQL语句:CREATE INDEX G ... -
Oracle Spatial 空间分析操作函数——SDO_WITHIN_DISTANCE
2009-09-16 10:16 7775SDO_GEOM.SDO_WITHIN_DISTANCE(sd ... -
Oracle Spatial 空间分析操作函数——SDO_GEOM.SDO_NN
2009-09-16 10:16 5626SDO_NN( sdo_Geometry1, sdo_Geom ... -
Oracle Spatial 空间分析操作函数——SDO_GEOM.RELATE
2009-09-16 10:15 9070http://gis8.blog.sohu.com/78072 ... -
选择矩形框内的空间对象
2009-04-16 15:25 1259select * from well t WHERE ... -
GIS中的坐标
2009-04-16 13:36 2344地图是用坐标来描述的,而坐标又是如何确定的呢?地球是一个形状不 ... -
网格索引
2009-04-16 13:34 1763http://blog.csdn.net/sjzwl/arch ... -
四叉树索引
2009-04-16 13:32 2096http://blog.csdn.net/sjzwl/arch ... -
空间索引
2009-04-16 13:27 1307http://blog.csdn.net/sjzwl/arch ... -
空间分析的基础--数据
2009-04-16 11:25 1110数据是信息化的基础,空间分析是GIS核心技术之一,深层次的数据 ... -
将 Oracle Spatial 与geoserver, Google Earth 集成
2009-04-16 11:08 3992将 Oracle Spatial 与 Google Earth ... -
执行基于位置的分析
2009-04-16 11:00 1216http://www.oracle.com/technolog ... -
Oracle Spatial User's Guide and Reference
2009-04-16 10:44 972http://download.oracle.com/docs ...
相关推荐
- **Oracle Spatial:**Oracle数据库的一个扩展模块,专门用于存储和管理空间数据。 **3.2 连接过程** 1. **环境准备:** - 确保安装有支持Oracle Spatial的Oracle数据库版本。 - 安装并配置ArcGIS环境,包括...
Oracle Spatial 是 Oracle 数据库的一个组件,专门用于处理和分析地理空间数据。这个组件提供了丰富的功能,包括地理坐标系统的转换、空间查询、空间分析以及地图显示等。在Java开发环境中,Oracle Spatial 提供了...
《Oracle Spatial空间信息管理:Oracle Database 11g》是世界级Oracle Spatial专家Ravi Kothuri、Albert Godfrind和Euro Beinat自力作,旨在向您提供空间信息管理方面的概念知识和实用技能,帮助您成为该领域的专家。...
《Oracle Spatial空间信息管理:Oracle Database 11g》是世界级Oracle Spatial专家Ravi Kothuri、Albert Godfrind和Euro Beinat自力作,旨在向您提供空间信息管理方面的概念知识和实用技能,帮助您成为该领域的专家...
- Oracle Spatial:利用 Oracle 数据库的强大性能优势,在数据处理速度上具有较高效率。 - ArcSDE:通过优化的数据访问机制和缓存策略,在高并发场景下表现优秀。 - **多用户支持** - Oracle Spatial:支持多...
Oracle Spatial 是Oracle数据库的一个扩展模块,专门用于处理和分析地理空间数据。这个用户指南和参考文档是学习和掌握Oracle Spatial技术的重要资源,尽管它是英文版的。以下是对Oracle Spatial的一些核心知识点的...
Oracle Spatial 是 Oracle 数据库的一个重要组件,专门用于处理地理空间数据和执行空间分析。这个官方文档是英文版,对于非英语母语者来说可能阅读起来有些困难,但它是理解 Oracle Spatial 功能和操作的关键资源。...
[Packt Publishing] Oracle Spatial 应用扩展 (英文版) [Packt Publishing] Applying and Extending Oracle Spatial (E-Book) ☆ 图书概要:☆ Overview Understand how to develop Oracle Spatial data models ...
### Oracle Spatial9i介绍 #### 一、Oracle Spatial9i概览 Oracle Spatial9i是Oracle数据库系统中的一项强大功能,专门用于处理地理信息系统(GIS)数据。它为GIS相关开发人员提供了一套完整的工具集,使他们能够...
根据提供的文件信息,我们可以归纳出以下关于Oracle Spatial的相关知识点: ### 一、Oracle Spatial简介 - **Oracle Spatial** 是Oracle数据库系统中一个用于管理和处理地理空间数据的功能组件。 - 它能够帮助用户...
"使用Oracle Spatial对ArcSDE中的SDO_GEOMETRY类型数据进行空间操作" Oracle Spatial 是 Oracle 数据库中的一个空间数据处理组件,用于存储、管理和操作空间数据。ArcSDE 是一个空间数据引擎,用于存储和管理大规模...
《Oracle Spatial Developer's Guide》是Oracle公司为开发者提供的一份详尽指南,专注于其空间数据库解决方案——Oracle Spatial。Oracle Spatial是Oracle数据库的一个扩展模块,它提供了处理地理空间数据的能力,...
《Pro Oracle Spatial for Oracle Database 11g》是一本深入探讨Oracle Spatial特性的专业书籍,专为Oracle数据库11g用户设计。Oracle Spatial是Oracle数据库的一个扩展模块,它提供了强大的空间数据管理和分析功能...
Oracle Spatial是Oracle数据库的一个扩展模块,专门用于处理地理空间数据,提供高级的空间查询、分析和可视化功能。在“Oracle Spatial学生指导”中,你将深入理解如何利用这个强大的工具进行地理信息系统(GIS)的...
Oracle Spatial是Oracle数据库的一个扩展模块,专为处理地理空间数据而设计。它提供了对空间对象的存储、查询、分析和可视化的能力,使得开发者能够构建基于地理位置的应用程序。本用户指南详细介绍了如何有效地利用...
【Oracle和Oracle Spatial简介】 Oracle是一家全球知名的信息管理软件提供商,自1977年成立以来,已成为全球最大的关系型数据库管理系统供应商。Oracle是第一个商业化的关系型数据库系统,并且是最早在其所有产品中...
"基于Oracle Spatial的矢量空间数据管理机制" Oracle Spatial是一种空间数据库管理系统,可以管理和存储矢量空间数据。该系统基于Oracle数据库管理系统,提供了一个对象关系模型来存储和管理空间几何实体。 ...
标题 "oracleSpatial java Api lib" 指的是一个包含了 Oracle Spatial 的 Java 库,这些库文件主要服务于在 Oracle 10g 数据库环境中进行地理空间数据操作的应用程序。这个库可能包含了一系列的类和方法,用于创建、...
Oracle Spatial 11g GeoRaster Oracle Spatial 11g GeoRaster Oracle Spatial 11g GeoRaster Oracle Spatial 11g GeoRaster
在“oraclespatial.pdf”中,你可能会找到以下关键知识点: 1. **Oracle Spatial 概述**:这部分会介绍 Oracle Spatial 的核心功能,包括支持的空间数据类型、空间索引和查询语言(如 SQL 函数和操作符)。 2. **...