Imbruced commented on code in PR #1825: URL: https://github.com/apache/sedona/pull/1825#discussion_r1967956661
########## python/sedona/utils/geoarrow.py: ########## @@ -14,13 +14,25 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +import itertools +from typing import List, Callable # We may be able to achieve streaming rather than complete materialization by using # with the ArrowStreamSerializer (instead of the ArrowCollectSerializer) -from sedona.sql.types import GeometryType from sedona.sql.st_functions import ST_AsEWKB +from pyspark.sql import SparkSession +from pyspark.sql import DataFrame +from pyspark.sql.types import StructType, StructField, DataType, ArrayType, MapType +import pyarrow as pa Review Comment: Good idea. I'll make all the changes later today. Thank you for the review! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
