You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
question 1:
var reader= new DbaseFileReader(file,encoding);
throw an error and that the object not instance ;
question 2:
for example code;
while (reader.Read())
{
var f = new Feature() { Geometry = reader.Geometry };
f.Attributes = new AttributesTable();
int num = reader.DbaseHeader.NumFields;
for (int i = 0; i < num; ++i)
{
_name = reader.DbaseHeader.Fields[i].Name;
object val = reader.GetValue(i+1);//here is bug,attrbiute table not match column name index
}
I would like to remind you that the development of this project has been discontinued and will be no longer maintained. Please consider NetTopologySuite.IO.Esri as a replacement. It contains rewritten logic for dBase reader. If the problem still exist, submit an issue directly in the new project, please.
question 1:
var reader= new DbaseFileReader(file,encoding);
throw an error and that the object not instance ;
question 2:
for example code;
while (reader.Read())
{
var f = new Feature() { Geometry = reader.Geometry };
f.Attributes = new AttributesTable();
int num = reader.DbaseHeader.NumFields;
};
question 3:
ShapefileDataWriter can't setting default encoding
The text was updated successfully, but these errors were encountered: