This is an automated email from the ASF dual-hosted git repository. bchapuis pushed a commit to branch geoparquet-filtering-and-simplification in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git
commit da78816a13280411f834ee2939b7bcadccc1a370 Author: Bertil Chapuis <[email protected]> AuthorDate: Tue Oct 8 17:13:24 2024 +0200 Remove the nanotime type --- .../baremaps/geoparquet/GeoParquetGroup.java | 208 --------------------- 1 file changed, 208 deletions(-) diff --git a/baremaps-geoparquet/src/main/java/org/apache/baremaps/geoparquet/GeoParquetGroup.java b/baremaps-geoparquet/src/main/java/org/apache/baremaps/geoparquet/GeoParquetGroup.java index a03ec28a..7675d1ee 100644 --- a/baremaps-geoparquet/src/main/java/org/apache/baremaps/geoparquet/GeoParquetGroup.java +++ b/baremaps-geoparquet/src/main/java/org/apache/baremaps/geoparquet/GeoParquetGroup.java @@ -362,14 +362,6 @@ public class GeoParquetGroup { return getValues(fieldIndex).stream().map(Primitive::getBinary).toList(); } - public Binary getNanoTimeValue(int fieldIndex) { - return getBinaryValues(fieldIndex).get(0); - } - - public List<Binary> getNanoTimeValues(int fieldIndex) { - return getValues(fieldIndex).stream().map(Primitive::getBinary).toList(); - } - public Long getLongValue(int fieldIndex) { return getLongValues(fieldIndex).get(0); } @@ -480,14 +472,6 @@ public class GeoParquetGroup { return getBinaryValues(schema.getFieldIndex(fieldName)); } - public Binary getNanoTimeValue(String fieldName) { - return getBinaryValues(fieldName).get(0); - } - - public List<Binary> getNanoTimeValues(String fieldName) { - return getBinaryValues(schema.getFieldIndex(fieldName)); - } - public Long getLongValue(String fieldName) { return getLongValues(fieldName).get(0); } @@ -528,198 +512,6 @@ public class GeoParquetGroup { return getGroupValues(schema.getFieldIndex(fieldName)); } - public void setBinaryValue(int fieldIndex, Binary binaryValue) { - throw new UnsupportedOperationException(); - } - - public void setBinaryValues(int fieldIndex, List<Binary> binaryValues) { - throw new UnsupportedOperationException(); - } - - public void setBooleanValue(int fieldIndex, Boolean booleanValue) { - throw new UnsupportedOperationException(); - } - - public void setBooleanValues(int fieldIndex, List<Boolean> booleanValues) { - throw new UnsupportedOperationException(); - } - - public void setDoubleValue(int fieldIndex, Double doubleValue) { - throw new UnsupportedOperationException(); - } - - public void setDoubleValues(int fieldIndex, List<Double> doubleValues) { - throw new UnsupportedOperationException(); - } - - public void setFloatValue(int fieldIndex, Float floatValue) { - throw new UnsupportedOperationException(); - } - - public void setFloatValues(int fieldIndex, List<Float> floatValues) { - throw new UnsupportedOperationException(); - } - - public void setIntegerValue(int fieldIndex, Integer integerValue) { - throw new UnsupportedOperationException(); - } - - public void setIntegerValues(int fieldIndex, List<Integer> integerValues) { - throw new UnsupportedOperationException(); - } - - public void setInt96Value(int fieldIndex, Binary int96Value) { - throw new UnsupportedOperationException(); - } - - public void setInt96Values(int fieldIndex, List<Binary> int96Values) { - throw new UnsupportedOperationException(); - } - - public void setNanoTimeValue(int fieldIndex, Binary nanoTimeValue) { - throw new UnsupportedOperationException(); - } - - public void setNanoTimeValues(int fieldIndex, List<Binary> nanoTimeValues) { - throw new UnsupportedOperationException(); - } - - public void setLongValue(int fieldIndex, Long longValue) { - throw new UnsupportedOperationException(); - } - - public void setLongValues(int fieldIndex, List<Long> longValues) { - throw new UnsupportedOperationException(); - } - - public void setStringValue(int fieldIndex, String stringValue) { - throw new UnsupportedOperationException(); - } - - public void setStringValues(int fieldIndex, List<String> stringValues) { - throw new UnsupportedOperationException(); - } - - public void setGeometryValue(int fieldIndex, Geometry geometryValue) { - throw new UnsupportedOperationException(); - } - - public void setGeometryValues(int fieldIndex, List<Geometry> geometryValues) { - throw new UnsupportedOperationException(); - } - - public void setEnvelopeValue(int fieldIndex, Envelope envelopeValue) { - throw new UnsupportedOperationException(); - } - - public void setEnvelopeValues(int fieldIndex, List<Envelope> envelopeValues) { - throw new UnsupportedOperationException(); - } - - public void setGroupValue(int fieldIndex, GeoParquetGroup groupValue) { - throw new UnsupportedOperationException(); - } - - public void setGroupValues(int fieldIndex, List<GeoParquetGroup> groupValues) { - throw new UnsupportedOperationException(); - } - - public void setBinaryValue(String fieldName, Binary binaryValue) { - throw new UnsupportedOperationException(); - } - - public void setBinaryValues(String fieldName, List<Binary> binaryValues) { - throw new UnsupportedOperationException(); - } - - public void setBooleanValue(String fieldName, Boolean booleanValue) { - throw new UnsupportedOperationException(); - } - - public void setBooleanValues(String fieldName, List<Boolean> booleanValues) { - throw new UnsupportedOperationException(); - } - - public void setDoubleValue(String fieldName, Double doubleValue) { - throw new UnsupportedOperationException(); - } - - public void setDoubleValues(String fieldName, List<Double> doubleValues) { - throw new UnsupportedOperationException(); - } - - public void setFloatValue(String fieldName, Float floatValue) { - throw new UnsupportedOperationException(); - } - - public void setFloatValues(String fieldName, List<Float> floatValues) { - throw new UnsupportedOperationException(); - } - - public void setIntegerValue(String fieldName, Integer integerValue) { - throw new UnsupportedOperationException(); - } - - public void setIntegerValues(String fieldName, List<Integer> integerValues) { - throw new UnsupportedOperationException(); - } - - public void setInt96Value(String fieldName, Binary int96Value) { - throw new UnsupportedOperationException(); - } - - public void setInt96Values(String fieldName, List<Binary> int96Values) { - throw new UnsupportedOperationException(); - } - - public void setNanoTimeValue(String fieldName, Binary nanoTimeValue) { - throw new UnsupportedOperationException(); - } - - public void setNanoTimeValues(String fieldName, List<Binary> nanoTimeValues) { - throw new UnsupportedOperationException(); - } - - public void setLongValue(String fieldName, Long longValue) { - throw new UnsupportedOperationException(); - } - - public void setLongValues(String fieldName, List<Long> longValues) { - throw new UnsupportedOperationException(); - } - - public void setStringValue(String fieldName, String stringValue) { - throw new UnsupportedOperationException(); - } - - public void setStringValues(String fieldName, List<String> stringValues) { - throw new UnsupportedOperationException(); - } - - public void setGeometryValue(String fieldName, Geometry geometryValue) { - throw new UnsupportedOperationException(); - } - - public void setGeometryValues(String fieldName, List<Geometry> geometryValues) { - throw new UnsupportedOperationException(); - } - - public void setEnvelopeValue(String fieldName, Envelope envelopeValue) { - throw new UnsupportedOperationException(); - } - - public void setEnvelopeValues(String fieldName, List<Envelope> envelopeValues) { - throw new UnsupportedOperationException(); - } - - public void setGroupValue(String fieldName, GeoParquetGroup groupValue) { - throw new UnsupportedOperationException(); - } - - public void setGroupValues(String fieldName, List<GeoParquetGroup> groupValues) { - throw new UnsupportedOperationException(); - } - /** * A GeoParquet schema that describes the fields of a group and can easily be introspected. *
