pg2b3dm

Styling 3D Tiles

There are 2 ways to style 3D Tiles:

1] Client side styling

The 3D Tiles are styled on the client side (in the browser) using the CesiumJS API.

2] Server side styling

The 3D Tiles are styled on the server side (in the database) using a json document.

Client side styling

When using client side styling the 3D Tiles are styled in the client. In CesiumJS there is a 3D Tiles Styling Language. For the specs of 3D Tiles Styling Language see https://github.com/CesiumGS/3d-tiles/tree/main/specification/Styling

Example for styling buildings in a 3D Tileset based on attribute ‘bouwjaar’ in CesiumJS:

   var buildings = new Cesium.Cesium3DTileset({
        url : './buildings/tileset.json'
    });

    buildings.style = new Cesium.Cesium3DTileStyle({
      color: {
        conditions: [
        ["${feature['bouwjaar']} <= 1700", "color('#430719')"],
        ["${feature['bouwjaar']} > 1700", "color('#740320')"],
        ]
      }
    }
  );

Example for showing a subset based on a query (show only buildings with bouwjaar > 1975):

buildings.style.show = "${feature['bouwjaar']} > 1975"

Remember to add attribute bouwjaar with ‘-a bouwjaar’ when creating the 3D Tiles.

Server side styling

When using server side styling the 3D Tiles are styled in the database.

The styling is stored in a json document in a column of type json.

A hex color notation is used for the colors, in the form of #RRGGBBAA. Sample:

Hex code #FF000055 is Color red (r,g,b = 255,0,0) + Alpha = 85

The json document contains the shaders for the 3D Tiles. When the option –shaderscolumn is used, the shaders are read from the column specified in the option.

When the option –shaderscolumn is not used, a default PbrMetallicRoughness shader is used for all triangles in the geometry, with following properties:

R = 255, G = 255, B = 255, A = 1

Metallic factor: 0, Roughness factor: 0.5019608 (128/255)

Alternative option is to specify a shader using the ShadersColumn.

Shaderscolumn is a column of type json. In the json documents the shaders are defined like PbrMetallicRoughness and PbrSpecularGlossiness. Note: PbrSpecularGlossiness is deprecated by Khronos, so advise is to use PbrMetallicRoughness.

JSON Structure

The json must have the following structure:

{
    "EmissiveColors": [list_of_emissivecolors in hex],
    "PbrMetallicRoughness": {
        "BaseColors": [ list_of_basecolors in hex],
        "MetallicRoughness": [list_of_metallic_roughness in hex]
    },
    "PbrSpecularGlossiness": {
        "DiffuseColors": [list_of_diffuse in hex],
        "SpecularGlossiness": [list_of_specular_glossiness in hex]
    }
}

Rules for number of shaders

The number of colors in each list determines how shaders are applied.

  1. Single Shader for All Triangles

If a list contains one color, that color is applied to all triangles.

Example:

update delaware_buildings set simple_shader = 
'{
    "PbrMetallicRoughness": {
        "BaseColors": ["#ff0000"]
    }
}';
  1. One Shader per Inner Geometry

For collection geometry types such as:

The number of shaders should match the number of inner geometries. Each inner geometry receives its corresponding shader.

  1. One Shader per Triangle

The number of shader entries may also match the number of triangles in the generated mesh. In this case, the total number of triangles must be known in advance.

Invalid Shader Counts

If the number of colors is otherwise an exception is thrown.

Example:

Consider a Multipolygon geometry of 2 squares:

MULTIPOLYGON Z(((0 0 0, 0 1 0, 1 1 0, 1 0 0, 0 0 0)),((2 2 0, 2 3 0, 3 3 0, 3 2 0, 2 2 0)))

The number of shaders can be:

{
  "PbrMetallicRoughness": {
    "BaseColors": [
      "#008000"
    ]
  }
}
{
  "PbrMetallicRoughness": {
    "BaseColors": [
      "#008000", 
      "#FF0000"
    ]
  }
}
{
  "PbrMetallicRoughness": {
    "BaseColors": [
        "#008000",
        "#FF0000",
        "#EEC900",
        "#EEC900"
    ]
  }
}

Sql

Sample query in SQL:

ALTER TABLE mytable ADD COLUMN simple_shader json;

update mytable set simple_shader = 
'{
    "PbrMetallicRoughness": {
        "BaseColors": ["#008000", "#008000"]
    }
}';

Samples

Sample for using shader PbrMetallicRoughness with BaseColor for 2 triangles:

{
    "PbrMetallicRoughness": {
        "BaseColors": ["#008000","#008000"]
    }
}

Sample for Specular Glossiness with Diffuse and SpecularGlossiness for 2 triangles :

{
    "PbrSpecularGlossiness": {
        "DiffuseColors": ["#E6008000","#E6008000"],
        "SpecularGlossiness": ["#4D0000ff", "#4D0000ff"]
    }
}

In the hexadecimal values there are 4 numbers (x, y, z, w) available. The following material channels table defines which number should be used for the various shader properties.

Material channels

</tbody> </table> Sample channel conversion: - DiffuseColor in Hex = '#E6008000' Converted to RGBA: (230, 0, 128, 0) So Diffuse Red = 230, Diffuse Green = 0, Diffuse Blue = 128, Alpha = 0 ### AlphaMode It is possible to specify glTF material alphaMode property (see: https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#alpha-coverage) using `--default_alpha_mode` option for all materials. By default it is set to OPAQUE. Other options are BLEND and MASK. When using alphaMode = MASK, the value of option --alpha_cutoff is used (default value 0.5), when alpha is above the alpha_cutoff value a fully opaque material is used, when it below it's drawn fully transparent. Using BLEND mode for all materials might affect rendering performance. When a color has 6 digits (like #RRGGBB) then alphaMode is set to OPAQUE for that material. When a color has 8 digits (like #RRGGBBAA) and AA is equal to 255 (0xFF) and AlphaMode = BLEND then alphaMode is set to OPAQUE for that material. Sample alphaModes OPAQUE, BLEND, MASK (alpha_cutoff = 0.25), MASK (alpha_cutoff = 0.75) on 6 boxes with 0-20-40-60-80-100 alpha value from south to north: image Sample setting alpha mode to BLEND for 50% transparent polygon in Amsterdam: 1] Create polygon table with 1 polygon, shading color #00FF0080 (50% transparent green) ``` CREATE TABLE towns ( id SERIAL PRIMARY KEY, name TEXT, geom GEOMETRY(POLYGONZ, 28992) ); INSERT INTO towns (name, geom) VALUES ( 'amsterdam', ST_GeomFromText( 'POLYGONZ(( 114198.8883 485033.8681 10, 129120.3625 485033.8681 10, 129120.3625 492341.7244 10, 114198.8883 492341.7244 10, 114198.8883 485033.8681 10 ))', 28992 ) ); ALTER TABLE towns ADD COLUMN simple_shader json; update towns set simple_shader = '{ "PbrMetallicRoughness": { "BaseColors": ["#00FF0080"] } }'; ``` Creating 3D Tiles: ``` pg2b3dm -U postgres -d postgres -t towns -c geom --shaderscolumn simple_shader --default_alpha_mode BLEND ``` Result: image ### Remarks - Fallback scenario from SpecularGlossiness to MetallicRoughness shader for clients that do not support SpecularGlossiness is not supported (yet) - Shader 'unlit' is not supported (yet)
Channel Shader Style X Y Z W
Emissive All Red Green Blue
BaseColor Metallic Roughness Red Green Blue Alpha
MetallicRoughness Metallic Roughness Metallic Factor Roughness Factor
Diffuse Specular Glossiness Diffuse Red Diffuse Green Diffuse Blue Alpha
SpecularGlossiness Specular Glossiness Specular Red Specular Green Specular Blue Glossiness