Thematic multivariate visualization (3D)

This device does not support 3D.

View the system requirements for more information.

This sample uses the recorded locations of hurricanes to demonstrate how to visualize multiple data attributes in a single renderer using 3D symbols in a SceneView. In this case a PointSymbol3D is used in conjunction with a cone primitive in an ObjectSymbol3DLayer to symbolize wind speed and pressure.

color is used to visualize atmospheric pressure and the height of each cone indicates the windspeed in knots.

var renderer = new SimpleRenderer({
  symbol: new PointSymbol3D({  // symbol type required for rendering point geometries
    symbolLayers: [new ObjectSymbol3DLayer({  // renders points as volumetric objects
      resource: { primitive: "cone" },  // renders points as cones
      width: 50000
    })]
  }),
  visualVariables: [{
    type: "color",
    field: "PRESSURE",  // field containing data for atmospheric pressure
    stops: [
      { value: 950, color: "red" },
      { value: 1020, color: "blue" }
    ]
  }, {
    type: "size",
    field: "WINDSPEED",  // field containing data for wind speed
    stops: [
      { value: 20, size: 60000 },
      { value: 150, size: 500000 }
    ],
    axis: "height"
  }, {
    type: "size",
    axis: "width-and-depth",
    useSymbolValue: true  // uses the width value defined in the symbol layer (50,000)
  }]
});

The axis property of the size visual variables indicates how to define the size of each feature. the width-and-depth size variable is used to set a constant diameter to the base of each cone. The height size variable, on the other hand, uses the values of the WINDSPEED field to determine a size between 60 and 500 kilometers in height.

Additional visualization tutorials and samples

Sample search results

TitleSample

There were no match results from your search criteria.