0 votes
56 views
A few of my processes disappeared from the list of processes on the left-hand side (navigation), but I can see them in the model, and I can open them from the open provider. When I search for their name, I can find them; however, there is no green address line under them. It seems that they do not have any location.
Could you help me to fix this issue?
in openLCA by (120 points)

1 Answer

0 votes
by (2.7k points)

Hello Zeynab Yousefzadeh,

We are aware of this issue and we will try to fix it in the next releases. For the time being you can run this script to set the category of the hidden process to "recovery" (Tools -> Developer Tools -> Python):

processes = db.getAll(Process)
c = Category.of("recovery", ModelType.PROCESS)
for p in processes:
if p.category is None:
print("Resetting the category of " + p.name)
p.category = c
db.update(p)

It will take quite some time, especially if your DB is large.

Regards,

François

ask.openLCA is a question-and-answer (Q&A) website on Life Cycle Assessment (LCA).

It is also the public support platform for openLCA, openLCA Nexus, data.openLCA and the LCA Collaboration Server.

Before asking questions please also consult our online manuals for openLCA and the LCA Collaboration Server.

Receive guaranteed and prioritised professional support via GreenDelta's help desk.

ask.openLCA is run by GreenDelta, the creators of openLCA.

openLCA

LCA Collaboration Server
...