在 GeoDMS 中,如何将字符串坐标转换为 dpoint?
In GeoDMS, how can I transform string coordinates to dpoint?
我在 GeoDMS GUI 7.177 版中将字符串格式的坐标转换为 dpoint 格式时遇到问题。
我正在尝试直接从 Kadaster 将 BAG(basisadministratie gemeenten,荷兰市政当局,一个巨大的地理文件)读入 GeoDMS。它首先从 .xml 转换为 .csv,然后将建筑物的形状转换为与 Vesta 格式看似相同的格式,例如:
{5:{249943.307,593511.272}{249948.555,593512.791}{249946.234,593520.809}{249940.987,593519.29}{249943.307,593511.272}}
我能够将转换后的 CSV 文件读取到 GeoDMS 中,然后还能够将其作为字符串写入 .dmsdata 格式以提高速度,然后从那里再次将其加载到 GeoDMS 中。但是,当想要将字符串转换为坐标时,出现错误
DPoint Error: Cannot find operator for these arguments:
arg1 of type DataItem<String>
Possible cause: argument type mismatch. Check the types of the used arguments.
我的 GeoDMS 代码看起来像
unit<uint32> altBag:
storageName = 'c:/zandbak/output/bagPND.fss'
, storageReadOnly = 'true'
, dialogType = 'map'
, dialogData = 'geometry'
{
attribute <string> pandGeometrie; // works and looks good
attribute <dpoint> geometry := dpoint(pandGeometrie); // doesn't work, error above
attribute <rdc> geometry2 := pandGeometrie[rdc]; // doesn't work either
}
有办法吗?或者是否不支持字符串到 dpoint(或其他类型的点),我应该先将 CSV 转换为形状文件吗?
你可以试试这个:
attribute<dpoint> Geometry(poly) := dpolygon(GeometryStr);
如果需要特定投影:
attribute<rdc_meter> Geometry2(poly) := value(GeometryStr, rdc_meter);
我在 GeoDMS GUI 7.177 版中将字符串格式的坐标转换为 dpoint 格式时遇到问题。
我正在尝试直接从 Kadaster 将 BAG(basisadministratie gemeenten,荷兰市政当局,一个巨大的地理文件)读入 GeoDMS。它首先从 .xml 转换为 .csv,然后将建筑物的形状转换为与 Vesta 格式看似相同的格式,例如:
{5:{249943.307,593511.272}{249948.555,593512.791}{249946.234,593520.809}{249940.987,593519.29}{249943.307,593511.272}}
我能够将转换后的 CSV 文件读取到 GeoDMS 中,然后还能够将其作为字符串写入 .dmsdata 格式以提高速度,然后从那里再次将其加载到 GeoDMS 中。但是,当想要将字符串转换为坐标时,出现错误
DPoint Error: Cannot find operator for these arguments:
arg1 of type DataItem<String>
Possible cause: argument type mismatch. Check the types of the used arguments.
我的 GeoDMS 代码看起来像
unit<uint32> altBag:
storageName = 'c:/zandbak/output/bagPND.fss'
, storageReadOnly = 'true'
, dialogType = 'map'
, dialogData = 'geometry'
{
attribute <string> pandGeometrie; // works and looks good
attribute <dpoint> geometry := dpoint(pandGeometrie); // doesn't work, error above
attribute <rdc> geometry2 := pandGeometrie[rdc]; // doesn't work either
}
有办法吗?或者是否不支持字符串到 dpoint(或其他类型的点),我应该先将 CSV 转换为形状文件吗?
你可以试试这个:
attribute<dpoint> Geometry(poly) := dpolygon(GeometryStr);
如果需要特定投影:
attribute<rdc_meter> Geometry2(poly) := value(GeometryStr, rdc_meter);