From c22fda295e8017ba3cacbd8b529f27ded5af88e7 Mon Sep 17 00:00:00 2001 From: edzer Date: Wed, 9 Oct 2024 16:36:11 +0200 Subject: [PATCH] add doc file --- man/st_is_full.Rd | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 man/st_is_full.Rd diff --git a/man/st_is_full.Rd b/man/st_is_full.Rd new file mode 100644 index 000000000..0e46bdf81 --- /dev/null +++ b/man/st_is_full.Rd @@ -0,0 +1,34 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/sfc.R +\name{st_is_full} +\alias{st_is_full} +\alias{st_is_full.sfg} +\alias{st_is_full.sfc} +\alias{st_is_full.sf} +\alias{st_is_full.bbox} +\title{predicate whether a geometry is equal to a POLYGON FULL} +\usage{ +st_is_full(x, ...) + +\method{st_is_full}{sfg}(x, ..., is_longlat = NULL) + +\method{st_is_full}{sfc}(x, ...) + +\method{st_is_full}{sf}(x, ...) + +\method{st_is_full}{bbox}(x, ...) +} +\arguments{ +\item{x}{object of class \code{sfg}, \code{sfc} or \code{sf}} + +\item{...}{ignored, except when it contains a \code{crs} argument to inform unspecified \code{is_longlat}} + +\item{is_longlat}{logical; output of \link{st_is_longlat} of the parent \code{sfc} object} +} +\value{ +logical, indicating whether geometries are POLYGON FULL (a spherical +polygon covering the entire sphere) +} +\description{ +predicate whether a geometry is equal to a POLYGON FULL +}