From 0294677ec65a6eabb8d3d5737a1af863c4d4a7bf Mon Sep 17 00:00:00 2001 From: Emma <64460989+Emma-Song@users.noreply.github.com> Date: Mon, 20 Jul 2020 16:14:53 +0800 Subject: [PATCH] [skip ci]fix typo (#895) --- python/arctern/geoseries/geoseries.py | 4 ++-- spark/arctern_spark/geodataframe.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/python/arctern/geoseries/geoseries.py b/python/arctern/geoseries/geoseries.py index cefb3f1bf..500204789 100644 --- a/python/arctern/geoseries/geoseries.py +++ b/python/arctern/geoseries/geoseries.py @@ -836,7 +836,7 @@ def difference(self, other): def symmetric_difference(self, other): """ - For each geometry in the GeoSeries and the corresponding geometry given in ``other``, returns a geometry representing the portions of the two geometries that do not interset. + For each geometry in the GeoSeries and the corresponding geometry given in ``other``, returns a geometry representing the portions of the two geometries that do not intersect. Parameters ---------- @@ -1652,7 +1652,7 @@ def intersection(self, other): def union(self, other): """ - This function returns a geometry being a union of two input geometries. + Returns a geometry being a union of two input geometries. Parameters ---------- diff --git a/spark/arctern_spark/geodataframe.py b/spark/arctern_spark/geodataframe.py index 75c53a923..837d9b6ed 100644 --- a/spark/arctern_spark/geodataframe.py +++ b/spark/arctern_spark/geodataframe.py @@ -483,7 +483,7 @@ def reset_index(self, level=None, drop=False, inplace=False, col_level=0, col_fi @classmethod def from_file(cls, filename, **kwargs): """ - Constructs a GeoDataFrame from a file or url. + Constructs a GeoDataFrame from a file or URL. Parameters -----------