We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I'm encountering an issue when calling the query_procured_balancing_capacity function. The following error is raised:
ValueError: processType allowed values: A51, A47
It appears that the function currently supports only the reserve types A51 and A47.
Could you please add support for the reserve type A52 as well? This would greatly enhance the functionality and flexibility of the function.
The text was updated successfully, but these errors were encountered:
hi! could you please provide a code snippit and clear description of what kind of data you expect to be returned? Thanks!
Sorry, something went wrong.
i tried to manualy add this funkcionality into local installed package. In parsers.py i added on line 410 in _parse_procured_balaning_capacity:
direction = { 'A01': 'Up', 'A02': 'Down', 'A03': 'Symmetric' }
In entsoe.py on line 830 in query_procured_balancing_capacity: if process_type not in ['A51','A52', 'A47']
if process_type not in ['A51','A52', 'A47']
No branches or pull requests
Hi,
I'm encountering an issue when calling the query_procured_balancing_capacity function. The following error is raised:
ValueError: processType allowed values: A51, A47
It appears that the function currently supports only the reserve types A51 and A47.
Could you please add support for the reserve type A52 as well? This would greatly enhance the functionality and flexibility of the function.
The text was updated successfully, but these errors were encountered: