Thanks for the video. How to integrate Apache Sedona with Microsoft Fabric. There is no documentation available where we can follow it properly, till so far we are in the dark and not able to use this fantastic software.
@lyonwj7 ай бұрын
Hi - this GitHub issue has some details on running Apache Sedona in MS Fabric: github.com/apache/sedona/issues/1198
@Stream_Squad10 ай бұрын
Hi Will, nice intro! However, when I replicate the same code, at line 9, I get the following error: AnalysisException: [TABLE_OR_VIEW_NOT_FOUND] The table or view `basins` cannot be found. Verify the spelling and correctness of the schema and catalog. If you did not qualify the name with a schema, verify the current_schema() output, or qualify the name with the correct schema and catalog. To tolerate the error on drop use DROP VIEW IF EXISTS or DROP TABLE IF EXISTS.; line 1 pos 49; 'Project ['ST_Centroid('geometry) AS centroid#226, *] +- 'UnresolvedRelation [basins], [], false
@lyonwj10 ай бұрын
Did you run hucs_df.createOrReplaceTempView("basins") ? That line will create the view. Also, feel free to create an issue at community.wherobots.com where it might be easier to troubleshoot
@Stream_Squad10 ай бұрын
hucs_df.createGlobalTempView("basins") hucs_df.printSchema() This one is working fine!