Title: Making Geospatial Objects
Version: 2.0.0
Description: Draw geospatial objects by clicks on the map. This packages can help data analyst who want to check their own geospatial hypothesis but has no ready-made geospatial objects.
Depends: R (≥ 3.6.0)
License: GPL-3
Encoding: UTF-8
LazyData: true
RoxygenNote: 7.1.0
URL: https://github.com/Curycu/geodrawr
BugReports: https://github.com/Curycu/geodrawr/issues
Imports: sf (≥ 0.9-0), leaflet (≥ 2.0.0), shiny (≥ 1.4.0), shinydashboard (≥ 0.7.0)
NeedsCompilation: no
Packaged: 2020-11-08 16:51:21 UTC; kai.hana
Author: Heoncheol Ha ORCID iD [aut, cre]
Maintainer: Heoncheol Ha <hancury@gmail.com>
Repository: CRAN
Date/Publication: 2020-11-08 17:10:02 UTC

Making lines by clicks on the map

Description

This function run a Shiny application with map. You can shape your own geospatial line by clicks on the map and complete it with make button. If you click save button then your completed geospatial lines will be saved as a RDS file.

Usage

draw_lines()

Value

An object that represents the app. Printing the object or passing it to shiny::runApp() will run the app.

Examples

# Only run this example in interactive R sessions
if (interactive()) draw_lines()

Making points by clicks on the map

Description

This function run a Shiny application with map. You can make your own geospatial point by click on the map. If you click save button then your geospatial points will be saved as a RDS file.

Usage

draw_points()

Value

An object that represents the app. Printing the object or passing it to shiny::runApp() will run the app.

Examples

# Only run this example in interactive R sessions
if (interactive()) draw_points()

Making polygons by clicks on the map

Description

This function run a Shiny application with map. You can shape your own geospatial polygon by clicks on the map and complete it with make button. If you click save button then your completed geospatial polygons will be saved as a RDS file.

Usage

draw_polygons()

Value

An object that represents the app. Printing the object or passing it to shiny::runApp() will run the app.

Examples

# Only run this example in interactive R sessions
if (interactive()) draw_polygons()