Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
KatKatKateryna committed Jun 29, 2024
1 parent 21ffff5 commit 68c0746
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static class GISAttributeFieldType
public const string DATEONLY = "DateOnly";
public const string TIMEONLY = "TimeOnly";
public const string TIMESTAMPOFFSET = "TimeStampOffset";
public const string BOOL = "Bool";
public const string BOOL = "Bool"; // not supported in ArcGIS, only in QGIS

public static string FieldTypeToSpeckle(FieldType fieldType)
{
Expand Down Expand Up @@ -56,7 +56,7 @@ public static FieldType FieldTypeToNative(object fieldType)
DATEONLY => FieldType.DateOnly,
TIMEONLY => FieldType.TimeOnly,
TIMESTAMPOFFSET => FieldType.String, // sending and receiving as stings
BOOL => FieldType.String,
BOOL => FieldType.String, // not supported in ArcGIS, converting to string
_ => throw new ArgumentOutOfRangeException(nameof(fieldType)),
};
}
Expand Down

0 comments on commit 68c0746

Please sign in to comment.