We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39dbccb commit fee7c52Copy full SHA for fee7c52
src/operations/edu/umn/cs/spatialHadoop/operations/Repartition.java
@@ -90,7 +90,7 @@ public void map(
90
shape.toText(shapeText);
91
for (int cellIndex = 0; cellIndex < cellInfos.length; cellIndex++) {
92
if (cellInfos[cellIndex].isIntersected(shape)) {
93
- cellId.set((byte)cellInfos[cellIndex].cellId);
+ cellId.set((int) cellInfos[cellIndex].cellId);
94
output.collect(cellId, shapeText);
95
}
96
0 commit comments