Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOCS] Fix spelling #765

Merged
merged 1 commit into from
Feb 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static void TearDown()
}

@Test
public void testFlipPolygonCoordiantes()
public void testFlipPolygonCoordinates()
{
PolygonRDD spatialRDD = new PolygonRDD(sc, InputLocation, splitter, true, numPartitions, StorageLevel.MEMORY_ONLY());
Polygon oldGeom = spatialRDD.rawSpatialRDD.take(1).get(0);
Expand Down
2 changes: 1 addition & 1 deletion docs/api/flink/Function.md
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ SELECT ST_NDims(ST_GeomFromEWKT('POINT(1 1 2)'))

Output: `3`

Spark SQL example with x,y co-ordinate:
Spark SQL example with x,y coordinate:

```sql
SELECT ST_NDims(ST_GeomFromText('POINT(1 1)'))
Expand Down
2 changes: 1 addition & 1 deletion docs/api/sql/Function.md
Original file line number Diff line number Diff line change
Expand Up @@ -911,7 +911,7 @@ SELECT ST_NDims(ST_GeomFromEWKT('POINT(1 1 2)'))

Output: `3`

Spark SQL example with x,y co-ordinate:
Spark SQL example with x,y coordinate:

```sql
SELECT ST_NDims(ST_GeomFromText('POINT(1 1)'))
Expand Down
2 changes: 1 addition & 1 deletion docs/setup/install-scala.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ There are two ways to use a Scala or Java library with Apache Spark. You can use

2. Run Spark shell with `--packages` option. This command will automatically download Sedona jars from Maven Central.
```
./bin/spark-shell --packages MavenCoordiantes
./bin/spark-shell --packages MavenCoordinates
```

* Local mode: test Sedona without setting up a cluster
Expand Down
2 changes: 1 addition & 1 deletion docs/setup/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ This version is a maintenance release on Sedona 1.0.0 line. It includes bug fixe

### Known issue

In Sedona v1.0.1 and earlier versions, the Spark dependency in setup.py was configured to be ==< v3.1.0== [by mistake](https://github.com/apache/sedona/blob/8235924ac80939cbf2ce562b0209b71833ed9429/python/setup.py#L39). When you install Sedona Python (apache-sedona v1.0.1) from Pypi, pip might uninstall PySpark 3.1.1 and install PySpark 3.0.2 on your machine.
In Sedona v1.0.1 and earlier versions, the Spark dependency in setup.py was configured to be ==< v3.1.0== [by mistake](https://github.com/apache/sedona/blob/8235924ac80939cbf2ce562b0209b71833ed9429/python/setup.py#L39). When you install Sedona Python (apache-sedona v1.0.1) from PyPI, pip might uninstall PySpark 3.1.1 and install PySpark 3.0.2 on your machine.

Three ways to fix this:

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/python-vector-osm.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ path = "hdfs://776faf4d6a1e:8020/"+file_name
df = spark.read.json(path, multiLine = "true")
```

### Consulting and organizing data for analisis
### Consulting and organizing data for analysis

```
from pyspark.sql.functions import explode, arrays_zip
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/viz.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ LATERAL VIEW explode(ST_Pixelize(ST_Transform(shape, 'epsg:4326','epsg:3857'), 2
This will give you a 256*256 resolution image after you run ST_Render at the end of this tutorial.

!!!warning
We highly suggest that you should use ST_Transform to transform coordiantes to a visualization-specific coordinate system such as epsg:3857. Otherwise you map may look distorted.
We highly suggest that you should use ST_Transform to transform coordinates to a visualization-specific coordinate system such as epsg:3857. Otherwise you map may look distorted.

### Aggregate pixels

Expand Down