From 23e867e18cb3f1371eb2d3faa3e04806c09059a5 Mon Sep 17 00:00:00 2001 From: isn Date: Tue, 30 Jun 2015 12:15:35 +0300 Subject: [PATCH] Import of shapefile - small improvements --- src/HYDROData/HYDROData_ShapeFile.cxx | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/HYDROData/HYDROData_ShapeFile.cxx b/src/HYDROData/HYDROData_ShapeFile.cxx index 1b0ee89a..16f72c78 100644 --- a/src/HYDROData/HYDROData_ShapeFile.cxx +++ b/src/HYDROData/HYDROData_ShapeFile.cxx @@ -584,31 +584,31 @@ QString HYDROData_ShapeFile::GetShapeTypeName(int theType) case 0: return "null shape"; case 1: - return "point"; + return "point (unsupported by HYDRO)"; case 3: - return "arc"; + return "arc/polyline (supported by HYDRO)"; case 5: - return "polygon"; + return "polygon (supported by HYDRO)"; case 8: - return "multipoint"; + return "multipoint (unsupported by HYDRO)"; case 11: - return "pointZ"; + return "pointZ (unsupported by HYDRO)"; case 13: - return "arcZ"; + return "arcZ/polyline (supported by HYDRO)"; case 15: - return "polygonZ"; + return "polygonZ (unsupported by HYDRO)"; case 18: - return "multipointZ"; + return "multipointZ (unsupported by HYDRO)"; case 21: - return "pointM"; + return "pointM (unsupported by HYDRO)"; case 23: - return "ARCM"; + return "arcM/polyline (supported by HYDRO)"; case 25: - return "polygonM"; + return "polygonM (unsupported by HYDRO)"; case 28: - return "multipointM"; + return "multipointM (unsupported by HYDRO)"; case 31: - return "multipatch"; + return "multipatch (unsupported by HYDRO)"; default: return "unknown"; } -- 2.39.2