Scenario Bundles feature#
The scenario bundles feature is a response to the complex requirements for the transparent publication of scenarios in a complete and comprehensible manner. Various technologies are used to enable researchers to publish scenarios and any additional information. In addition, existing resources from the open energy platform are used and bundled together. This is intended to increase the visibility of available research work and enable comparability of the scenarios.
What are Scenario Bundles in detail?#
Please continue reading here.
Technologies#
User Interface
- We offer a modern user interface developed with the REACT library.
Backend & Web-API
- We build on the backend of the Open Energy Platform and use Django to implement functionalities such as saving and deleting scenario bundles and thus enable communication with the database. In addition, Django provides the WEB-API endpoints that are used to create a scenario bundle or query the database using JSON requests, for example.
- A Python integration of the SPARQL query language is used to interact with the Grpah database.
Database
- A graph database is used to store the complex data structure of the scenario bundles in the long term. We use Appache Jenna-Fuseki as a reliable technology.
Code Documentation#
Django view for the scenario bundles#
Note
Some of the information on this page may be changed in the future. To review the most recent information, please revisit.
SPDX-FileCopyrightText: 2025 Adel Memariani https://github.com/adelmemariani © Otto-von-Guericke-Universität Magdeburg SPDX-FileCopyrightText: 2025 Adel Memariani https://github.com/adelmemariani © Otto-von-Guericke-Universität Magdeburg SPDX-FileCopyrightText: 2025 Adel Memariani https://github.com/adelmemariani © Otto-von-Guericke-Universität Magdeburg SPDX-FileCopyrightText: 2025 Adel Memariani https://github.com/adelmemariani © Otto-von-Guericke-Universität Magdeburg SPDX-FileCopyrightText: 2025 Adel Memariani https://github.com/adelmemariani © Otto-von-Guericke-Universität Magdeburg SPDX-FileCopyrightText: 2025 Bryan Lancien https://github.com/bmlancien © Reiner Lemoine Institut SPDX-FileCopyrightText: 2025 Christian Winger https://github.com/wingechr © Öko-Institut e.V. SPDX-FileCopyrightText: 2025 Jonas Huber https://github.com/jh-RLI © Reiner Lemoine Institut SPDX-FileCopyrightText: 2025 Jonas Huber https://github.com/jh-RLI © Reiner Lemoine Institut SPDX-FileCopyrightText: 2025 Jonas Huber https://github.com/jh-RLI © Reiner Lemoine Institut
SPDX-License-Identifier: AGPL-3.0-or-later
add_entities_view(request, *args, **kwargs)
#
Add entities to OEKG. The minimum requirements for adding an entity are the type and label.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
request
|
HttpRequest
|
The incoming HTTP GET request. |
required |
entity_type
|
str
|
The type(OEO class) of the entity. |
required |
entity_label
|
str
|
The label of the entity. |
required |
entity_iri
|
str
|
The IRI of the entity. |
required |
Source code in factsheet/views.py
1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 | |
create_factsheet_view(request, *args, **kwargs)
#
Creates a scenario bundle based on user's data. Currently, the minimum requirement to create a bundle is the "acronym". The "acronym" must be unique. If the provided acronym already exists in the OEKG, then the function returns a "Duplicate error".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
request
|
HttpRequest
|
The incoming HTTP GET request. |
required |
uid
|
str
|
The unique ID for the bundle. |
required |
acronym
|
str
|
The acronym for the bundle. |
required |
abstract
|
str
|
The abstract for the bundle. |
required |
institution
|
list of objects
|
The institutions for the bundle. |
required |
funding_source
|
list of objects
|
The funding sources for the bundle. |
required |
contact_person
|
list of objects
|
The contact persons for the bundle. |
required |
sector_divisions
|
list of objects
|
The sector divisions for the bundle. |
required |
sectors
|
list of objects
|
The sectors for the bundle. |
required |
technologies
|
list of objects
|
The technologies for the bundle. |
required |
study_keywords
|
list of strings
|
The study keywords for the bundle. |
required |
scenarios
|
list of objects
|
The scenarios for the bundle. |
required |
models
|
list of strings
|
The models for the bundle. |
required |
frameworks
|
list of strings
|
The frameworks for the bundle. |
required |
publications
|
list[object]
|
A list of n publications related to the bundle study_name (str): The study name for the bundle. date_of_publication (str): The date of publication for the bundle. report_title (str): The report title for the bundle. report_doi (str): The report_doi for the bundle. place_of_publication (str): The place of publication for the bundle. link_to_study_report (str): The link to study for the bundle. authors (list of objects): The authors for the bundle. |
required |
Returns:
| Type | Description |
|---|---|
|
"Factsheet saved" if successful, "Duplicate error" if the bundle's |
|
|
acronym exists. |
Source code in factsheet/views.py
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 | |
delete_factsheet_by_id_view(request, *args, **kwargs)
#
Removes a scenario bundle based on the provided ID.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
request
|
HttpRequest
|
The incoming HTTP GET request. |
required |
id
|
str
|
The unique ID for the bundle. |
required |
Source code in factsheet/views.py
1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 | |
get_entities_by_type_view(request, *args, **kwargs)
#
Returns all entities (from OEKG) with a certain type. The type should be supplied by the user.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
request
|
HttpRequest
|
The incoming HTTP GET request. |
required |
entity_type
|
str
|
The type(OEO class) of the entity. |
required |
Source code in factsheet/views.py
1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 | |
populate_factsheets_elements_view(request, *args, **kwargs)
#
This function populates the elements required for creating or updating a factsheet. For example: Elements returned form this function populate dropdown elements which help the user to select sectors, technologies, scenario descriptors etc.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
request
|
HttpRequest
|
The incoming HTTP GET request. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
JsonResponse |
A JSON response containing the elements for factsheet creation or update. |
Source code in factsheet/views.py
1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 | |
update_an_entity_view(request, *args, **kwargs)
#
Updates an entity in OEKG. The minimum requirements for updating an entity are the type, the old label, and the new label.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
request
|
HttpRequest
|
The incoming HTTP GET request. |
required |
entity_type
|
str
|
The type(OEO class) of the entity. |
required |
entity_label
|
str
|
The label of the entity. |
required |
new_entity_label
|
str
|
The new label of the entity. |
required |
entity_id
|
str
|
The IRI of the entity. |
required |
Source code in factsheet/views.py
1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 | |
update_factsheet_view(request, *args, **kwargs)
#
Updates a scenario bundle based on user's data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
request
|
HttpRequest
|
The incoming HTTP GET request. |
required |
uid
|
str
|
The unique ID for the bundle. |
required |
acronym
|
str
|
The acronym for the bundle. |
required |
abstract
|
str
|
The abstract for the bundle. |
required |
institution
|
list of objects
|
The institutions for the bundle. |
required |
funding_source
|
list of objects
|
The funding sources for the bundle. |
required |
contact_person
|
list of objects
|
The contact persons for the bundle. |
required |
sector_divisions
|
list of objects
|
The sector divisions for the bundle. |
required |
sectors
|
list of objects
|
The sectors for the bundle. |
required |
technologies
|
list of objects
|
The technologies for the bundle. |
required |
study_keywords
|
list of strings
|
The study keywords for the bundle. |
required |
scenarios
|
list of objects
|
The scenarios for the bundle. |
required |
models
|
list of strings
|
The models for the bundle. |
required |
frameworks
|
list of strings
|
The frameworks for the bundle. |
required |
publications
|
list[object]
|
A list of n publications related to the bundle study_name (str): The study name for the bundle. date_of_publication (str): The date of publication for the bundle. report_title (str): The report title for the bundle. report_doi (str): The report_doi for the bundle. place_of_publication (str): The place of publication for the bundle. link_to_study_report (str): The link to study for the bundle. authors (list of objects): The authors for the bundle. |
required |
Source code in factsheet/views.py
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 | |
The scenario bundle object construction and API in django#
Below we describe how we construct the Scenario bundles in the scenario bundles django app. Using JSON as an input format the complex scenario bundle object becomes more manageable when working with WEB-technologies. Users will create a scenario bundle using a user interface with input text and selection fields this information is send and processed as JSON before it is stored in the OEKG using RDF´s triple notation.
You can read the following sections as: This is how django processes the data, and this is where the data is send once the user submits or changes a scenario bundles. The URL pointing out what django view will handle the JSON object below. This is very similar to what general web api´s do like REST-API´s. The exception here is that there is an CSRF Token involved which is required by the django backend to make sure requests are save and do not originate form an unsafe source allowing the scenario bundle frontend to send data to the backend.
The technology that drives this implementation is HTTP. The JSON objects and key:value information is send in packaged as a payload that is send along with each requests. A requests can be triggered by multiple actions for example a button that is pressed by the user. Based on the URL and the payload the backend can determine what functionality must be triggered. This can be for example creating a scenario bundle or retrieving a specific bundle by its ID.
Note
Some of the information on this page may be changed in the future. To review the most recent information, please revisit.
Create a new bundle in OEKG#
https://openenergy-platform.org/scenario-bundles/add/
An example of input parameters
{
"id": "new",
"uid": "6157d6d6-7a7b-a61e-21d3-a8f936b19056",
"study_name": "Example study name",
"acronym": "Example acronym",
"abstract": "Example abstract ...",
"institution": [
{
"iri": "708ad5dc-7f8b-6c65-6a5f-0fc54fe8221b",
"name": "Öko-Institut e.V."
},
{
"iri": "8e1515b9-9b1f-fa06-a3a2-d552b0ea7dcd",
"name": "Otto-von-Guericke-Universität Magdeburg"
}
],
"funding_source": [
{
"iri": "82dd628d-f748-560b-b0cd-06466cf90f1a",
"name": "Bundesministerium für Umwelt, Naturschutz und nukleare Sicherheit"
}
],
"contact_person": [],
"sector_divisions": [],
"sectors": [
{
"label": "KSG sector buildings",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010067"
},
{
"label": "KSG sector industry",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010066"
},
{
"label": "CRF sector (IPCC 2006): wetlands",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010192"
},
{
"label": "CRF sector (IPCC 2006): other product manufacture and use",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010172"
},
{
"label": "CRF sector (IPCC 2006): manure management",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010180"
},
{
"label": "CRF sector (IPCC 2006): multilateral operations",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010203"
},
{
"label": "CRF sector (IPCC 2006): chemical industry - other",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010353"
}
],
"technologies": [
{
"label": "power generation technology",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010423"
},
{
"label": "wind power technology",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010424"
},
{
"label": "offshore wind power technology",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010426"
},
{
"label": "solar thermal power technology",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010429"
},
{
"label": "hydro power technology",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010431"
},
{
"label": "run of river power technology",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010432"
}
],
"study_descriptors": [
"life cycle analysis",
"(changes in) demand",
"degree of electrifiaction",
"Reallabor",
"regionalisation",
"peak electricity generation"
],
"report_title": "Example report title",
"date_of_publication": " 2021",
"report_doi": "5345-43-5634-6-346-46-43",
"place_of_publication": "",
"link_to_study": " https://openenergy-platform.org/",
"authors": [],
"scenarios": [
{
"id": "4974db65-542d-31cd-6f08-11ef9a58680a",
"name": "Example scenario name 1 ",
"acronym": "Example scenario acronym 1 ",
"abstract": "Example scenario abstract 1 ... ",
"regions": [
{
"name ": "Germany ",
"iri ": "https://www.omg.org/spec/LCC/Countries/ISO3166-1-CountryCodes/Germany "
}
],
"interacting_regions": [
{
"name ": "Spain ",
"iri ": "https://www.omg.org/spec/LCC/Countries/ISO3166-1-CountryCodes/Spain "
}
],
"scenario_years": [
{
"iri ": "33131404-e58e-12bc-170e-32aba1c83d99 ",
"name ": "2021 "
}
],
"descriptors ": [
{
"label": "explorative scenario ",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00020248 "
},
{
"label": "policy scenario ",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00020309 "
},
{
"label": "climate scenario ",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00030007"
}
],
"input_datasets": [
{
"key": "f2d32e9c-1fa0-4d66-9ffd-c297d4bb5c9a ",
"idx": 0,
"value ": {
"label ": "abbb_transmission_capacity ",
"iri ": "https://openenergy-platform.org/database/tables/scenario/abbb_transmission_capacity "
}
},
{
"key ": "ca9c82f3-9ba0-7d71-6601-dd520680bedb ",
"idx ": 1,
"value ": {
"label ": "abbb_demand ",
"iri ": "https://openenergy-platform.org/database/tables/scenario/abbb_demand "
}
}
],
"output_datasets ": [
{
"key ": "0db015dd-1543-f0e9-9579-3602fb16a680 ",
"idx ": 0,
"value ": {
"label ": "abbb_transformer ",
"iri ": "https://openenergy-platform.org/database/tables/scenario/abbb_transformer "
}
}
]
},
{
"id ": "1f4bb594-4b1c-dca4-2465-e04a54eec10b ",
"name ": "Example scenario name 2 ",
"acronym ": "Example scenario acronym 2 ",
"abstract ": "Example scenario abstract 2 ... ",
"regions ": [
{
"name ": "France ",
"iri ": "https://www.omg.org/spec/LCC/Countries/ISO3166-1-CountryCodes/France "
}
],
"interacting_regions ": [
{
"name ": "Germany ",
"iri ": "https://www.omg.org/spec/LCC/Countries/ISO3166-1-CountryCodes/Germany "
}
],
"scenario_years ": [],
"descriptors ": [
{
"label ": "explorative scenario ",
"class ": "http://openenergy-platform.org/ontology/oeo/OEO_00020248 "
},
{
"label ": "with additional measures scenario ",
"class ": "http://openenergy-platform.org/ontology/oeo/OEO_00020312 "
},
{
"label ": "greenhouse gas emission scenario ",
"class ": "http://openenergy-platform.org/ontology/oeo/OEO_00020317 "
},
{
"label ": "climate scenario ",
"class ": "http://openenergy-platform.org/ontology/oeo/OEO_00030007 "
},
{
"label ": "economic scenario ",
"class ": "http://openenergy-platform.org/ontology/oeo/OEO_00030008 "
}
],
"input_datasets ": [
{
"key ": "bfc811ee-11f5-6a5a-247d-6f66bb676dd9 ",
"idx ": 0,
"value ": {
"label ": "abbb_transformer ",
"iri ": "https://openenergy-platform.org/database/tables/scenario/abbb_transformer "
}
}
],
"output_datasets ": [
{
"key ": "fbc30f51-7f32-9c21-dfb2-7534aeac538d ",
"idx ": 0,
"value ": {
"label ": "ego_slp_parameters ",
"iri ": "https://openenergy-platform.org/database/tables/scenario/ego_slp_parameters "
}
}
]
}
],
"models": [
{
"id ": "SciGrid: Open Source Reference Model of European Transmission Networks for Scientific Analysis ",
"name ": "SciGrid: Open Source Reference Model of European Transmission Networks for Scientific Analysis "
},
{
"id ": "Balmorel ",
"name ": "Balmorel "
},
{
"id ": "National Electricity Market Optimiser ",
"name ": "National Electricity Market Optimiser "
},
{
"id ": "urbs Bavaria ",
"name ": "urbs Bavaria "
}
],
"frameworks": [
{
"id ": "Python for Power System Analysis toolbox (PyPSA) ",
"name ": "Python for Power System Analysis toolbox (PyPSA) "
},
{
"id ": "Framework for Integrated Energy System Assessment ",
"name ": "Framework for Integrated Energy System Assessment "
},
{
"id ": "Model Order Reduction for Gas and Energy Networks ",
"name ": "Model Order Reduction for Gas and Energy Networks "
},
{
"id ": "OMEGAlpes ",
"name ": "OMEGAlpes "
},
{
"id ": "Potsdam Integrated Assessment Modeling Framework (PIAM) ",
"name ": "Potsdam Integrated Assessment Modeling Framework (PIAM) "
}
]
}
Get a bundle in OEKG#
Retrieve a bundle by its uid
https://openenergy-platform.org/scenario-bundles/get/
An example of input parameters
{ "uid": "6157d6d6-7a7b-a61e-21d3-a8f936b19056" }
Remove a bundle from OEKG#
https://openenergy-platform.org/scenario-bundles/delete/
To delete a bundle, the uid of the bundle should be provided.
An example of input parameters
{ "uid": "6157d6d6-7a7b-a61e-21d3-a8f936b19056" }
Update a bundle in OEKG#
https://openenergy-platform.org/scenario-bundles/update/
An example of input parameters
The uid should belong to an existing bundle in OEKG. The remaining fields are
identical to those in the create bundle API.
{
"uid": "6157d6d6-7a7b-a61e-21d3-a8f936b19056",
"study_name": "Example study name",
"acronym": "Example acronym",
"abstract": "Example abstract ...",
"institution": [
{
"iri": "708ad5dc-7f8b-6c65-6a5f-0fc54fe8221b",
"name": "Öko-Institut e.V."
},
{
"iri": "8e1515b9-9b1f-fa06-a3a2-d552b0ea7dcd",
"name": "Otto-von-Guericke-Universität Magdeburg"
}
],
"funding_source": [
{
"iri": "82dd628d-f748-560b-b0cd-06466cf90f1a",
"name": "Bundesministerium für Umwelt, Naturschutz und nukleare Sicherheit"
}
],
"contact_person": [],
"sector_divisions": [],
"sectors": [
{
"label": "KSG sector buildings",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010067"
},
{
"label": "KSG sector industry",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010066"
},
{
"label": "CRF sector (IPCC 2006): wetlands",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010192"
},
{
"label": "CRF sector (IPCC 2006): other product manufacture and use",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010172"
},
{
"label": "CRF sector (IPCC 2006): manure management",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010180"
},
{
"label": "CRF sector (IPCC 2006): multilateral operations",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010203"
},
{
"label": "CRF sector (IPCC 2006): chemical industry - other",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010353"
}
],
"technologies": [
{
"label": "power generation technology",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010423"
},
{
"label": "wind power technology",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010424"
},
{
"label": "offshore wind power technology",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010426"
},
{
"label": "solar thermal power technology",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010429"
},
{
"label": "hydro power technology",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010431"
},
{
"label": "run of river power technology",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00010432"
}
],
"study_descriptors": [
"life cycle analysis",
"(changes in) demand",
"degree of electrifiaction",
"Reallabor",
"regionalisation",
"peak electricity generation"
],
"report_title": "Example report title",
"date_of_publication": " 2021",
"report_doi": "5345-43-5634-6-346-46-43",
"place_of_publication": "",
"link_to_study": " https://openenergy-platform.org/",
"authors": [],
"scenarios": [
{
"id": "4974db65-542d-31cd-6f08-11ef9a58680a",
"name": "Example scenario name 1 ",
"acronym": "Example scenario acronym 1 ",
"abstract": "Example scenario abstract 1 ... ",
"regions": [
{
"name ": "Germany ",
"iri ": "https://www.omg.org/spec/LCC/Countries/ISO3166-1-CountryCodes/Germany "
}
],
"interacting_regions": [
{
"name ": "Spain ",
"iri ": "https://www.omg.org/spec/LCC/Countries/ISO3166-1-CountryCodes/Spain "
}
],
"scenario_years": [
{
"iri ": "33131404-e58e-12bc-170e-32aba1c83d99 ",
"name ": "2021 "
}
],
"descriptors ": [
{
"label": "explorative scenario ",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00020248 "
},
{
"label": "policy scenario ",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00020309 "
},
{
"label": "climate scenario ",
"class": "http://openenergy-platform.org/ontology/oeo/OEO_00030007"
}
],
"input_datasets": [
{
"key": "f2d32e9c-1fa0-4d66-9ffd-c297d4bb5c9a ",
"idx": 0,
"value ": {
"label ": "abbb_transmission_capacity ",
"iri ": "https://openenergy-platform.org/database/tables/scenario/abbb_transmission_capacity "
}
},
{
"key ": "ca9c82f3-9ba0-7d71-6601-dd520680bedb ",
"idx ": 1,
"value ": {
"label ": "abbb_demand ",
"iri ": "https://openenergy-platform.org/database/tables/scenario/abbb_demand "
}
}
],
"output_datasets ": [
{
"key ": "0db015dd-1543-f0e9-9579-3602fb16a680 ",
"idx ": 0,
"value ": {
"label ": "abbb_transformer ",
"iri ": "https://openenergy-platform.org/database/tables/scenario/abbb_transformer "
}
}
]
},
{
"id ": "1f4bb594-4b1c-dca4-2465-e04a54eec10b ",
"name ": "Example scenario name 2 ",
"acronym ": "Example scenario acronym 2 ",
"abstract ": "Example scenario abstract 2 ... ",
"regions ": [
{
"name ": "France ",
"iri ": "https://www.omg.org/spec/LCC/Countries/ISO3166-1-CountryCodes/France "
}
],
"interacting_regions ": [
{
"name ": "Germany ",
"iri ": "https://www.omg.org/spec/LCC/Countries/ISO3166-1-CountryCodes/Germany "
}
],
"scenario_years ": [],
"descriptors ": [
{
"label ": "explorative scenario ",
"class ": "http://openenergy-platform.org/ontology/oeo/OEO_00020248 "
},
{
"label ": "with additional measures scenario ",
"class ": "http://openenergy-platform.org/ontology/oeo/OEO_00020312 "
},
{
"label ": "greenhouse gas emission scenario ",
"class ": "http://openenergy-platform.org/ontology/oeo/OEO_00020317 "
},
{
"label ": "climate scenario ",
"class ": "http://openenergy-platform.org/ontology/oeo/OEO_00030007 "
},
{
"label ": "economic scenario ",
"class ": "http://openenergy-platform.org/ontology/oeo/OEO_00030008 "
}
],
"input_datasets ": [
{
"key ": "bfc811ee-11f5-6a5a-247d-6f66bb676dd9 ",
"idx ": 0,
"value ": {
"label ": "abbb_transformer ",
"iri ": "https://openenergy-platform.org/database/tables/scenario/abbb_transformer "
}
}
],
"output_datasets ": [
{
"key ": "fbc30f51-7f32-9c21-dfb2-7534aeac538d ",
"idx ": 0,
"value ": {
"label ": "ego_slp_parameters ",
"iri ": "https://openenergy-platform.org/database/tables/scenario/ego_slp_parameters "
}
}
]
}
],
"models": [
{
"id ": "SciGrid: Open Source Reference Model of European Transmission Networks for Scientific Analysis ",
"name ": "SciGrid: Open Source Reference Model of European Transmission Networks for Scientific Analysis "
},
{
"id ": "Balmorel ",
"name ": "Balmorel "
},
{
"id ": "National Electricity Market Optimiser ",
"name ": "National Electricity Market Optimiser "
},
{
"id ": "urbs Bavaria ",
"name ": "urbs Bavaria "
}
],
"frameworks": [
{
"id ": "Python for Power System Analysis toolbox (PyPSA) ",
"name ": "Python for Power System Analysis toolbox (PyPSA) "
},
{
"id ": "Framework for Integrated Energy System Assessment ",
"name ": "Framework for Integrated Energy System Assessment "
},
{
"id ": "Model Order Reduction for Gas and Energy Networks ",
"name ": "Model Order Reduction for Gas and Energy Networks "
},
{
"id ": "OMEGAlpes ",
"name ": "OMEGAlpes "
},
{
"id ": "Potsdam Integrated Assessment Modeling Framework (PIAM) ",
"name ": "Potsdam Integrated Assessment Modeling Framework (PIAM) "
}
]
}