arcgis10 如何设置字段可以为空
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了arcgis10 如何设置字段可以为空相关的知识,希望对你有一定的参考价值。
在gis10中,总是有些属性表添加字段失败,后来发现能成功添加字段的属性表,在添加字段时会自动有个栏目叫“允许空值 是”(如下图),而不能添加字段的则没有这个栏目,我在网上找了找可能我遇到的是这网址说过的问题http://support.esrichina-bj.cn/2008/0505/821.html
上面说设置字段可以为空就行了,可是 我不会设置!!本人菜鸟找遍了也没找到在哪里设置,求大神不吝赐教!!!
在你要素类的属性总添加字段!
参考技术A 兄弟我也遇到这种情况了,请问你解决了吗?如何设置一个空结构,所有字段为空,在火花中为空
【中文标题】如何设置一个空结构,所有字段为空,在火花中为空【英文标题】:How to set an empty struct with all fields null, null in spark 【发布时间】:2022-01-18 02:39:11 【问题描述】:我有这个数据框:
+----+--------------------------------+
|name|dates |
+----+--------------------------------+
|A |[[1994, 12, 11], [,,]] |
|B |[[1994, 12, 11], [1994, 12, 15]]|
+----+--------------------------------+
使用此架构:
root
|-- name: string (nullable = true)
|-- dates: struct (nullable = true)
| |-- start_date: struct (nullable = true)
| | |-- year: integer (nullable = true)
| | |-- month: integer (nullable = true)
| | |-- day: integer (nullable = true)
| |-- end_date: struct (nullable = true)
| | |-- year: integer (nullable = true)
| | |-- month: integer (nullable = true)
| | |-- day: integer (nullable = true)
我想把它作为输出
当end_date
内的所有字段为null时,设置结束日期为null
+----+--------------------------------+
|name|dates |
+----+--------------------------------+
|A |[[1994, 12, 11],] |
|B |[[1994, 12, 11], [1994, 12, 15]]|
+----+--------------------------------+
【问题讨论】:
【参考方案1】:您可以通过从现有属性重新创建新结构来更新结构列dates
,并使用when
表达式检查所有end_dates
属性是否为空:
val df2 = df.withColumn(
"dates",
struct(
col("dates.start_date"), // keep start_date
when(
Seq("year", "month", "day")
.map(x => col(s"dates.end_date.$x").isNull)
.reduce(_ and _),
lit(null).cast("struct<year:int,month:int,day:int>")
).otherwise(col("dates.end_date")).alias("end_date") // set end_date to null if all attr are null
)
)
df2.show(false)
//+----+--------------------------------+
//|name|dates |
//+----+--------------------------------+
//|A |[[1994, 12, 11],] |
//|B |[[1994, 12, 11], [1994, 12, 25]]|
//+----+--------------------------------+
【讨论】:
以上是关于arcgis10 如何设置字段可以为空的主要内容,如果未能解决你的问题,请参考以下文章