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
SupportsGeoInterface
The _data_to_csv_string function returns a NotImplementedError for objects that adhere to the type SupportsGeoInterface:
_data_to_csv_string
NotImplementedError
altair/altair/utils/data.py
Lines 284 to 291 in 596b282
The current error states:
to_csv does not work with data that contains the __geo_interface__ attribute.
to_csv
__geo_interface__
This is too strong as it is in fact:
to_csv does not yet work with data that is of type SupportsGeoInterface.
Serialization to csv is just not done yet.
The text was updated successfully, but these errors were encountered:
toolz
docs(typing): Remove NonGeoDataType and amend error message in `_da…
NonGeoDataType
5780f21
…ta_to_csv_string` See vega#3426 (comment) See vega#3441
mypy==1.11.0
plugin_registry
No branches or pull requests
What is your suggestion?
The
_data_to_csv_string
function returns aNotImplementedError
for objects that adhere to the typeSupportsGeoInterface
:altair/altair/utils/data.py
Lines 284 to 291 in 596b282
The current error states:
This is too strong as it is in fact:
Serialization to csv is just not done yet.
Have you considered any alternative solutions?
The text was updated successfully, but these errors were encountered: