You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 6, 2021. It is now read-only.
An error occurred: 'list' object has no attribute 'split'
File "featureserver/web_request/handlers.py", line 147, in wsgi
accepts = accepts )
File "featureserver/FeatureServer/Server.py", line 222, in dispatchRequest
return getattr(request, request.actions[0].request.lower())(version)
File "featureserver/FeatureServer/Service/WFS.py", line 62, in describefeaturetype
result = wfs.describefeaturetype()
File "featureserver/vectorformats/Formats/WFS.py", line 312, in describefeaturetype
root = self.addDataSourceFeatureType(root, self.datasources[self.layers[0]])
File "featureserver/vectorformats/Formats/WFS.py", line 339, in addDataSourceFeatureType
for attribut_col in datasource.attribute_cols.split(','):
The other formats (e.g. HTML, GeoJSON) work just fine with OGR. This suggests that WFS should not be attempting to parse the attributes. However, when I monkey-patch that fix, it only leads to deeper errors around OGR:getAttributeDescription not being overridden.