Skip to contents

This function downloads orthophoto data for a large area specified by a shapefile. The area is divided into a grid of smaller sections to manage the request size. The orthophoto data for each section is requested from the RGUGIK service and combined into a single dataframe.

Usage

ortho_download_big_area_rgugik(x, y)

Arguments

x

The file path to the shapefile defining the area of interest.

y

The number of grid cells to divide the area of interest into.

Value

A dataframe containing the orthophoto data for the specified area.

Examples

if (FALSE) { # \dontrun{
result <- ortho_download_big_area_rgugik("path/to/your/shapefile.shp", 10)
print(result)} # }