ee.Algorithms.Terrain
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
지형 DEM에서 경사도, 경사면, 단순한 음영을 계산합니다.
미터 단위로 측정된 단일 고도 밴드를 포함하는 이미지 또는 밴드가 두 개 이상인 경우 'elevation'이라는 이름의 밴드를 포함하는 이미지를 예상합니다. 시각화를 위해 'slope' 및 'aspect'(도 단위로 측정)라는 이름의 출력 밴드와 'hillshade'라는 이름의 부호 없는 바이트 출력 밴드를 추가합니다. 다른 모든 밴드와 메타데이터는 입력 이미지에서 복사됩니다. 로컬 기울기는 각 픽셀의 4방향 연결된 이웃을 사용하여 계산되므로 이미지의 가장자리에 누락된 값이 발생합니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2026-04-20(UTC)"],[],["The function processes an elevation image (in meters) to compute and add three new bands: 'slope' (degrees), 'aspect' (degrees), and 'hillshade' (unsigned byte). It calculates the local gradient using the four directly connected neighboring pixels. Missing values will occur around image edges due to the four-connected neighbor method. The input image's other bands and metadata are preserved. The function takes an elevation image as input and returns a processed image.\n"]]