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
The OSMReader.allGeoms value is a DataFrame that is supposed to contain all of the Geometries from the source file; however, the geom column in the schema is of type Point instead of type Geometry
Because OSMReader.allGeoms uses the same logic as ProcessOSM.constructGeometries, that means then that the latter method also has this issue.
This problem is most likely the result of the union that occurs, and one possible solution would be to reverse it. However, it's not clear what kind of performance impacts, if any, would occur.
The text was updated successfully, but these errors were encountered:
The
OSMReader.allGeoms
value is aDataFrame
that is supposed to contain all of the Geometries from the source file; however, thegeom
column in the schema is of typePoint
instead of typeGeometry
Because
OSMReader.allGeoms
uses the same logic asProcessOSM.constructGeometries
, that means then that the latter method also has this issue.This problem is most likely the result of the
union
that occurs, and one possible solution would be to reverse it. However, it's not clear what kind of performance impacts, if any, would occur.The text was updated successfully, but these errors were encountered: