Blend renderer

View on GitHubSample viewer app

Blend a hillshade with a raster by specifying the elevation data. The resulting raster looks similar to the original raster, but with some terrain shading, giving it a textured look.

Blend renderer default renderer Edited renderer 1 Edited renderer 2

Use case

Blend renderer can be used to apply a color ramp to a hillshade to emphasize areas of high or low elevation. A Blend renderer can also be used to add a hillshade effect to aerial or satellite imagery, thereby making changes in elevation more visible.

How to use the sample

Tap the bottom button to choose and adjust the altitude, azimuth, slope type and color ramp type settings to update the image.

How it works

  1. Create an AGSRaster object from a raster file.
  2. Create an AGSRasterLayer object from the raster.
  3. Create an AGSBasemap object from the raster layer and set it to the map.
  4. Create another AGSRaster object for elevation from a grayscale raster file.
  5. Create an AGSBlendRenderer object, specifying the elevation raster, color ramp, and other properties.
    • If you specify a non-nil color ramp, use the elevation raster as the base raster in addition to the elevation raster parameter. That way, the color ramp is used instead of the satellite imagery.
  6. Set the blend renderer to the raster layer.

Relevant API

  • AGSBlendRenderer
  • AGSColorRamp
  • AGSRaster
  • AGSRasterLayer

Offline data

This sample uses the Shasta.tif and Shasta_Elevation.tif resources. They are downloaded from ArcGIS Online automatically.

Tags

color ramp, elevation, hillshade, image, raster, raster layer, visualization

Sample Code

BlendRendererSettingsViewController.swiftBlendRendererSettingsViewController.swiftBlendRendererViewController.swift
Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
//
// Copyright 2016 Esri.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//   http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

import UIKit
import ArcGIS

protocol BlendRendererSettingsViewControllerDelegate: AnyObject {
    func blendRendererSettingsViewController(_ blendRendererSettingsViewController: BlendRendererSettingsViewController, selectedAltitude altitude: Double, azimuth: Double, slopeType: AGSSlopeType, colorRampType: AGSPresetColorRampType)
}

class BlendRendererSettingsViewController: UITableViewController {
    @IBOutlet private weak var altitudeSlider: UISlider?
    @IBOutlet private weak var altitudeLabel: UILabel?
    @IBOutlet private weak var azimuthSlider: UISlider?
    @IBOutlet private weak var azimuthLabel: UILabel?
    @IBOutlet private weak var slopeTypeCell: UITableViewCell?
    @IBOutlet private weak var colorRampTypeCell: UITableViewCell?

    weak var delegate: BlendRendererSettingsViewControllerDelegate?

    private let numberFormatter = NumberFormatter()

    var azimuth: Double = 0 {
        didSet {
           updateAzimuthControls()
        }
    }

    private func updateAzimuthControls() {
        azimuthSlider?.value = Float(azimuth)
        azimuthLabel?.text = numberFormatter.string(from: azimuth as NSNumber)
    }

    var altitude: Double = 0 {
        didSet {
            updateAltitudeControls()
        }
    }

    private func updateAltitudeControls() {
        altitudeSlider?.value = Float(altitude)
        altitudeLabel?.text = numberFormatter.string(from: altitude as NSNumber)
    }

    private let slopeTypeLabels = ["None", "Degree", "Percent Rise", "Scaled"]
    var slopeType: AGSSlopeType = .none {
        didSet {
            guard slopeType != oldValue else {
                return
            }
            updateSlopeTypeControls()
        }
    }

    private func updateSlopeTypeControls() {
        slopeTypeCell?.detailTextLabel?.text = slopeTypeLabels[slopeType.rawValue + 1]
    }

    private let colorRampLabels = ["None", "Elevation", "DEMScreen", "DEMLight"]
    var colorRampType: AGSPresetColorRampType = .none {
        didSet {
            guard colorRampType != oldValue else {
                return
            }
            updateColorRampTypeControls()
        }
    }

    private func updateColorRampTypeControls() {
        colorRampTypeCell?.detailTextLabel?.text = colorRampLabels[colorRampType.rawValue + 1]
    }

    override func viewDidLoad() {
        super.viewDidLoad()

        updateAltitudeControls()
        updateAzimuthControls()
        updateSlopeTypeControls()
        updateColorRampTypeControls()
    }

    // MARK: - Actions

    @IBAction func azimuthSliderValueChanged(_ slider: UISlider) {
        azimuth = Double(slider.value)
        blendRendererParametersChanged()
    }

    @IBAction func altitudeSliderValueChanged(_ slider: UISlider) {
        altitude = Double(slider.value)
        blendRendererParametersChanged()
    }

    private func blendRendererParametersChanged() {
        delegate?.blendRendererSettingsViewController(self, selectedAltitude: altitude, azimuth: azimuth, slopeType: slopeType, colorRampType: colorRampType)
    }

    // UITableViewDelegate

    override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        let cell = tableView.cellForRow(at: indexPath)
        if cell == slopeTypeCell {
            let optionsViewController = OptionsTableViewController(labels: slopeTypeLabels, selectedIndex: slopeType.rawValue + 1) { (newIndex) in
                self.slopeType = AGSSlopeType(rawValue: newIndex - 1)!
                self.blendRendererParametersChanged()
            }
            optionsViewController.title = "Slope Type"
            show(optionsViewController, sender: self)
        } else if cell == colorRampTypeCell {
            let optionsViewController = OptionsTableViewController(labels: colorRampLabels, selectedIndex: colorRampType.rawValue + 1) { (newIndex) in
                self.colorRampType = AGSPresetColorRampType(rawValue: newIndex - 1)!
                self.blendRendererParametersChanged()
            }
            optionsViewController.title = "Color Ramp Type"
            show(optionsViewController, sender: self)
        }
    }
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.