Output configuration

Name

Description

Type

Default value

Required

directory

Output folder where results are stored

string

No

Yes

product_level

Output requested products (dsm, point_cloud, depth_map)

list or string

“dsm”

No

resolution [1]

Output DSM grid step (only for dsm product level)

float

None [1]

No

auxiliary

Selection of additional files in products

dict

See below

No

epsg

EPSG code

int, string

None

No

geoid

Output geoid

bool or string

True

No

save_by_pair

Save output point clouds by pair

bool

False

No

---
output:
  directory: outresults # output to ./outresults
  product_level: # ask for both a dsm and the depth maps
  - dsm
  - depth_map
  geoid: true # a dsm height of 0 should be at the geoid level
{
    "output": {
        "directory": "outresults",
        "product_level": [
            "dsm",
            "depth_map"
        ],
        "geoid": true
    }
}

The product_level attribute defines which product should be produced by CARS. There are three available product type: depth_map, point_cloud and dsm.

A single product can be requested by setting the parameter as string or several products can be requested by providing a list.

This is the default behavior of CARS : a single DSM will be generated from one or several pairs of images.

The smallest configuration can simply contain those inputs.

---
input:
  sensors:
    one: img1.tif
    two: img2.tif
    three: img3.tif
  pairing:
  - - one
    - two
  - - one
    - three
  output:
    directory: out
    product_level: dsm # optional because it is the default value of product_level
{
    "input": {
        "sensors": {
            "one": "img1.tif",
            "two": "img2.tif",
            "three": "img3.tif"
        },
        "pairing": [
            [
                "one",
                "two"
            ],
            [
                "one",
                "three"
            ]
        ],
        "output": {
            "directory": "out",
            "product_level": "dsm"
        }
    }
}

Footnotes