Skip to content

Commit a55e4b8

Browse files
committed
Update filtering on time-series doc page
ID changed out from underneath us. Use the code CUYA which seems to be used fairly broadly by park service including in the URLs of park website etc Signed-off-by: Jason T. Brown <[email protected]>
1 parent 681dc66 commit a55e4b8

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pyrasterframes/src/main/python/docs/time-series.pymd

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ def simplify(g, tol):
4141
park_vector = park_vector.withColumn('geo_simp', simplify('geometry', lit(0.001))) \
4242
.select('geo_simp') \
4343
.hint('broadcast')
44-
45-
4644
```
4745

4846
## Catalog Read
@@ -56,7 +54,7 @@ park_cat = cat \
5654
(cat.acquisition_date > lit('2018-02-19')) &
5755
(cat.acquisition_date < lit('2018-07-01'))
5856
) \
59-
.crossJoin(park_vector.filter('OBJECTID == 380')) #only coyahuga
57+
.crossJoin(park_vector.filter('UNIT_CODE == "CUVA"')) #only coyahuga
6058

6159
```
6260

0 commit comments

Comments
 (0)