This is an automated email from the ASF dual-hosted git repository. jiayu pushed a commit to branch docs-mar-07 in repository https://gitbox.apache.org/repos/asf/sedona.git
commit 697673de99dd5f8e6fd0f573e27046aca592e699 Author: Jia Yu <[email protected]> AuthorDate: Sun Mar 9 21:22:08 2025 -0700 Clean up maven coordinates --- docs/setup/maven-coordinates.md | 46 ----------------------------------------- 1 file changed, 46 deletions(-) diff --git a/docs/setup/maven-coordinates.md b/docs/setup/maven-coordinates.md index 90d5a2c419..e54870be7b 100644 --- a/docs/setup/maven-coordinates.md +++ b/docs/setup/maven-coordinates.md @@ -169,52 +169,6 @@ The optional GeoTools library is required if you want to use CRS transformation, </dependency> ``` -### netCDF-Java 5.4.2 - -This is required only if you want to read HDF/NetCDF files using `RS_FromNetCDF`. Note that this JAR is not in Maven Central so you will need to add this repository to your pom.xml or build.sbt, or specify the URL in Spark Config `spark.jars.repositories` or spark-submit `--repositories` option. - -!!!warning - This jar was a required dependency due to a bug in Sedona 1.5.1. You will need to specify the URL of the repository in `spark.jars.repositories` if you use 1.5.1. This has been fixed in Sedona 1.5.2 and later. - -Under BSD 3-clause (compatible with Apache 2.0 license) - -!!! abstract "Add HDF/NetCDF dependency" - - === "Sedona 1.3.1+" - - Add unidata repo to your pom.xml - - ``` - <repositories> - <repository> - <id>unidata-all</id> - <name>Unidata All</name> - <url>https://artifacts.unidata.ucar.edu/repository/unidata-all/</url> - </repository> - </repositories> - ``` - - Then add cdm-core to your POM dependency. - - ```xml - <dependency> - <groupId>edu.ucar</groupId> - <artifactId>cdm-core</artifactId> - <version>5.4.2</version> - </dependency> - ``` - - === "Before Sedona 1.3.1" - - ```xml - <!-- https://mvnrepository.com/artifact/org.datasyslab/sernetcdf --> - <dependency> - <groupId>org.datasyslab</groupId> - <artifactId>sernetcdf</artifactId> - <version>0.1.0</version> - </dependency> - ``` - ## Use Sedona unshaded jars !!!warning
