| 1234567891011121314151617181920212223242526272829303132333435 |
- ## Arguments
- # \code{\link{brocolors}}
- ## Mina:
- #' @param dir The directory where the shapefiles are located.
- #' @param layer str Layer to use.
- #' @param schema str A database schema name.
- #' @param conf A list() of configuration variables. Default values \code{\link[ruut]{get_config}}.
- #' @param x object of class 'sf', 'sfc' or 'sfg'.
- #' @param type num select value: 1-3. 0: Envelope (Bounding Box), 1: Minimum Oriented Rectangle, 2: Minimum Enclosing Circle, 3: Convex Hull.
- #' @param x object of 'qgis_result' spatial object.
- #' @param id A specified feature id will be processed. Unique field database. Default value 'fid'.
- #' @param crs_source CRS source CRS for example 'EPSG:3301' (Estonia). Default is 'EPSG:4326'.
- #' @param crs_target CRS target CRS for example 'EPSG:4326'. Default is 'EPSG:4326'.
- #' @param geometry_type str Force a geometry type for new layer. One of: NONE, GEOMETRY, POINT, LINESTRING, POLYGON, GEOMETRYCOLLECTION, MULTIPOINT, MULTIPOLYGON, or MULTILINESTRING, or PROMOTE_TO_MULTI or CONVERT_TO_LINEAR. Add "25D" for 3D layers.
- #' @param ... Passed to processx::run().
- #' @param sort If TRUE, will show the largest groups at the top.
- #' @param env A list() of environment variables. Defaults to qgis_env().
- #' @param path A path to the 'qgis_process' executable. Defaults to qgis_path().
- #' @param action An action to take if the 'qgis_process' executable could not be found.
- #' @param quiet Use FALSE to display more information about the command, possibly useful for debugging.
- #' @param query Use TRUE to refresh the cached value.
- #' @param x An object passed to a QGIS processing algorithm
- #' @param spec A list() with values for algorithm, name, description, and qgis_type. See qgis_argument_spec() to create a blank spec for testing.
- #' @param value The result of as_qgis_argument() after the QGIS processing algorithm has been run.
- #' @param algorithm A qualified algorithm name (e.g., "native:filedownloader") or a path to a QGIS model file.
- #' @param name, description, qgis_type, available_values, acceptable_values Column values of arguments denoting the argument name, description, and acceptable values.
- #' @param arguments The result of qgis_arguments().
- #' @param src A data source
|