• GEE土地分类——Property ‘B1‘ of feature ‘LE07_066018_20220603‘ is missing.错误


    简介:

    我正在尝试使用我在研究区域中选择的训练点对图像集合中的每个图像进行分类。就背景而言,我正在进行的项目正在研究陆地卫星生命周期内冰川面积的变化以及随后的植被变化。这意味着自 1984 年以来,我正在处理大量图像,每年一到两张。因此,我真的很希望拥有可以映射集合的函数,而不必手动执行此操作。 
    当我将分类器映射到 imageCollection 或采样图像后创建的 featureCollection 时,我在这篇文章的主题行中收到错误。 
    这是一个简化的代码来向您展示我的问题: 

    错误:

    model

    FeatureCollection (Error)

    Property 'B1' of feature 'LE07_066018_20220603' is missing.

    classifiedImages

    ImageCollection (Error)

    Property 'B1' of feature 'LE07_066018_20220603' is missing.

    原始代码:

    1. var wtrshd = ee.FeatureCollection("users/masonbull/nj_wtrshd_ocean"),
    2. classes = ee.FeatureCollection("projects/ee-masonbull/assets/allClasses");
    3. //identify my classes for classification
    4. var classes = ee.FeatureCollection('projects/ee-masonbull/assets/allClasses');
    5. var wtrshd = ee.FeatureCollection('users/masonbull/nj_wtrshd_ocean');
    6. //set start and end date to get imagery
    7. var date_i = '1999-03-01'; // set initial date (YYYY-MM-DD)
    8. var date_f = '2023-06-30'; // Set final date (YYY-MM-DD)
    9. //grab landsat 7 data
    10. var l7 = ee.ImageCollection("LANDSAT/LE07/C02/T1_RT")
    11. .filterDate(date_i, date_f)
    12. .filter(ee.Filter.calendarRange(5, 10, 'month'))
    13. .filterBounds(ee.Geometry.Point(-148.8904089876178,60.362297433254604))
    14. .select('B1', 'B2', 'B3', 'B4', 'B5', 'B7', 'B8')
    15. .filter(ee.Filter.lte('CLOUD_COVER_LAND', 25));
    16. //create a function to clip all of the imagery to the watershed boundaries
    17. var clipping = function(image) {
    18. return image.clip(wtrshd);
    19. };
    20. var l7_clip = l7.map(clipping);
    21. print(l7_clip);
    22. //define bands and a label for the sampling
    23. var l7Bands = ['B1', 'B2', 'B3', 'B4', 'B5', 'B7', 'B8'];
    24. var label = 'Class';
    25. //create a funciton to sample each image in the imageCollection
    26. var sampleCollectionFunc = function(image){
    27. var sampler = image.sampleRegions({
    28. 'collection': classes,
    29. 'properties': [label],
    30. 'scale': 30,
    31. 'geometries': true
    32. });
    33. return sampler;
    34. };
    35. var sampleCollection = l7_clip.map(sampleCollectionFunc);
    36. print('sampleCollection', sampleCollection);
    37. //add random column to sampled images (now featureCollections)
    38. var addRandomFunc = function(FeatureCollection){
    39. var random = ee.FeatureCollection(FeatureCollection).randomColumn({'seed': 0, 'distribution': 'uniform'});
    40. return ee.FeatureCollection(random).set('band_order', ['B1', 'B2', 'B3', 'B4', 'B5', 'B7', 'B8', 'NDSI', 'elevation']);
    41. };
    42. var randomCollection = sampleCollection.map(addRandomFunc);
    43. //create training data from random column
    44. var createTraining = function(in_FeatureCollection){
    45. var filter = ee.FeatureCollection(in_FeatureCollection).filter(ee.Filter.lt('random', 0.8));
    46. return filter;
    47. };
    48. var training = randomCollection.map(createTraining);
    49. //train the classifier, in this case an SVM
    50. var classifierSVM = ee.Classifier.libsvm({'decisionProcedure': 'Voting',
    51. 'svmType': 'C_SVC',
    52. 'kernelType': 'RBF',
    53. 'shrinking': true,
    54. 'gamma': 0.00125,
    55. 'cost': null}).train({
    56. 'features': training,
    57. 'classProperty': label,
    58. 'inputProperties': l7Bands,
    59. 'subsamplingSeed':0
    60. });
    61. //create a function to map over the feature and imageCollections to classify them
    62. var classSamp = function(FeatureCollection){
    63. return ee.FeatureCollection(FeatureCollection).classify(classifierSVM, 'predicted');
    64. };
    65. var model = ee.FeatureCollection(sampleCollection).map(classSamp);
    66. print('model', model);
    67. var imageClassifier = function(image){
    68. return image.classify(classifierSVM, 'predicted');
    69. };
    70. var classVisParams = {min: 0, max: 5, 'palette': ['062EF5', 'E8EAF5', 'E5330C', '0E5B07', '938507', '00EF12']};
    71. var classifiedImages = l7_clip.map(imageClassifier);
    72. print('classifiedImages', classifiedImages);

    解决方案:

    这里主要的问题在于我们给svm分类器的训练数据传参的时候出现了一个问题,也就是,训练数据需要的是一个矢量集合,而这里我们可以看到经过下面代码处理后的并不是一个矢量集合,而是集合中嵌套的集合

    var training = randomCollection.map(createTraining)

    这里我们使用flatten()函数来减少一个嵌套就可以分析了

    函数:

    train(features, classProperty, inputPropertiessubsamplingsubsamplingSeed)

    Trains the classifier on a collection of features, using the specified numeric properties of each feature as training data. The geometry of the features is ignored.

    Arguments:

    this:classifier (Classifier):

    An input classifier.

    features (FeatureCollection):

    The collection to train on.

    classProperty (String):

    The name of the property containing the class value. Each feature must have this property, and its value must be numeric.

    inputProperties (List, default: null):

    The list of property names to include as training data. Each feature must have all these properties, and their values must be numeric. This argument is optional if the input collection contains a 'band_order' property, (as produced by Image.sample).

    subsampling (Float, default: 1):

    An optional subsampling factor, within (0, 1].

    subsamplingSeed (Integer, default: 0):

    A randomization seed to use for subsampling.

    Returns: Classifier

    flatten()

    Flattens collections of collections.

    Arguments:

    this:collection (FeatureCollection):

    The input collection of collections.

    Returns: FeatureCollection

    修改后的代码:

    1. var wtrshd = ee.FeatureCollection("users/masonbull/nj_wtrshd_ocean"),
    2. classes = ee.FeatureCollection("projects/ee-masonbull/assets/allClasses");
    3. //identify my classes for classification
    4. var classes = ee.FeatureCollection('projects/ee-masonbull/assets/allClasses');
    5. var wtrshd = ee.FeatureCollection('users/masonbull/nj_wtrshd_ocean');
    6. //set start and end date to get imagery
    7. var date_i = '1999-03-01'; // set initial date (YYYY-MM-DD)
    8. var date_f = '2023-06-30'; // Set final date (YYY-MM-DD)
    9. //grab landsat 7 data
    10. var l7 = ee.ImageCollection("LANDSAT/LE07/C02/T1_RT")
    11. .filterDate(date_i, date_f)
    12. .filter(ee.Filter.calendarRange(5, 10, 'month'))
    13. .filterBounds(ee.Geometry.Point(-148.8904089876178,60.362297433254604))
    14. .select('B1', 'B2', 'B3', 'B4', 'B5', 'B7', 'B8')
    15. .filter(ee.Filter.lte('CLOUD_COVER_LAND', 25));
    16. //create a function to clip all of the imagery to the watershed boundaries
    17. var clipping = function(image) {
    18. return image.clip(wtrshd);
    19. };
    20. var l7_clip = l7.map(clipping);
    21. print(l7_clip);
    22. //define bands and a label for the sampling
    23. var l7Bands = ['B1', 'B2', 'B3', 'B4', 'B5', 'B7', 'B8'];
    24. var label = 'Class';
    25. //create a funciton to sample each image in the imageCollection
    26. var sampleCollectionFunc = function(image){
    27. var sampler = image.sampleRegions({
    28. 'collection': classes,
    29. 'properties': [label],
    30. 'scale': 30,
    31. 'geometries': true
    32. });
    33. return sampler;
    34. };
    35. var sampleCollection = l7_clip.map(sampleCollectionFunc);
    36. print('sampleCollection', sampleCollection);
    37. //add random column to sampled images (now featureCollections)
    38. var addRandomFunc = function(FeatureCollection){
    39. var random = ee.FeatureCollection(FeatureCollection).randomColumn({'seed': 0, 'distribution': 'uniform'});
    40. return ee.FeatureCollection(random).set('band_order', ['B1', 'B2', 'B3', 'B4', 'B5', 'B7', 'B8', 'NDSI', 'elevation']);
    41. };
    42. var randomCollection = sampleCollection.map(addRandomFunc);
    43. //create training data from random column
    44. var createTraining = function(in_FeatureCollection){
    45. var filter = ee.FeatureCollection(in_FeatureCollection).filter(ee.Filter.lt('random', 0.8));
    46. return filter;
    47. };
    48. var training = randomCollection.map(createTraining).flatten();
    49. //train the classifier, in this case an SVM
    50. var classifierSVM = ee.Classifier.libsvm({'decisionProcedure': 'Voting',
    51. 'svmType': 'C_SVC',
    52. 'kernelType': 'RBF',
    53. 'shrinking': true,
    54. 'gamma': 0.00125,
    55. 'cost': null}).train({
    56. 'features': training,
    57. 'classProperty': label,
    58. 'inputProperties': l7Bands,
    59. 'subsamplingSeed':0
    60. });
    61. //create a function to map over the feature and imageCollections to classify them
    62. var classSamp = function(FeatureCollection){
    63. return ee.FeatureCollection(FeatureCollection).classify(classifierSVM, 'predicted');
    64. };
    65. var model = ee.FeatureCollection(sampleCollection).map(classSamp);
    66. print('model', model.first());
    67. var imageClassifier = function(image){
    68. return image.classify(classifierSVM, 'predicted');
    69. };
    70. var classVisParams = {min: 0, max: 5, 'palette': ['062EF5', 'E8EAF5', 'E5330C', '0E5B07', '938507', '00EF12']};
    71. var classifiedImages = l7_clip.map(imageClassifier);
    72. print('classifiedImages', classifiedImages.first());

    额外问题

    除了上面的问题外,还会出现超限的问题:

    model

    FeatureCollection (Error)

    User memory limit exceeded.

    classifiedImages

    ImageCollection (Error)

    User memory limit exceeded.

     出现上面问题的时候我们就不要在云端通过打印的方式来进行了,直接可以通过导出数据的方式来实现影像分类后的结果。

  • 相关阅读:
    Tmux:终端复用器的基本使用(二)
    TypeScript基本信息总结
    Echarts图表中formatter的用法
    MySQL数据库高可用
    有用的内置Node.js APIs
    图书管理系统
    3.1 C++高级编程_抽象类_概念
    农业物联网
    2023年【电工(技师)】试题及解析及电工(技师)模拟考试题
    朋友圈营销攻略:定时发送、互动与延迟评论
  • 原文地址:https://blog.csdn.net/qq_31988139/article/details/133523040