在GeoDjango上剥离Z维度(强制2D几何)

时间:2016-03-07 18:49:48

标签: django gis postgis geodjango geos

在我的项目中,我需要从 shapefile 中导入一些几何体。

其中一些是MULTIPOLYGON Z类型,但所有Z坐标都是0值。

当我尝试保存几何体时,我收到错误:

  

"几何具有Z维度,但列不具有"

剥离Z维度的最佳方法是什么?

我的代码:

ds = DataSource(file_path, encoding='ISO-8859-1')
layers = ds[0]

#need something HERE to coerce geometry to 2D

obj=MyModel(geometry=GEOSGeometry(layers[0].geom.hex))
obj.save()

2 个答案:

答案 0 :(得分:1)

感谢您回复,Mike T.

问题是我需要使用GeoDjango framework进行操作,而无需直接访问 Postgis数据库

实际上,经过努力,我找到了解决方案。我需要使用OGRGeometry对象中的.clone()方法。现在,我可以更改coord_dim属性。如果我在原始对象中更改coord_dim,则不会发生任何事情。

这是我的代码:

ds = DataSource(file_path, encoding='ISO-8859-1')
layers = ds[0]

#HERE IS THE TRICK
new_layer = layers[0].geom.clone() 
new_layer.coord_dim = 2

obj=MyModel(geometry=GEOSGeometry(layers[0].geom.hex))
obj.save()

答案 1 :(得分:0)

如果您具有SQL访问权限,则可以使用ST_Force2D (or ST_Force_2D for older versions)来获取此信息。

您还可以通过修改类型来更正源表,例如:

[Files]
Source: "MyProg.exe"; DestDir: "{app}"
Source: "MyProg.exe"; DestDir: "d:\destination1"
Source: "MyProg.exe"; DestDir: "d:\destination2"
Source: "MyProg.chm"; DestDir: "{app}"
Source: "MyProg.chm"; DestDir: "d:\destination1"
Source: "MyProg.chm"; DestDir: "d:\destination2"