djouallah opened a new issue, #133:
URL: https://github.com/apache/sedona-db/issues/133

   it seems parquet with geometry does not works
   
   
   
   ```
   import duckdb
   sd = sedona.db.connect()
   url = 
"https://raw.githubusercontent.com/datasets/geo-countries/master/data/countries.geojson";
   local_file = "/lakehouse/default/Files/xxxx.geojson"
   urllib.request.urlretrieve(url, local_file)
   duckdb.sql(f""" copy(   FROM ST_Read('{local_file}')) TO 'countries.parquet' 
(FORMAT PARQUET); """)
   result = sd.read_parquet('countries.parquet')
   result.show()
   ```
   
   error
   
   SedonaError: Parquet error: Could not parse metadata: bad data


-- 
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]

Reply via email to