Questions tagged «ecognition»

1
使用LIDAR DTM(1m分辨率)提取沟渠
我正在尝试使用eCognition软件使用LIDAR DTM提取沟渠,但实际上我遇到了困难,因为我基于我的工作流“使用湿地中的LiDAR衍生的DTM进行沟渠的网络提取和水文地貌表征”的论文没有。 t具有在电子认知中输入的详细规则集。 我只想问,在座的你们当中谁有一个想法,如何在农业景观或城市环境中抽取沟渠? 或者,如果您从未做过这样的工作或项目,还有谁可能有一个聪明的主意,使我能够提取沟渠。

6
如何以编程方式检查形状的数量=表记录的数量?
我有大约1000个shapefile已损坏(请参阅附件的错误消息)。shapefile是从eCognition Developer 8生成的。有一个脚本工具似乎可以在将shapefile识别为损坏后对其进行修复。 编辑: 我想创建一个快速脚本来遍历我所有的shapefile,并检查形状的数量是否与表记录匹配。我可以使用以下方法对表记录进行计数: # Name: fcCount.py # Purpose: calculate the number of features in a featureclass # Import system modules import arcpy from arcpy import env env.workspace = "C:/data" Sample = "MyShp.shp" result_dbf = int(arcpy.GetCount_management(Sample).getOutput(0)) print result_dbf 我最终想创建某种逻辑检查,例如: if result_dbf = result_shp: pass else: print "There is a …

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.