I am working with USLCI and when I attempt to enumerate or access a process generator via IPC I get this error:
ValueError Traceback (most recent call last)
<ipython-input-14-c5be51e77ab1> in <module>
----> 1 next(processes)
~\AppData\Local\Continuum\anaconda3\lib\site-packages\olca\ipc.py in get_all(self, model_type)
103 for r in result:
104 e = model_type()
--> 105 e.from_json(r)
106 yield e
.
.
.
ValueError: 'NO_ALLOCATION' is not a valid AllocationType
This is confusing because if I query the openLCA database with something like:
select distinct(DEFAULT_ALLOCATION_METHOD) from tbl_processes
or
select distinct(ALLOCATION_TYPE) from tbl_allocation_factors
I get only:
ECONOMIC
PHYSICAL
NONE
What can I do/update to allow IPC to evaluate the generator and let me move on with my life?