diff --git a/doc/source/examples/fci_l1c_natural_color.rst b/doc/source/examples/fci_l1c_natural_color.rst index df84c1c8b1..243fdd0aee 100644 --- a/doc/source/examples/fci_l1c_natural_color.rst +++ b/doc/source/examples/fci_l1c_natural_color.rst @@ -32,7 +32,12 @@ to generate a Natural Color RGB composite over the European area. print(scn.available_composite_names()) # load the datasets/composites of interest - scn.load(['natural_color','vis_04']) + scn.load(['natural_color','vis_04'], upper_right_corner='NE') + # note: the data inside the FCI files is stored upside down. The upper_right_corner='NE' argument + # flips it automatically in upright position. + + # you can access the values of a dataset as a Numpy array with + vis_04_values = scn['vis_04'].values # resample the scene to a specified area (e.g. "eurol1" for Europe in 1km resolution) scn_resampled = scn.resample("eurol", resampler='nearest', radius_of_influence=5000)