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
Right now this is not supported by this library. There is a PR out that attempts to deal with this but I have not made time to review it yet. My time to support this library is limited and so I can mainly only support my use case which is for 2d shapefiles. If you want to look at the 3D PR and add any comments or tests that might be helpful, I will see if I can integrate it.
Hi,
Thanks for your quick response. Yes, I am interested in validating and testing it as I need a 3D polyline in my project. Please see the details about how to use this.
Hi,
Looks like I am not able to convert 3D polygon and LineString to shp file.
const coordinates = [
[
[0, 0, 0], // Vertex 1: x, y, z
[0, 10, 0], // Vertex 2: x, y, z
[10, 10, 0],// Vertex 3: x, y, z
[10, 0, 0], // Vertex 4: x, y, z
[0, 0, 0] // Closing vertex to complete the polygon
]
];
After conversion, I am getting only X and Y values, not Z values. Is this supported?
--Vijay
The text was updated successfully, but these errors were encountered: