我想导出一个基于shp文件的NetLogo模拟输出到栅格,使用:
to export-GIS
let patches_out nobody
ask one-of patches [set patches_out gis:patch-dataset pcolor]
gis:store-dataset patches_out (word "usos" ".asc")
end但它会输出:
Extension exception: you must define a coordinate transformation before using any other GIS features
error while patch 17 -10 running GIS:PATCH-DATASET
called by procedure EXPORT-GIS
called by Button 'export-GIS'如何定义此坐标转换?
发布于 2019-06-21 13:28:55
解决了在设置阶段添加以下行的问题:
set envelope gis:load-dataset "data/land.shp"
gis:set-world-envelope gis:envelope-of envelopehttps://stackoverflow.com/questions/56671443
复制相似问题