NoeFlandre commited on
Commit
efa4ff1
·
verified ·
1 Parent(s): d0442b0

Upload per_country/canada-prince-edward-island/README.md with huggingface_hub

Browse files
per_country/canada-prince-edward-island/README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # canada-prince-edward-island
2
+
3
+ 4,579 polygons from `canada-prince-edward-island-latest.osm.pbf` on Geofabrik
4
+ ([source](https://download.geofabrik.de/north-america/canada/prince-edward-island.html)), filtered by the
5
+ [22,075-tag whitelist](https://github.com/NoeFlandre/osm-stats) and
6
+ classified by continent + size bin.
7
+
8
+ | field | value |
9
+ |-------|-------|
10
+ | country | `canada-prince-edward-island` |
11
+ | polygons | **4,579** |
12
+ | extract_status | **clean** |
13
+ | pbf_date | 2026-07-05 |
14
+ | source | `canada-prince-edward-island-latest.osm.pbf` |
15
+ | Geofabrik extract | <https://download.geofabrik.de/north-america/canada/prince-edward-island.html> |
16
+
17
+ ## Geometry
18
+
19
+ The parquet file in this folder
20
+ (`canada-prince-edward-island.parquet`) has the same schema as the combined
21
+ `combined/all_world.parquet`. Each row carries the polygon
22
+ **geometry as WKT** (default), plus centroid + area + the
23
+ whitelist-matched tag.
24
+
25
+ Load with:
26
+
27
+ ```python
28
+ import pyarrow.parquet as pq
29
+ table = pq.read_table("per_country/canada-prince-edward-island/canada-prince-edward-island.parquet")
30
+ df = table.to_pandas()
31
+ # df["geometry_wkt"] is a column of WKT strings; parse with shapely.wkt.loads
32
+ ```
33
+
34
+ ## Notes
35
+
36
+ Canada-Prince-Edward-Island has 4,579 polygons in this dataset. Extract status: **clean**. Source: Geofabrik [`canada-prince-edward-island-latest.osm.pbf`](https://download.geofabrik.de/north-america/canada/prince-edward-island.html).