Skip to content

Commit

Permalink
Move the flatgeobuf reader and writer in a format package
Browse files Browse the repository at this point in the history
  • Loading branch information
bchapuis committed Nov 7, 2024
1 parent 86065fc commit 9b2bf3d
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package org.apache.baremaps.flatgeobuf;
package org.apache.baremaps.flatgeobuf.format;

import java.nio.ByteBuffer;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package org.apache.baremaps.flatgeobuf;
package org.apache.baremaps.flatgeobuf.format;

import java.io.IOException;
import java.io.InputStream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package org.apache.baremaps.flatgeobuf;
package org.apache.baremaps.flatgeobuf.format;


import com.google.flatbuffers.FlatBufferBuilder;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package org.apache.baremaps.flatgeobuf;
package org.apache.baremaps.flatgeobuf.format;

import com.google.flatbuffers.FlatBufferBuilder;
import java.util.Arrays;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package org.apache.baremaps.flatgeobuf;
package org.apache.baremaps.flatgeobuf.format;

import com.google.common.io.LittleEndianDataInputStream;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
import java.util.Iterator;
import java.util.NoSuchElementException;
import java.util.Objects;
import org.apache.baremaps.flatgeobuf.FlatGeoBuf;
import org.apache.baremaps.flatgeobuf.FlatGeoBufReader;
import org.apache.baremaps.flatgeobuf.FlatGeoBufWriter;
import org.apache.baremaps.flatgeobuf.PackedRTree;
import org.apache.baremaps.flatgeobuf.format.FlatGeoBuf;
import org.apache.baremaps.flatgeobuf.format.FlatGeoBufReader;
import org.apache.baremaps.flatgeobuf.format.FlatGeoBufWriter;
import org.apache.baremaps.flatgeobuf.format.PackedRTree;
import org.apache.baremaps.store.*;
import org.apache.baremaps.store.DataColumn.Type;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@


import java.util.*;
import org.apache.baremaps.flatgeobuf.FlatGeoBuf;
import org.apache.baremaps.flatgeobuf.FlatGeoBuf.Feature;
import org.apache.baremaps.flatgeobuf.format.FlatGeoBuf;
import org.apache.baremaps.flatgeobuf.format.FlatGeoBuf.Feature;
import org.apache.baremaps.flatgeobuf.generated.ColumnType;
import org.apache.baremaps.store.*;
import org.apache.baremaps.store.DataColumn.Cardinality;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@
import java.nio.file.StandardOpenOption;
import java.util.ArrayList;
import java.util.List;

import org.apache.baremaps.flatgeobuf.format.FlatGeoBuf;
import org.apache.baremaps.flatgeobuf.format.FlatGeoBufReader;
import org.apache.baremaps.flatgeobuf.format.FlatGeoBufWriter;
import org.apache.baremaps.flatgeobuf.generated.Feature;
import org.apache.baremaps.flatgeobuf.generated.Header;
import org.apache.baremaps.testing.TestFiles;
Expand Down

0 comments on commit 9b2bf3d

Please sign in to comment.