Dotspatial不一致类型转换

时间:2017-02-24 00:18:22

标签: c# types dotspatial

使用Dotspatial(1.9)库时,我发现了一个奇怪的现象。

当我将shapefile加载到ArcMap并查看shapefile的数据类型时,我将其视为双重类型:

enter image description here

当我使用Dotspatial库加载这个相同的shapefile时:

OpenFileDialog od = new OpenFileDialog();
od.Filter = "Shapefiles (*.shp)|*.shp";
if (od.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
     IFeatureSet feature_ = FeatureSet.Open(od.FileName);
     MessageBox.Show(feature_.DataTable.Columns["Northing"].DataType.ToString());    
 }

结果只有一个:

enter image description here

当使用点空间库中的Save()时,这会导致数据的一些主要截断。有谁知道为什么会这样或者有解决方法?

1 个答案:

答案 0 :(得分:0)

最近在版本2.0中修复了此问题。