MEASUREMENT
COORDINATE MUTATION
TRANSFORMATION
FEATURE_CONVERSION
MISC
HELPER
RANDOM
GRIDS
AGGREGATION
META
ASSERTIONS
BOOLEANS
UNIT CONVERSION
DATA
JOINS
CLASSIFICATION

containsNumber

在指定的属性中查找是否包含数字。

参数

  • geojson (GeoJSON对象) - 输入的GeoJSON对象。
  • propertyName (字符串) - 要搜索的属性名称。

返回值

  • (布尔值) - 如果输入的属性中包含数字,则返回 true,否则返回 false

异常

  • MissingRequiredParameter - 缺少必需的参数。

示例

const point = turf.point([-77.034084142948, 38.909671288923]);
point.properties = {name: 'Washington Monument'};
const hasNumber = turf.containsNumber(point, 'name');
console.log(hasNumber); // output: false

注意事项

  • 这个函数只会搜索字符串中的数字,它不会将属性值转换成数字。