-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
39100dd
commit 90d7667
Showing
13 changed files
with
462 additions
and
410 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
use std::sync::Arc; | ||
|
||
use crate::array::*; | ||
use crate::chunked_array::*; | ||
use crate::ffi::stream_chunked::ArrowArrayStreamReader; | ||
use crate::table::GeoTable; | ||
use arrow::datatypes::Field; | ||
use arrow::ffi::{FFI_ArrowArray, FFI_ArrowSchema}; | ||
use arrow::ffi_stream::{ | ||
ArrowArrayStreamReader as ArrowRecordBatchStreamReader, FFI_ArrowArrayStream, | ||
}; | ||
use arrow_array::Array; | ||
use arrow_array::{make_array, ArrayRef, RecordBatchReader}; | ||
use geoarrow::array::from_arrow_array; | ||
use geoarrow::chunked_array::{from_arrow_chunks, ChunkedGeometryArrayTrait}; | ||
use geoarrow::datatypes::GeoDataType; | ||
use geoarrow::io::geozero::ToGeometry; | ||
use geoarrow::GeometryArrayTrait; | ||
use geozero::geojson::GeoJsonString; | ||
use pyo3::exceptions::{PyTypeError, PyValueError}; | ||
use pyo3::prelude::*; | ||
use pyo3::types::{PyCapsule, PyDict, PyTuple, PyType}; | ||
use pyo3::{intern, PyAny, PyResult}; |
Oops, something went wrong.