- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 PostgreSQL 9.2.4。这是我用来找出一些几何交集结果的表格:
Column | Type | Modifiers
---------------------------------+--------------------------+-----------
id | integer |
full_resolution | character varying(2000) |
full_resolution_path | character varying(256) |
feature_id | text |
full_resolution_initiated_order | character varying(64) |
true_image_feature_footprint_id | integer |
true_image_tile_footprint_id | integer |
full_resolution_time_created | timestamp with time zone |
feature_geom | geometry |
tile_geom | geometry |
现在查询:
create Temp table temp4_test as
select id, ST_Intersects(feature_geom,tile_geom),full_resolution
, full_resolution_path, feature_id, full_resolution_initiated_order
, true_image_feature_footprint_id, true_image_tile_footprint_id
, full_resolution_time_created
from temp3_test;
给我这个错误:
ERROR: GEOSIntersects: TopologyException: side location conflict at -122.42466 47.085999999999999
谁能指出我在这里做错了什么?
最佳答案
我找到了“Martin Davis”的答案in this thread :
This occurs because the geometries are invalid, and the current intersects algorithm used in JTS/GEOS has kittens when invalid geometries are used as input. The core dump thing is unfortunate (and obviously got fixed in later versions).
显然,相同的无效数据在 PostGis v1.5 中导致核心转储,但在 v2.0 中引发异常
关于sql - 错误 : GEOSIntersects: TopologyException: side location conflict,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23068880/
将 turf.intersect 与特定多边形一起使用时,出现以下错误:“TopologyException”“发现 LINESTRING(-0.140733 51.505327、-0.141097
将 turf.intersect 与特定多边形一起使用时,出现以下错误:“TopologyException”“发现 LINESTRING(-0.140733 51.505327、-0.141097
我有 PostgreSQL 9.2.4。这是我用来找出一些几何交集结果的表格: Column | Type
我想了解此错误的含义: Error: ERROR: GEOSUnaryUnion: TopologyException: side location conflict at 509222.064055
我正在尝试强化使用 rgdal 加载到 R 中的形状文件,但出现以下错误: "Error: TopologyException: found non-noded intersection betwee
我收到此异常,但不知道我做错了什么。我使用线性环创建了两个多边形。然后我尝试找到是否相交。我得到这个异常(exception): com.vividsolutions.jts.geom.Topolog
我是一名优秀的程序员,十分优秀!