{"id":26919275,"url":"https://github.com/sogno-platform/libcimpp","last_synced_at":"2025-10-09T06:06:05.587Z","repository":{"id":40687780,"uuid":"237394389","full_name":"sogno-platform/libcimpp","owner":"sogno-platform","description":"C++ package to import and export CGMES / CIM IEC-61970 files in the XML/RDF format ","archived":false,"fork":false,"pushed_at":"2025-06-19T22:29:45.000Z","size":3319,"stargazers_count":27,"open_issues_count":0,"forks_count":21,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-06-19T23:26:51.811Z","etag":null,"topics":["cim","cim-import","cpp","iec61970"],"latest_commit_sha":null,"homepage":"https://sogno.energy/libcimpp/","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sogno-platform.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-01-31T09:03:58.000Z","updated_at":"2025-06-19T22:30:01.000Z","dependencies_parsed_at":"2023-02-12T16:01:33.221Z","dependency_job_id":"a91a6630-ad34-4701-8855-11eef357ac81","html_url":"https://github.com/sogno-platform/libcimpp","commit_stats":{"total_commits":294,"total_committers":17,"mean_commits":"17.294117647058822","dds":0.6564625850340136,"last_synced_commit":"ad5532a0e909065a939a1b14188efc532e0b977a"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/sogno-platform/libcimpp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sogno-platform%2Flibcimpp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sogno-platform%2Flibcimpp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sogno-platform%2Flibcimpp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sogno-platform%2Flibcimpp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sogno-platform","download_url":"https://codeload.github.com/sogno-platform/libcimpp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sogno-platform%2Flibcimpp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262637490,"owners_count":23341153,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cim","cim-import","cpp","iec61970"],"created_at":"2025-04-01T21:31:08.119Z","updated_at":"2025-10-09T06:06:00.541Z","avatar_url":"https://github.com/sogno-platform.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# libcimpp\n\nlibcimpp is a serialiser \u0026 deserialiser library for C++ objects from XML/RDF documents based on the Common Information Model (CIM) standards (i.e. IEC61970/61968/62325) and CGMES for the energy sector.\nIt is part of the CIM++ project. More on CIM++ can be found [here](http://rdcu.be/vOop).\n\nSupported CIM / CGMES versions:\n\n+ CGMES_2.4.13_18DEC2013\n+ CGMES_2.4.15_16FEB2016\n+ CGMES_2.4.15_27JAN2020\n+ [CGMES_3.0.0](https://sogno-platform.github.io/libcimpp/CGMES_3.0.0/annotated.html)\n\n## General information\n\nlimcimpp uses [arabica](http://www.jezuk.co.uk/cgi-bin/view/arabica) as cross platform wrapper around one of the XML parsers listed in the dependencies (see below).\nIt is recommended to use libcimpp as cmake module.\n\n## Dependencies\n\nYou need following software packages for libcimpp:\n\n+ One of the following XML parsers:\n  + [libxml2](http://www.xmlsoft.org/) (usually chosen under Linux and often can be installed as a package of the used distribution)\n  + [Xerces](http://xerces.apache.org/xerces-c/)\n  + [Microsoft XML Parser](https://support.microsoft.com/en-en/help/324460) (this one is used per default when building with MS Visual Studio)\n+ Build system:\n  + [cmake](https://cmake.org/)\n\n## Build instructions\n\n### UNIX / Linux / MacOS\n\nAfter getting the Git repository, create a build subdirectory and change into it:\n\n```bash\nmkdir build\ncd build\n```\n\nFor building libcimpp with the default CIM version, type:\n\n```bash\ncmake ..\nmake -j 4\n```\n\nFor building libcimpp with a certain CIM version (e.g. `CGMES_2.4.15_27JAN2020`), type:\n\n```bash\ncmake .. -DUSE_CIM_VERSION=CGMES_2.4.15_27JAN2020\nmake -j 4\n```\n\nAll available CIM versions are listed in the [CMakeLists.txt](CMakeLists.txt)\n\n### Windows with MS Visual Studio\n\n1. After getting the Git repository, create a `build` subdirectory.\n2. Run the Windows CMake (GUI)\n3. Set the\n   + source code directory, e.g.: `C:/git/libcimpp`\n   + build directory, e.g.: `C:/git/libcimpp/build`\n4. Click on `Configure` and choose the Visual Studio project version, e.g.: `Visual Studio 15 2017`\n5. Click on `Finish` and wait while CMake is configuring the project.\n6. Click on `Generate` to generate the Visual Studio project files.\n7. Click on `Open Project` to open the project in Visual Studio.\n8. In Visual Studio's main menu choose `Build -\u003e Build Solution`. This will build the `libcimpp` library.\n\n## Usage of the libcimpp library\n\nFor information on how to use the library please see the cmake based example in examples/cmake.\nBuilding the example is just like building the library itself using cmake.\n\n```bash\ncmake .. -DCIMPP_BUILD_EXAMPLES=ON\nmake -j 4\n```\n\nThe make example is currently not supported due to the lack of an install target for arabica.\n\n## License\n\nThis project is released under the terms of the [Apache License 2.0](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsogno-platform%2Flibcimpp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsogno-platform%2Flibcimpp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsogno-platform%2Flibcimpp/lists"}