GEE区域统计

影像图斑统计功能实现

主要功能

对SRTM数据的特定范围完成空间统计,输出指定矩形范围内的最大值

代码

// Image.reduceRegion example
//
// Computes a simple reduction over a region of an image.  A reduction
// is any process that takes an arbitrary number of inputs (such as
// all the pixels of an image in a given region) and computes one or
// more fixed outputs.  The result is a dictionary that contains the
// computed values, which in this example is the maximum pixel value
// in the region.

// This example shows how to print the resulting dictionary to the
// console, which is useful when developing and debugging your
// scripts, but in a larger workflow you might instead use the
// Dicitionary.get() function to extract the values you need from the
// dictionary for use as inputs to other functions.

// The input image to reduce, in this case an SRTM elevation map.
var image = ee.Image('CGIAR/SRTM90_V4');

// The region to reduce within.
var poly = ee.Geometry.Rectangle([-109.05, 41, -102.05, 37]);

// Reduce the image within the given region, using a reducer that
// computes the max pixel value.  We also specify the spatial
// resolution at which to perform the computation, in this case 200
// meters.
var max = image.reduceRegion({
  reducer: ee.Reducer.max(),
  geometry: poly,
  scale: 200
});

// Print the result (a Dictionary) to the console.
print(max);

步骤分析

  1. 创建ee对象,获取SRTM数据
  2. 创建ee对象,创建矩形地理要素(两点)
  3. 空间统计
  4. 输出结果

主要方法

  1. ee.Geometry.Rectangle()

Constructs an ee.Geometry describing a rectangular polygon.
For convenience, varargs may be used when all arguments are numbers. This allows creating EPSG:4326 Polygons given exactly four coordinates, e.g. ee.Geometry.Rectangle(minLng, minLat, maxLng, maxLat).
Arguments:
coords (List<Geometry>|List<List<Number>>|List<Number>):
The minimum and maximum corners of the rectangle, as a list of two points each in the format of GeoJSON 'Point' coordinates, or a list of two ee.Geometry describing a point, or a list of four numbers in the order xMin, yMin, xMax, yMax.
proj (Projection, optional):
The projection of this geometry. If unspecified, the default is the projection of the input ee.Geometry, or EPSG:4326 if there are no ee.Geometry inputs.
geodesic (Boolean, optional):
If false, edges are straight in the projection. If true, edges are curved to follow the shortest path on the surface of the Earth. The default is the geodesic state of the inputs, or true if the inputs are numbers.
evenOdd (Boolean, optional):
If true, polygon interiors will be determined by the even/odd rule, where a point is inside if it crosses an odd number of edges to reach a point at infinity. Otherwise polygons use the left- inside rule, where interiors are on the left side of the shell's edges when walking the vertices in the given order. If unspecified, defaults to true.
Returns: Geometry.Rectangle

创建一个ee的地理要素对象,形状为矩形的多边形。为了方便,允许使用两点法创建EPSG:4326投影下的矩形,输入(最小经度,最小纬度,最大经度,最大纬度)。
输入参数:
输入坐标(矩形两点坐标,使用GeoJSON格式的点坐标,或者一个包含两个点的list,或者包含四个值的list,依次为xMin, yMin, xMax, yMax)
投影:(默认为EPSG:4326)
geodesic:
evenOdd:

  1. ee.Image.reduceRegion()
    Apply a reducer to all the pixels in a specific region.
    Either the reducer must have the same number of inputs as the input image has bands, or it must have a single input and will be repeated for each band.
    Returns a dictionary of the reducer's outputs.
    Arguments:
    this:image (Image):
    The image to reduce.
    reducer (Reducer):
    The reducer to apply.
    geometry (Geometry, default: null):
    The region over which to reduce data. Defaults to the footprint of the image's first band.
    scale (Float, default: null):
    A nominal scale in meters of the projection to work in.
    crs (Projection, default: null):
    The projection to work in. If unspecified, the projection of the image's first band is used. If specified in addition to scale, rescaled to the specified scale.
    crsTransform (List, default: null):
    The list of CRS transform values. This is a row-major ordering of the 3x2 transform matrix. This option is mutually exclusive with 'scale', and replaces any transform already set on the projection.
    bestEffort (Boolean, default: false):
    If the polygon would contain too many pixels at the given scale, compute and use a larger scale which would allow the operation to succeed.
    maxPixels (Long, default: 10000000):
    The maximum number of pixels to reduce.
    tileScale (Float, default: 1):
    A scaling factor used to reduce aggregation tile size; using a larger tileScale (e.g. 2 or 4) may enable computations that run out of memory with the default.
    Returns: Dictionary

对指定区域内的所有像素执行一个空间统计。输入的reducer必须与影像波段数相同,或者只输入一个,但是对所有影像波段重复执行。
输入参数:
输入影像对象,ruducer,geomtry(掩膜范围,默认是输入影像第一波段范围),scale,crs,crsTransform,bestEffort,maxPixels,tileScale

  1. ee.Reducer.max()
    Creates a reducer that outputs the maximum value of its (first) input. If numInputs is greater than one, also outputs the corresponding values of the additional inputs.
    Arguments:
    numInputs (Integer, default: 1):
    The number of inputs.
    Returns: Reducer

输出最大值,如果输入的参数大于1,输入对应排序的值

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,591评论 6 501
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,448评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,823评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,204评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,228评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,190评论 1 299
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,078评论 3 418
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,923评论 0 274
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,334评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,550评论 2 333
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,727评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,428评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,022评论 3 326
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,672评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,826评论 1 269
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,734评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,619评论 2 354