-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
Support for WKT conversion #1
Comments
We are using WKT for geometries in the spreadsheet template so we'll need to set the wkt option in Flatten Tool's kwargs. |
Added "convert_wkt": True |
Doesn't seem to be working when testing with Expected output, as returned by {
"datasets": [
{
"id": "1",
"spatial": {
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
30.0,
10.0
],
[
40.0,
40.0
],
[
20.0,
40.0
],
[
10.0,
20.0
],
[
30.0,
10.0
]
]
]
}
}
}
]
} Actual output from CoVE: {
"datasets": [
{
"id": "1",
"spatial": {}
}
]
} Resulting error: |
Was a flattentool version issue. Let me know if looks good now. |
Looks good to me. Thanks! |
We'll need to decide how to handle Flatten Tool's WKT conversion option. That will be informed by the outcome of GFDRR/rdls-spreadsheet-template#9 and OpenDataServices/flatten-tool#429.
The text was updated successfully, but these errors were encountered: