Vector data

Set directory

Set parameters

Set filenames

Reading shapefile

With GeoPandas we can read a shapefile in a GeoDataFrame and apply many methods on it.

GeoPandas has three basic classes of geometric objects (which are actually shapely objects):

We will open two shapefiles :

Manipulation on in situ dataset

1. Clean and merge two geodataframes

1.1 Get same columns in the two geodataframes

1.2 Change the crop code (code) by another more generic crop code (sub_nb)

Only for the cropland dataset !

1.3 Concatenate several geodataframes

1.4 Add information from the Sen4Stat Look-Up-Table (LUT)

1.5 Select polygons within the ROI extent - OPTIONAL

  1. Clip polygons with the ROI extent --> can potentially create "multi-polygons" geometries that will cause problems later on !
  2. Select polygons within the ROI extent

Warning :

Both layers must be in the same Coordinate Reference System (CRS). The GeoDataFrame will be clipped to the full extent of the clip object.

If there are multiple polygons in mask, data from GeoDataFrame will be clipped to the total boundary of all polygons in mask.

1.5.1 Clip polygons to the ROI extent
1.5.2 Select polygons within the ROI extent

Write geodataframe into a shapefile