Scenario Services Components
light
ICode
ICode component is employed to highlight syntax within code snippets.
            # Query scenario data from the SSP-Extensions ixmp4 platform as IamDataFrame
            # To avoid large queries, you can also filter by model, scenario or variable
            import pyam

            df = pyam.read_iiasa("ssp-extensions", region="World", ...)
            # To avoid large queries, you can also filter by model, scenario or variable

            # Explore the SSP-Extensions ixmp4 platform in more detail
            # You can use ixmp4 to connect to the database platform
            import ixmp4
            platform = ixmp4.Platform("ssp-extensions")

            # For example, you can get a list of all "runs" (.e., scenarios or projections)
            platform.runs.tabulate()
            ...
          
js code snippet.
            function greet(name) {
              return "Hello, " + name + "!";
            }

            // Example usage:
            console.log(greet("SCSE Components")); 
          
Props
NameTypeDefaultComment
langString