Skip to content

Commit 1f35858

Browse files
committed
typo
1 parent c720829 commit 1f35858

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

content/manipulation/04c_API_TP.qmd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1467,12 +1467,13 @@ Créer le polygone à partir des géolocalisations
14671467

14681468
```{.python}
14691469
from shapely.geometry import Polygon
1470-
coordinates = list(zip(adresses_geocoded['longitude'], adresses_geocoded['latitude']))
1470+
coordinates = list(zip(adresses_geocoded["longitude"], adresses_geocoded["latitude"]))
14711471
polygon = Polygon(coordinates)
14721472
1473-
polygon = gpd.GeoDataFrame(index=[0], crs='epsg:4326', geometry=[polygon])
1473+
polygon = gpd.GeoDataFrame(index=[0], crs="epsg:4326", geometry=[polygon])
14741474
polygon
14751475
```
1476+
14761477
</details>
14771478

14781479
:::

0 commit comments

Comments
 (0)