+3 votes
445 views

I want to find a process (from Ecoinvent) which name is "diammonium phosphate production | phosphate fertiliser, as P2O5 | Cutoff, S".

The problem is there are two processes with this name, one with RER location and one with RoW location. I want the RER one.

The only solution I found is getting all the processes with the get_all() method, and then getting the one with right name and right location. Which obviously is too hard for the computer, because of the huge number of processes.

Any clue ? Otherwise I guess I should migrate to directly use the olca maven modules.

in openLCA by (700 points)

1 Answer

0 votes
by (240 points)
Hi! I'm facing the same problem. May I know if you find a better solution than `get_all()`?

---

This problem is solved by `get(olca.ProductSystem, uid=product_system_id)` in my project. Good luck!
...