@@ -11,7 +11,7 @@ Reading in Features
1111-------------------
1212
1313A ``FeatureCollection `` can be read from a file with the function
14- :func: `geometric_features.feature_collection. read_feature_collection `:
14+ :func: `geometric_features.read_feature_collection `:
1515
1616.. code-block :: python
1717
@@ -23,7 +23,7 @@ Add a Feature
2323-------------
2424
2525To add a single feature to a ``FeatureColleciton ``, use
26- :meth: `geometric_features.feature_collection. FeatureCollection.add_feature `:
26+ :meth: `geometric_features.FeatureCollection.add_feature `:
2727
2828.. code-block :: python
2929
@@ -35,7 +35,7 @@ Merging Features
3535----------------
3636
3737A ``FeatureCollection `` ``fc2 `` can be merged into another colleciton ``fc1 ``
38- with :meth: `geometric_features.feature_collection. FeatureCollection.merge `:
38+ with :meth: `geometric_features.FeatureCollection.merge `:
3939
4040.. code-block :: python
4141
@@ -48,7 +48,7 @@ Plotting Features
4848-----------------
4949
5050A ``FeatureCollection `` can be plotted on a given map projeciton with
51- :meth: `geometric_features.feature_collection. FeatureCollection.plot `:
51+ :meth: `geometric_features.FeatureCollection.plot `:
5252
5353.. code-block :: python
5454
@@ -63,7 +63,7 @@ Tag Features
6363------------
6464
6565All the features in a ``FeatureCollection `` can be tagged with one or more tags
66- using :meth: `geometric_features.feature_collection. FeatureCollection.tag `:
66+ using :meth: `geometric_features.FeatureCollection.tag `:
6767
6868.. code-block :: python
6969
@@ -78,7 +78,7 @@ Writing out Features
7878--------------------
7979
8080To write out a ``FeatureCollection `` to a ``geojson `` file, call
81- :meth: `geometric_features.feature_collection. FeatureCollection.to_geojson `
81+ :meth: `geometric_features.FeatureCollection.to_geojson `
8282
8383.. code-block :: python
8484
@@ -88,7 +88,7 @@ Set a Group Name
8888----------------
8989
9090To set the ``groupName `` property of a ``FeatureCollection ``, call
91- :meth: `geometric_features.feature_collection. FeatureCollection.set_group_name `.
91+ :meth: `geometric_features.FeatureCollection.set_group_name `.
9292
9393.. code-block :: python
9494
@@ -105,7 +105,7 @@ Combine Features
105105
106106Features in a ``FeatureCollection `` can be combined (fused together into a
107107single feature) using
108- :meth: `geometric_features.feature_collection. FeatureCollection.combine `:
108+ :meth: `geometric_features.FeatureCollection.combine `:
109109
110110.. code-block :: python
111111
@@ -117,7 +117,7 @@ Difference Features
117117
118118Features in a ``FeatureCollection `` can be masked with one or more masking
119119features from another ``FeatureCollection `` using
120- :meth: `geometric_features.feature_collection. FeatureCollection.difference `:
120+ :meth: `geometric_features.FeatureCollection.difference `:
121121
122122.. code-block :: python
123123
@@ -132,7 +132,7 @@ Simplify Features
132132Sometimes, features are made up of segments or polygons with tiny edges that
133133add little relevant detail to the features but make the files describing them
134134needlessly large. In such cases, the features can be simplified by calling
135- :meth: `geometric_features.feature_collection. FeatureCollection.simplify ` with
135+ :meth: `geometric_features.FeatureCollection.simplify ` with
136136and appropriate length scale (in degrees latitude/longitude) over which the
137137feature may be modified to make it simpler. If a length scale of zero is
138138used, the feature will be simplified without any modification tot he shape
@@ -153,7 +153,7 @@ provides a bit of a hack for removing a tiny sliver of the feature around the
153153antimeridian so that the resulting shape remians between -180 and 180 degrees
154154longitude.
155155
156- :meth: `geometric_features.feature_collection. FeatureCollection.fix_antimeridian `
156+ :meth: `geometric_features.FeatureCollection.fix_antimeridian `
157157
158158.. code-block :: python
159159
0 commit comments