The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.

How to edit GPS traces

WARNING: This vignette contain examples that can edit your GPX traces at OpenStreetMap.org. If you prefer to use the testing server, create a user there and configure osmapiR to use it.

library(osmapiR)
set_osmapi_connection(server = "testing") # set the testing server

Upload a local gpx file:

gpx_path <- system.file("extdata", "St_Geroni.gpx", package = "osmapiR")
gpx_id <- osm_create_gpx(
  file = gpx_path,
  description = "Test create gpx with osmapiR.",
  tags = c("testing", "osmapiR")
)

Update the gpx trace metadata:

ori_trace <- osm_get_gpx_metadata(gpx_id = gpx_id)
upd_trace <- osm_update_gpx(
  gpx_id = gpx_id, name = "updated.gpx", description = "Test update gpx with osmapiR",
  tags = c("testing", "osmapiR", "updated"), visibility = "identifiable"
)

Delete the gpx trace:

osm_delete_gpx(gpx_id = gpx_id)

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.