ee.FeatureCollection.aside

이 객체를 첫 번째 인수로 전달하고 자체를 반환하는 함수를 호출합니다. 디버깅 시 편리합니다.

var c = ee.ImageCollection('foo').aside(print)

.filterDate('2001-01-01', '2002-01-01').aside(print, 'In 2001')

.filterBounds(geom).aside(print, 'In region')

.aside(Map.addLayer, {min: 0, max: 142}, 'Filtered')

.select('a', 'b');

연결을 위해 동일한 객체를 반환합니다.

사용반환 값
FeatureCollection.aside(func, var_args)ComputedObject
인수유형세부정보
다음과 같은 경우: computedobjectComputedObjectComputedObject 인스턴스입니다.
func함수호출할 함수입니다.
var_argsVarArgs<Object>함수에 전달할 추가 인수입니다.

코드 편집기 (JavaScript)

// Get a FeatureCollection of power plants in Belgium. Use "aside" to print the
// collection and display it on the Map.
var fc = ee.FeatureCollection('WRI/GPPD/power_plants')
             .filter('country_lg == "Belgium"')
             .aside(print, 'Power plants in Belgium')
             .aside(Map.centerObject, 7)
             .aside(Map.addLayer, {color: 'blue'}, 'Power plants');