jmdu commited on
Commit
9162f15
·
verified ·
1 Parent(s): 3cde3aa

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +61 -0
README.md ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: Hungary Crop Fields (GeoParquet, EUCROPMAP 2022)
3
+ tags:
4
+ - geospatial
5
+ - agriculture
6
+ - crop-mapping
7
+ - polygons
8
+ - geojson
9
+ - geoparquet
10
+ - earth-engine
11
+ task_categories:
12
+ - geospatial-aggregation
13
+ - geospatial-indexing
14
+ license: other # Derived from JRC EUCROPMAP; see "Licensing" below
15
+ language:
16
+ - en
17
+ ---
18
+
19
+ # Hungary Crop Fields (GeoParquet, EUCROPMAP 2022)
20
+
21
+ ## Dataset Summary
22
+
23
+ Vector polygons of crop **fields in Hungary** derived from **EUCROPMAP 2022** and packaged as a compact **GeoParquet**.
24
+ Each feature has a stable `field_id`, crop `field_type` (sunflower or rapeseed), the ADM1 `region` (ASCII slug), and the polygon geometry in **EPSG:4326**. Convenience bounding-box columns (`minx`, `miny`, `maxx`, `maxy`) are included to enable fast spatial indexing without loading full geometries.
25
+
26
+ **What this is:** geometry for fields (one record per field).
27
+ **What this is not:** time series. Pair it with your raster-to-point or gridded time-series (e.g., ERA5-Land, Sentinel-2 aggregates) and assign per-date features to fields via a spatial join.
28
+
29
+ ---
30
+
31
+ ## Contents
32
+
33
+ - **Country:** Hungary
34
+ - **Source:** JRC/D5/EUCROPMAP/V1 (layer: `EU27_2022`)
35
+ - **Year (polygons):** `2022` (`poly_year = 2022`)
36
+ - **Scale:** 10 m (EUCROPMAP native resolution)
37
+ - **Crops:** `sunflower` (code 231), `rapeseed` (code 232)
38
+ - **Minimum field size kept:** `>= 0.05 ha` (500 m²)
39
+ - **Regions (ADM1):**
40
+ `["Bacs-kiskun","Baranya","Bekes","Borsod-abauj-zemplen","Budapest","Csongrad","Fejer","Gyor-moson-sopron","Hajdu-bihar","Heves","Jasz-nagykun-szolnok","Komarom-esztergom","Nograd","Pest","Somogy","Szabolcs-szatmar-bereg","Tolna","Vas","Veszprem","Zala"]`
41
+
42
+ **File(s)**
43
+ - `hungary_fields.parquet` — GeoParquet with (WKB) geometry in EPSG:4326 and bbox columns.
44
+
45
+ ---
46
+
47
+ ## Schema
48
+
49
+ | column | type | description |
50
+ |-------------|----------|--------------------------------------------------------------------------------------------|
51
+ | `field_id` | string | Stable per-feature id |
52
+ | `poly_year` | int | Polygon vintage (always `2022`). |
53
+ | `field_type`| string | Crop type: `sunflower` or `rapeseed`. |
54
+ | `region` | string | ADM1 ASCII slug (e.g., `Bacs-kiskun`). |
55
+ | `geometry` | geometry | Polygon in EPSG:4326 (WKB inside Parquet). |
56
+ | `minx` | float | Bounding box min longitude. |
57
+ | `miny` | float | Bounding box min latitude. |
58
+ | `maxx` | float | Bounding box max longitude. |
59
+ | `maxy` | float | Bounding box max latitude. |
60
+
61
+ ---