来自Model Derivative的SQLite数据库中属性表中的数据类型

pokxtpni  于 2023-06-23  发布在  SQLite
关注(0)|答案(1)|浏览(152)

是否有任何文档说明模型导数的{urn}/manifest端点返回的 SQLite 模型属性数据库中_objects_attr表的data_type列中的值的含义?如下所示,data_type列中的值为201112_objects_attr table
我试图从 SQLite 模型属性数据库中找出特定属性的数据类型,但找不到任何有意义的答案。

68de4m5k

68de4m5k1#

请选择如何获取属性类型。
顺便说一句,你能和我们分享一下你使用Sqlite属性数据库的用例吗?如果它不能公开共享,请考虑发送到aps (DOT) help (AT) autodesk (DOT) com,我们的支持渠道。

enum AttributeType {

  /* Numeric types */
  Unknown                 = 0,
    Boolean,
    Integer,
    Double,

    /* Special types */
    BLOB                    = 10,
    DbKey, /* reprensets a link to another object in the database, using database internal ID */

    /* String types */
    String                  = 20,
    LocalizableString,
    DateTime,       /* ISO 8601 date */
    GeoLocation,    /* LatLonHeight - ISO6709 Annex H string, e.g: "+27.5916+086.5640+8850/" for Mount Everest */
    Position        /* "x y z w" space separated string representing vector with 2,3 or 4 elements*/
};

相关问题