Skip to main content
JSON Manual Created Edited

Traffic Line Lanes - China

Input URI

{base url} + db/LLANch



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "LLANCH": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "COMMON": {
                "description": "Common",
                "type": "object",
                "properties": {
                    "LL_NAME": {
                        "description": "NameofLineLane",
                        "type": "string"
                    },
                    "LOAD_DIST": {
                        "description": "LoadDistribution",
                        "type": "string"
                    },
                    "GROUP_NAME": {
                        "description": "NameofLoadGroup",
                        "type": "string"
                    },
                    "SKEW_START": {
                        "description": "SkewStart",
                        "type": "number"
                    },
                    "SKEW_END": {
                        "description": "SkewEnd",
                        "type": "number"
                    },
                    "MOVING": {
                        "description": "MovingDirection",
                        "type": "string"
                    },
                    "WHEEL_SPACE": {
                        "description": "WheelSpace",
                        "type": "number"
                    },
                    "WIDTH": {
                        "description": "Width",
                        "type": "number"
                    },
                    "OPT_AUTO_LANE": {
                        "description": "AutoLaneOptimize",
                        "type": "boolean"
                    },
                    "ALLOW_WIDTH": {
                        "description": "AllowWidth",
                        "type": "number"
                    }
                }
            },
            "LANE_ITEMS": {
                "description": "LaneData(China)",
                "type": "array",
                "items": {
                    "type": "object",
                    "properties": {
                        "ELEM": {
                            "description": "KeyElement",
                            "type": "integer"
                        },
                        "ECC": {
                            "description": "Eccentricity",
                            "type": "number"
                        },
                        "SPAN": {
                            "description": "Span",
                            "type": "number"
                        },
                        "SPAN_START": {
                            "description": "SpanStart",
                            "type": "boolean"
                        },
                        "SCALE_FACTOR": {
                            "description": "ScaleFactor",
                            "type": "number"
                        }
                    }
                }
            },
            "SPECIAL_LANE_ITEMS": {
                "description": "Usedonlywhenimporting",
                "type": "array",
                "items": {
                    "type": "object",
                    "properties": {
                        "ELEMS": {
                            "description": "KeyElements",
                            "type": "array",
                            "items": {
                                "type": "integer"
                            }
                        },
                        "ECC": {
                            "description": "Eccentricity",
                            "type": "number"
                        },
                        "SPAN": {
                            "description": "Span",
                            "type": "number"
                        },
                        "SCALE_FACTOR": {
                            "description": "ScaleFactor",
                            "type": "number"
                        },
                        "SPAN_START": {
                            "description": "SpanStart",
                            "type": "boolean"
                        },
                        "SPAN_START_NO_LIST": {
                            "description": "SpanStartNo",
                            "type": "array",
                            "items": {
                                "type": "integer"
                            }
                        }
                    }
                }
            }
        }
    }
}


Examples

Traffic Line Lanes

{
    "Assign": {
        "1": {
            "COMMON": {
                "LL_NAME": "LL_01",
                "LOAD_DIST": "LANE",
                "GROUP_NAME": "",
                "SKEW_START": 0,
                "SKEW_END": 0,
                "MOVING": "BOTH",
                "WHEEL_SPACE": 1.8,
                "WIDTH": 3,
                "OPT_AUTO_LANE": true,
                "ALLOW_WIDTH": 3
            },
            "LANE_ITEMS": [
                {
                    "ELEM": 1,
                    "ECC": -1.5,
                    "SPAN": 12,
                    "SPAN_START": true,
                    "SCALE_FACTOR": 1.1
                },
                {
                    "ELEM": 2,
                    "ECC": -1.5,
                    "SPAN": 12,
                    "SPAN_START": true,
                    "SCALE_FACTOR": 1.1
                },
                {
                    "ELEM": 3,
                    "ECC": -1.5,
                    "SPAN": 12,
                    "SPAN_START": true,
                    "SCALE_FACTOR": 1.1
                }
            ]
        },
        "2": {
            "COMMON": {
                "LL_NAME": "LL_02",
                "LOAD_DIST": "CROSS",
                "GROUP_NAME": "CrossBeam",
                "SKEW_START": 10,
                "SKEW_END": 15,
                "MOVING": "BACKWARD",
                "WHEEL_SPACE": 1.8,
                "WIDTH": 3,
                "OPT_AUTO_LANE": true,
                "ALLOW_WIDTH": 3
            },
            "LANE_ITEMS": [
                {
                    "ELEM": 163,
                    "ECC": -1.5,
                    "SPAN": 12,
                    "SPAN_START": true,
                    "SCALE_FACTOR": 1.1
                },
                {
                    "ELEM": 164,
                    "ECC": -1.5,
                    "SPAN": 12,
                    "SPAN_START": false,
                    "SCALE_FACTOR": 1.1
                },
                {
                    "ELEM": 165,
                    "ECC": -1.5,
                    "SPAN": 12,
                    "SPAN_START": false,
                    "SCALE_FACTOR": 1.1
                }
            ]
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Common Items

"COMMON"

Object

-

Required

(1)

Name of Line Lane

"LL_NAME"

String

-

Required

(2)

Lane Width

 • Unavailable Key

"WIDTH"

Number

-

Required

(3)

Wheel Spacing

"WHEEL_SPACE"

Number

0

Optional

(4)

Transverse Lane Optimization

"OPT_AUTO_LANE"

Boolean

false

Optional

(5)

Allow Width for Optimization

"ALLOW_WIDTH"

Number

-

Optional

(6)

Load Distribution

 • Lane Element: "LANE"

 • Cross Beam: "CROSS"

"LOAD_DIST"

String

-

Required

(7)

Name of Structure Group

"GROUP_NAME"

String

Blank

Optional

(8)

Skew Start

"SKEW_START"

Number

0

Optional

(9)

Skew End

"SKEW_END"

Number

0

Optional

(10)

Moving Direction

 • Forward: "FORWARD"

 • Backward: "BACKWARD"

 • Both: "BOTH"

"MOVING"

String

-

Required

2

Lane Items

 • Insert the data as an object

"LANE_ITEMS"

Array
[Object]

-

Required

(1)

Element No.

"ELEM"

Integer

-

Required

(2)

Eccentricity

"ECC"

Number

0

Optional

(3)

Span Length

"SPAN"

Number

0

Optional

(4)

Span Start

"SPAN_START"

Boolean

false

Optional

(4)

Scale Factor

"SCALE_FACTOR"

Number

0

Optional



0
Was this article helpful?