diff --git a/packages/gis/tests/geojson/basic/Layer.lua b/packages/gis/tests/geojson/basic/Layer.lua index 96b0dd62..855deead 100644 --- a/packages/gis/tests/geojson/basic/Layer.lua +++ b/packages/gis/tests/geojson/basic/Layer.lua @@ -176,53 +176,54 @@ return { } -- MODE - cl1:fill{ - operation = "mode", - layer = countiesGjson.name, - attribute = "polmode", - select = "POPULACAO_", - progress = false - } - - local cs = CellularSpace{ - project = proj, - layer = cl1.name - } - - local map = Map{ - target = cs, - select = "polmode", - value = {"0", "53217", "37086", "14302"}, - color = {"red", "green", "blue", "yellow"} - } - - unitTest:assertSnapshot(map, "polygons-mode-geojson.png", 0.01) - - -- MODE (area = true) - cl1:fill{ - operation = "mode", - layer = countiesGjson.name, - attribute = "polmode2", - select = "POPULACAO_", - area = true, - progress = false - } - - cs = CellularSpace{ - project = proj, - layer = cl1.name - } - - map = Map{ - target = cs, - select = "polmode2", - min = 0, - max = 1410000, - slices = 8, - color = {"red", "green"} - } - - unitTest:assertSnapshot(map, "polygons-mode-2-geojson.png") + -- TODO(#2327) + -- cl1:fill{ + -- operation = "mode", + -- layer = countiesGjson.name, + -- attribute = "polmode", + -- select = "POPULACAO_", + -- progress = false + -- } + + -- local cs = CellularSpace{ + -- project = proj, + -- layer = cl1.name + -- } + + -- local map = Map{ + -- target = cs, + -- select = "polmode", + -- value = {"0", "53217", "37086", "14302"}, + -- color = {"red", "green", "blue", "yellow"} + -- } + + -- unitTest:assertSnapshot(map, "polygons-mode-geojson.png", 0.01) --SKIP + + -- -- MODE (area = true) + -- cl1:fill{ + -- operation = "mode", + -- layer = countiesGjson.name, + -- attribute = "polmode2", + -- select = "POPULACAO_", + -- area = true, + -- progress = false + -- } + + -- cs = CellularSpace{ + -- project = proj, + -- layer = cl1.name + -- } + + -- map = Map{ + -- target = cs, + -- select = "polmode2", + -- min = 0, + -- max = 1410000, + -- slices = 8, + -- color = {"red", "green"} + -- } + + -- unitTest:assertSnapshot(map, "polygons-mode-2-geojson.png") --SKIP local protect = Layer{ project = proj, diff --git a/packages/gis/tests/geojson/basic/TerraLib.lua b/packages/gis/tests/geojson/basic/TerraLib.lua index 59421441..e6e4e39c 100644 --- a/packages/gis/tests/geojson/basic/TerraLib.lua +++ b/packages/gis/tests/geojson/basic/TerraLib.lua @@ -670,31 +670,32 @@ return { unitTest:assertEquals(dset[147].FID, 147) -- MODE - local modeLayerName = clName.."_"..layerName2.."_Mode" - table.insert(files, File(modeLayerName..".geojson"):deleteIfExists()) - operation = "mode" - attribute = "mode" - select = "ESFERA5" - - TerraLib().attributeFill{ - project = proj, - from = layerName2, - to = weigLayerName, - out = modeLayerName, - attribute = attribute, - operation = operation, - select = select - } - - dset = TerraLib().getDataSet{project = proj, layer = modeLayerName, missing = 0} - - unitTest:assertEquals(csSize, getn(dset)) - unitTest:assertEquals(dset[5][attribute], 0) - unitTest:assertNotNil(dset[5].OGR_GEOMETRY) - unitTest:assertEquals(dset[5].col, 0) - unitTest:assertEquals(dset[5].row, 1) - unitTest:assertEquals(dset[5].id, "C00L01") - unitTest:assertEquals(dset[5].FID, 5) + local modeLayerName = weigLayerName -- TODO(#2327) + -- local modeLayerName = clName.."_"..layerName2.."_Mode" + -- table.insert(files, File(modeLayerName..".geojson"):deleteIfExists()) + -- operation = "mode" + -- attribute = "mode" + -- select = "ESFERA5" + + -- TerraLib().attributeFill{ + -- project = proj, + -- from = layerName2, + -- to = weigLayerName, + -- out = modeLayerName, + -- attribute = attribute, + -- operation = operation, + -- select = select + -- } + + -- dset = TerraLib().getDataSet{project = proj, layer = modeLayerName, missing = 0} + + -- unitTest:assertEquals(csSize, getn(dset)) --SKIP + -- unitTest:assertEquals(dset[5][attribute], 0) --SKIP + -- unitTest:assertNotNil(dset[5].OGR_GEOMETRY) --SKIP + -- unitTest:assertEquals(dset[5].col, 0) --SKIP + -- unitTest:assertEquals(dset[5].row, 1) --SKIP + -- unitTest:assertEquals(dset[5].id, "C00L01") --SKIP + -- unitTest:assertEquals(dset[5].FID, 5) --SKIP -- HIGHEST INTERSECTION local inteLayerName = clName.."_"..layerName2.."_HighIntersection"