Skip to content

Commit 5064f2a

Browse files
author
Shivani Pathak
committed
Updates
1 parent ea32930 commit 5064f2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/04_gis_analysts_data_scientists/coastline_extraction-usa-landsat8_multispectral_imagery.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1144,7 +1144,7 @@
11441144
"## Get the polygon with largest area as it will represent the coastline\n",
11451145
"df = water_poly.layers[0].query().sdf\n",
11461146
"df['MYAREA'] = df.SHAPE.geom.area\n",
1147-
"dfm5 = df[df['Shape__Area']==df['Shape__Area'].max()]\n",
1147+
"dfm5 = df[df['MYAREA']==df['MYAREA'].max()]\n",
11481148
"coast_poly = gis2.content.import_data(dfm5, title='coast_poly'+str(datetime.now().microsecond))"
11491149
]
11501150
},

0 commit comments

Comments
 (0)