We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c720829 commit 1f35858Copy full SHA for 1f35858
content/manipulation/04c_API_TP.qmd
@@ -1467,12 +1467,13 @@ Créer le polygone à partir des géolocalisations
1467
1468
```{.python}
1469
from shapely.geometry import Polygon
1470
-coordinates = list(zip(adresses_geocoded['longitude'], adresses_geocoded['latitude']))
+coordinates = list(zip(adresses_geocoded["longitude"], adresses_geocoded["latitude"]))
1471
polygon = Polygon(coordinates)
1472
1473
-polygon = gpd.GeoDataFrame(index=[0], crs='epsg:4326', geometry=[polygon])
+polygon = gpd.GeoDataFrame(index=[0], crs="epsg:4326", geometry=[polygon])
1474
polygon
1475
```
1476
+
1477
</details>
1478
1479
:::
0 commit comments