Skip to content

Commit 15a8b13

Browse files
authored
Merge pull request #1319 from OpenEnergyPlatform/feature-1020-export-of-existing-terms-and-definitions
Export of existing terms and definitions #1020
2 parents 9c808f6 + 8f81f7c commit 15a8b13

File tree

6 files changed

+152
-1
lines changed

6 files changed

+152
-1
lines changed
+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
name: Post Release Scripts
2+
# on:
3+
# workflow_dispatch: {}
4+
# push:
5+
# branches:
6+
# - 'feature-1020-export-of-existing-terms-and-definitions'
7+
# First we test the setup, to see if the files are building correctly once that is checked we introduce the wiki upload each release.
8+
on:
9+
push:
10+
tags:
11+
- "v*"
12+
branches:
13+
- 'feature-1020-export-of-existing-terms-and-definitions'
14+
jobs:
15+
exportTermsDefinitions:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v3
19+
- uses: actions/setup-python@v4
20+
with:
21+
python-version: '3.7'
22+
architecture: x64
23+
- uses: actions/setup-java@v2
24+
with:
25+
distribution: 'adopt'
26+
java-version: '11'
27+
- name: install python dependencies
28+
run: pip install -r src/scripts/requirements.txt
29+
- name: setup robot
30+
run: |
31+
wget https://github.com/ontodev/robot/releases/download/v1.9.0/robot.jar -O src/robot.jar
32+
- name: Build ETD xlsx
33+
run: |
34+
java -jar src/robot.jar merge --input "src/ontology/oeo.omn" \
35+
--input "src/ontology/edits/oeo-model.omn" \
36+
--input "src/ontology/edits/oeo-physical.omn" \
37+
--input "src/ontology/edits/oeo-shared.omn" \
38+
--input "src/ontology/edits/oeo-social.omn" \
39+
--include-annotations true \
40+
export --header "ID|LABEL|definition" \
41+
--prefix "OEO: http://openenergy-platform.org/ontology/oeo/OEO_" \
42+
--sort "LABEL" \
43+
--export "src/scripts/etd/etd.xlsx"
44+
- name: Build ETD md
45+
run: |
46+
python src/scripts/etd/etd.py
47+
- name: Upload Artifacts
48+
uses: actions/upload-artifact@v3
49+
with:
50+
name: existing-terms-and-definitions
51+
path: src/scripts/etd/glossary
52+
# - name: Checkout wiki
53+
# uses: actions/checkout@v2
54+
# with:
55+
# repository: ${{github.repository}}.wiki
56+
# path: wiki
57+
# - name: Push list to wiki
58+
# run: |
59+
# cd wiki
60+
# cp -a ../src/scripts/etd/glossary/. .
61+
# git config --local user.email "[email protected]"
62+
# git config --local user.name "GitHub Action"
63+
# git add .
64+
# git diff-index --quiet HEAD || git commit -m "Add changes" && git push

src/ontology/edits/oeo-physical.omn

+1-1
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1135",
641641
OEO_00010032
642642

643643

644-
Class: <http://opennergy-plattform.org/ontology/oeo/OEO_00290002>
644+
Class: <http://openenergy-platform.org/ontology/oeo/oeo-physical/OEO_00290002>
645645

646646
Annotations:
647647
<http://purl.obolibrary.org/obo/IAO_0000115> "A surface azimuth angle is a quantity value with a plane angle unit that measures the deviation of the projection on a horizontal plane of the normal to the plane from the local meridian, with zero due south, east negative, and west positive."@en,

src/scripts/etd/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
This script generates a glossary for existing terms and definitions formatted in a table in a markdown file.
2+
The markdown file will be created in the same path (/ontology/src/scripts/etd/).
3+
4+
Guide:
5+
6+
1. Make sure you installed python3 and the python module pandas
7+
2. Call the bash script etd.sh in the directory: ontology/src/scripts/etd

src/scripts/etd/etd.py

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
import os
2+
import pandas as pd
3+
import warnings
4+
import re
5+
import string
6+
import pathlib
7+
warnings.filterwarnings("ignore")
8+
import sys
9+
10+
GLOSSARY_HEADER = """# Existing Terms and Definitions
11+
12+
"""
13+
BASE_LINK_WIKI = "https://github.com/OpenEnergyPlatform/ontology/wiki/"
14+
BASE_IRI = "http://openenergy-platform.org/ontology/oeo/"
15+
16+
if __name__ == '__main__':
17+
arguments = sys.argv[1:]
18+
if len(arguments) > 0:
19+
target_path = arguments[0]
20+
else:
21+
target_path = 'src/scripts/etd'
22+
cwd = os.getcwd()
23+
df = pd.read_excel(pathlib.Path(target_path).joinpath("etd.xlsx").as_posix())
24+
25+
df = df.replace('\n', '<br>', regex=True)
26+
df = df.sort_values("LABEL", key=lambda col: col.str.strip().str.lower())
27+
# Create one table per letter:
28+
29+
pathlib.Path(cwd + "/src/scripts/etd/glossary/").mkdir(parents=True, exist_ok=True)
30+
31+
# header = GLOSSARY_HEADER + " ".join([f"[{letter}]({BASE_LINK_WIKI}{letter})" for letter in string.ascii_uppercase]) + "\n"
32+
33+
# with open(cwd + "/src/scripts/etd/glossary/glossary.md", "w") as fil:
34+
# fil.write(header)
35+
output = GLOSSARY_HEADER + "\n"
36+
for letter in string.ascii_lowercase:
37+
current_df = df[df["LABEL"].str.lower().str.startswith(letter)]
38+
if current_df.empty:
39+
continue
40+
buffer = current_df.to_markdown(index=False)
41+
buffer = re.sub(r"(?s)(http:\/\/openenergy-platform.org\/ontology\/oeo\/?)\w+-\w+\/(\w+)(?=_)_(\d+?)(?=\s)", r"\2:\3", buffer)
42+
# There is a weird typo in surface azimuth angle ?
43+
buffer = re.sub(r"(?s)(http:\/\/opennergy-plattform.org\/ontology\/oeo\/?)\/(\w+)(?=_)_(\d+?)(?=\s)", r"\2:\3", buffer)
44+
# Remove the thing above when the typo is fixed
45+
buffer =re.sub(r"(?s)(\w+?)(?=:):(\d+?)(?=\s)", r"[\1:\2]({}".format(BASE_IRI)+ r"\1_\2)", buffer)
46+
title = f"## {letter.capitalize()}\n\n"
47+
table = title + buffer + "\n\n"
48+
#df.to_markdown(buf=cwd + "/src/scripts/etd/ETD.md", index=False)
49+
output += table
50+
with open(pathlib.Path(target_path).joinpath("glossary/glossary.md").as_posix(), "w") as fil:
51+
fil.write(output)
52+
53+
# create csv output
54+
df_csv = df.copy()
55+
df_csv["ID"] = df_csv["ID"].str.replace("http://openenergy-platform.org/ontology/oeo/oeo-physical/", "")
56+
df_csv["ID"] = df_csv["ID"].str.replace("http://openenergy-platform.org/ontology/oeo/oeo-model/", "")
57+
df_csv["ID"] = df_csv["ID"].str.replace(":", "_")
58+
df_csv.to_csv(pathlib.Path(target_path).joinpath("glossary/glossary.csv").as_posix(), index=False)

src/scripts/etd/etd.sh

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/bash
2+
if [ -e ETD.md ]
3+
then
4+
rm ETD.md
5+
fi
6+
SCRIPT_PATH="$PWD"
7+
ONTO_PATH="$(dirname "$(dirname "$SCRIPT_PATH")")""/ontology/"
8+
robot merge --input "$ONTO_PATH""oeo.omn" \
9+
--input "$ONTO_PATH""edits/oeo-model.omn" \
10+
--input "$ONTO_PATH""edits/oeo-physical.omn" \
11+
--input "$ONTO_PATH""edits/oeo-shared.omn" \
12+
--input "$ONTO_PATH""edits/oeo-social.omn" \
13+
--include-annotations true \
14+
export --header "LABEL|ID|definition" \
15+
--prefix "OEO: http://openenergy-platform.org/ontology/oeo/OEO_" \
16+
--sort "LABEL" \
17+
--export "$ETD_PATH""etd.xlsx"
18+
python3 etd.py
19+
rm etd.xlsx

src/scripts/requirements.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pandas
2+
tabulate
3+
openpyxl

0 commit comments

Comments
 (0)