Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion beacon-data-lake/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,5 @@ beacon-arrow-bbf = { path = "../beacon-file-formats/beacon-arrow-bbf" }
beacon-arrow-netcdf = { path = "../beacon-file-formats/beacon-arrow-netcdf" }
beacon-arrow-atlas = { path = "../beacon-file-formats/beacon-arrow-atlas" }
beacon-arrow-tiff = { path = "../beacon-file-formats/beacon-arrow-tiff" }
beacon-arrow-zarr = { path = "../beacon-file-formats/beacon-arrow-zarr" }
beacon-arrow-zarr = { path = "../beacon-file-formats/beacon-arrow-zarr" }
beacon-arrow-geoparquet = { path = "../beacon-file-formats/beacon-arrow-geoparquet" }
2 changes: 2 additions & 0 deletions beacon-data-lake/src/file_formats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ use std::sync::Arc;
use beacon_arrow_atlas::datafusion::{AtlasFormatFactory, options::AtlasOptions};
use beacon_arrow_bbf::datafusion::BBFFormatFactory;
use beacon_arrow_csv::datafusion::CsvFormatFactory;
use beacon_arrow_geoparquet::datafusion::GeoParquetFormatFactory;
use beacon_arrow_ipc::datafusion::ArrowFormatFactory;
use beacon_arrow_netcdf::datafusion::{NetCDFFormatFactory, options::NetcdfOptions};
use beacon_arrow_parquet::datafusion::ParquetFormatFactory;
Expand Down Expand Up @@ -40,6 +41,7 @@ pub fn file_formats(
Arc::new(TiffFormatFactory::new(Default::default())),
Arc::new(ZarrFormatFactory),
Arc::new(BBFFormatFactory),
Arc::new(GeoParquetFormatFactory::default()),
];

for format in formats.iter() {
Expand Down
9 changes: 8 additions & 1 deletion beacon-file-formats/beacon-arrow-geoparquet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,17 @@ object_store = { workspace = true }
parquet = { workspace = true }
geoarrow = { workspace = true }
geoarrow-array = { workspace = true }
geoparquet = { workspace = true }
geoarrow-schema = { workspace = true }
geoparquet = { workspace = true, features = ["async"] }
async-trait = { workspace = true }
serde = { workspace = true }
futures = { workspace = true }
tracing = { workspace = true }

beacon-common = { path = "../../beacon-common" }
beacon-datafusion-ext = { path = "../../beacon-datafusion-ext" }

[dev-dependencies]
tempfile = { workspace = true }
tokio = { workspace = true }
bytes = { workspace = true }
Loading
Loading