Skip to content

Commit fc0a73d

Browse files
committed
Change instances of "which" to "that"
1 parent c47fc54 commit fc0a73d

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

CHANGES

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ This is the 1.0.0 release. There have been no changes since 1.0rc1.
3434

3535
- Add shapely.ops functions (#23).
3636
- Add builtin buffer, distance, length, simplify, and set_precision functions
37-
which allow projected computation of these values (#27).
37+
that allow projected computation of these values (#27).
3838

3939
1.0a2 (2023-03-01)
4040
------------------
4141

42-
- Added a new builtin area function which allows projected area computation
42+
- Added a new builtin area function that allows projected area computation
4343
(#21).
4444
- Add short options -r for raw mode and -n for no input (#18).
4545
- The expression parser has been fixed so that functions with underscores and

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A package of Fiona CLI plugins from Planet Labs.
77
[![](https://github.com/planetlabs/fio-planet/actions/workflows/test.yml/badge.svg)](https://github.com/planetlabs/fio-planet/actions/workflows/test.yml)
88
[![Documentation Status](https://readthedocs.org/projects/fio-planet/badge/?version=latest)](https://fio-planet.readthedocs.io/en/latest/?badge=latest)
99

10-
These CLI commands are for creating Unix pipelines which manipulate streams of
10+
These CLI commands are for creating Unix pipelines that manipulate streams of
1111
GeoJSON features. Such pipelines provide a subset of the functionality of more
1212
complicated tools such as GeoPandas, PostGIS, or QGIS, and are intended for use
1313
with streams of hundreds of features, where the overhead of JSON serialization
@@ -44,7 +44,7 @@ table. fio-filter decimates a seqence of features, fio-map multiplies and
4444
transforms features, and fio-reduce turns a sequence of many features into a
4545
sequence of exactly one. In combination, many transformations are possible.
4646

47-
Expressions take the form of parenthesized lists which may contain other
47+
Expressions take the form of parenthesized lists that may contain other
4848
expressions. The first item in a list is the name of a function or method, or
4949
an expression that evaluates to a function. The second item is the function's
5050
first argument or the object to which the method is bound. The remaining list
@@ -94,7 +94,7 @@ given point.
9494
```
9595

9696
fio-reduce evaluates expressions in the context of the sequence of all input
97-
geometries, which is named `c`. For example, this expression dissolves input
97+
geometries, named `c`. For example, this expression dissolves input
9898
geometries using Shapely's `unary_union`.
9999

100100
```lisp

docs/expressions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Expressions and functions
22
=========================
33

4-
Expressions take the form of parenthesized lists which may contain other
4+
Expressions take the form of parenthesized lists that may contain other
55
expressions. The first item in a list is the name of a function or method, or
66
an expression that evaluates to a function. The second item is the function's
77
first argument or the object to which the method is bound. The remaining list
@@ -166,7 +166,7 @@ of the given point.
166166
```
167167

168168
`fio-reduce` evaluates expressions in the context of the sequence of all input
169-
geometries, which is named `c`. For example, this expression dissolves input
169+
geometries, named `c`. For example, this expression dissolves input
170170
geometries using Shapely's `unary_union`.
171171

172172
```lisp

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ fio-planet
44
A package of [Fiona CLI](https://fiona.readthedocs.io/en/stable/cli.html)
55
plugins from Planet Labs.
66

7-
These CLI commands are for creating Unix pipelines which manipulate streams of
7+
These CLI commands are for creating Unix pipelines that manipulate streams of
88
GeoJSON features. Such pipelines provide a subset of the functionality of more
99
complicated tools such as GeoPandas, PostGIS, or QGIS, and are intended for use
1010
with streams of hundreds of features, where the overhead of JSON serialization
@@ -27,7 +27,7 @@ table. fio-filter decimates a seqence of features, fio-map multiplies and
2727
transforms features, and fio-reduce turns a sequence of many features into a
2828
sequence of exactly one. In combination, many transformations are possible.
2929

30-
Expressions take the form of parenthesized lists which may contain other
30+
Expressions take the form of parenthesized lists that may contain other
3131
expressions. The first item in a list is the name of a function or method, or
3232
an expression that evaluates to a function. The second item is the function's
3333
first argument or the object to which the method is bound. The remaining list
@@ -78,7 +78,7 @@ given point.
7878
```
7979

8080
fio-reduce evaluates expressions in the context of the sequence of all input
81-
geometries, which is named `c`. For example, this expression dissolves input
81+
geometries, named `c`. For example, this expression dissolves input
8282
geometries using Shapely's `unary_union`.
8383

8484
```lisp

src/fio_planet/cli.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ def map_cmd(pipeline, raw, no_input, dump_parts, use_rs):
6363
command prints pipeline results without wrapping them in a feature
6464
object.
6565
66-
The pipeline is a string which, when evaluated by fio-map, produces
66+
The pipeline is a string that, when evaluated by fio-map, produces
6767
a new geometry object. The pipeline consists of expressions in the
68-
form of parenthesized lists which may contain other expressions.
68+
form of parenthesized lists that may contain other expressions.
6969
The first item in a list is the name of a function or method, or an
7070
expression that evaluates to a function. The second item is the
7171
function's first argument or the object to which the method is
@@ -123,12 +123,12 @@ def map_cmd(pipeline, raw, no_input, dump_parts, use_rs):
123123
def filter_cmd(pipeline, use_rs):
124124
"""Evaluate pipeline expressions to filter GeoJSON features.
125125
126-
The pipeline is a string which, when evaluated, gives a new value
126+
The pipeline is a string that, when evaluated, gives a new value
127127
for each input feature. If the value evaluates to True, the feature
128128
passes through the filter. Otherwise the feature does not pass.
129129
130130
The pipeline consists of expressions in the
131-
form of parenthesized lists which may contain other expressions.
131+
form of parenthesized lists that may contain other expressions.
132132
The first item in a list is the name of a function or method, or an
133133
expression that evaluates to a function. The second item is the
134134
function's first argument or the object to which the method is
@@ -178,9 +178,9 @@ def reduce_cmd(pipeline, raw, use_rs, zip_properties):
178178
Given a sequence of GeoJSON features (RS-delimited or not) on stdin
179179
this prints a single value using a provided transformation pipeline.
180180
181-
The pipeline is a string which, when evaluated, produces
181+
The pipeline is a string that, when evaluated, produces
182182
a new geometry object. The pipeline consists of expressions in the
183-
form of parenthesized lists which may contain other expressions.
183+
form of parenthesized lists that may contain other expressions.
184184
The first item in a list is the name of a function or method, or an
185185
expression that evaluates to a function. The second item is the
186186
function's first argument or the object to which the method is

src/fio_planet/features.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ def map_feature(
298298
def reduce_features(expression: str, features: Iterable[Mapping]) -> Generator:
299299
"""Reduce a collection of features to a single value.
300300
301-
The pipeline is a string which, when evaluated by snuggs, produces
301+
The pipeline is a string that, when evaluated by snuggs, produces
302302
a new value. The name of the input feature collection in the
303303
context of the pipeline is "c".
304304

0 commit comments

Comments
 (0)