gpkg_spatial_ref_sys | R Documentation |
GeoPackage Spatial Reference System
gpkg_spatial_ref_sys(x)
gpkg_list_srs(x, column_name = "srs_id")
gpkg_create_spatial_ref_sys(x, default = TRUE, query_string = FALSE)
gpkg_add_spatial_ref_sys(
x,
srs_name = "",
srs_id = NULL,
organization = "",
organization_coordsys_id = 0L,
definition = "",
description = "",
query_string = FALSE
)
gpkg_delete_spatial_ref_sys(x, srs_id = NULL)
x |
A geopackage object |
column_name |
Default: |
default |
logical or character. If |
query_string |
logical. Return SQL queries without executing? Default: |
srs_name |
character. Spatial Reference System Name, for example |
srs_id |
integer. Spatial Reference System ID, for example |
organization |
character. Organization, for example |
organization_coordsys_id |
integer. Organization Coordinate System ID, for example |
definition |
character. WKT2019 Coordinate Reference System description string |
description |
character. Description |
gpkg_spatial_ref_sys()
: data.frame
gpkg_list_srs()
: vector of values from specified column_name
gpkg_create_spatial_ref_sys()
: integer. Result of running sequential gpkg_execute()
statements. This method is run for the side-effect of creating the table if needed, and adding any "default" records.
gpkg_add_spatial_ref_sys()
: integer result of executing SQL statement
gpkg_delete_spatial_ref_sys()
: integer result of executing SQL statement
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.