gpkg_piirkonnale_punktide_lisamine.R 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. #' Piirkonnale andmebaasides olevate punktide lisamine
  2. #'
  3. #' Etteantud piirkonna geomeetrilise piirjoone ('piir') ja selle joone piirikasti ('bb') järele leitakse nende aladega kaetud polügoonid. Andmed salvestatakse GPKG faili kihtidena.
  4. #'
  5. #' @param obj str Objekti nimi. Edaspidi on oluline ainult see nimi. Piirkonna geomeetrilist joont ei ole vaja lisada.
  6. #' @param gpkg_home path Salvestatavate GPKG faili asukoht.
  7. #' @return Uute GPKG andmebaasi kihtide 'piir_...' ja 'bb_...' loomine.
  8. #' @seealso [sf::st_read()], [sf::write_sf()],[sf::st_transform()],[ruut::gpkg_piirkonnale_ruudustike_lisamine()] ,[ruut::gpkg_piirkonnale_polygoonide_lisamine()],[ruut::gpkg_sellest_alustame_gpkg_loomist()],[ruut::gpkg_piirkonnale_joonte_lisamine()],[ruut::gpkg_piirkonnale_punktide_lisamine()]
  9. #' @keywords GPKG, boundary box, EPSG:3301
  10. #' @export
  11. #' @examples
  12. #' \dontrun{
  13. #'
  14. #' gpkg_home <- "/tmp"
  15. #' obj <- "marja"
  16. #' gpkg_piirkonnale_punktide_lisamine(obj = obj, gpkg_home = gpkg_home)
  17. #'
  18. #' # Layers list.
  19. #' dsn <- sprintf("%s/%s.gpkg", gpkg_home, obj)
  20. #' sf::st_layers(dsn = dsn)
  21. #' }
  22. gpkg_piirkonnale_punktide_lisamine <- function(obj = NULL, gpkg_home = "/tmp") {
  23. dsn <- sprintf("%s/%s.gpkg", gpkg_home, obj)
  24. if (!file.exists(dsn)) {
  25. cat(sprintf("\nSellist faili \"%s\" ei leitud.\n", dsn))
  26. return(NULL)
  27. }
  28. ## Konfiguratsiooni muutujale väärtuste omistamine
  29. conf <- ruut::get_config()
  30. tmp_gpkg_file <- tempfile(fileext = ".gpkg")
  31. conf$gpkg_home <- dirname(tmp_gpkg_file)
  32. conf$gpkg_file <- gsub(paste0(conf$gpkg_home, "/"), "", tmp_gpkg_file)
  33. conf$gpkg_file <- gsub(".gpkg", "", conf$gpkg_file)
  34. conf$gpkg_home <- gpkg_home
  35. conf$gpkg_file <- obj
  36. tmp_gpkg_file_output <- ruut::construct_to_gpkg_output_file_str(conf = conf, is_input_str = F)
  37. tmp_gpkg_file_input <- ruut::construct_to_gpkg_output_file_str(conf = conf, is_input_str = T)
  38. ## Algorithm
  39. # ruut::qgis_algorithm_search_by_word(str = "extract")
  40. # algorithm <- "native:extractbylocation"
  41. # cat(qgisprocess::qgis_show_help(algorithm = algorithm))
  42. ## -------------------- Loop -----------------------
  43. intersect_layers <- c("piir", "bb")
  44. intersect_layers <- c("bb")
  45. andmed <- data.frame("schema" = character(0), "table" = character(0))
  46. andmed <- rbind(andmed, data.frame("schema" = "maaamet", "table" = "aadressandmed")) # POINT
  47. andmed <- rbind(andmed, data.frame("schema" = "osm_shp", "table" = "pofw"))
  48. andmed <- rbind(andmed, data.frame("schema" = "osm_shp", "table" = "pois"))
  49. andmed <- rbind(andmed, data.frame("schema" = "teeregister_wfs", "table" = "n_bussipeatus"))
  50. andmed <- rbind(andmed, data.frame("schema" = "teeregister_wfs", "table" = "kilomeetripostid"))
  51. andmed <- rbind(andmed, data.frame("schema" = "teeregister_wfs", "table" = "n_jaotus"))
  52. andmed <- rbind(andmed, data.frame("schema" = "teeregister_wfs", "table" = "n_kandur"))
  53. andmed <- rbind(andmed, data.frame("schema" = "teeregister_wfs", "table" = "n_mahasoit"))
  54. andmed <- rbind(andmed, data.frame("schema" = "teeregister_wfs", "table" = "n_onnetus"))
  55. andmed <- rbind(andmed, data.frame("schema" = "teeregister_wfs", "table" = "n_rdtyl"))
  56. andmed <- rbind(andmed, data.frame("schema" = "teeregister_wfs", "table" = "n_ristmik"))
  57. andmed <- rbind(andmed, data.frame("schema" = "teeregister_wfs", "table" = "n_ristumispunkt"))
  58. andmed <- rbind(andmed, data.frame("schema" = "teeregister_wfs", "table" = "n_sild"))
  59. andmed <- rbind(andmed, data.frame("schema" = "teeregister_wfs", "table" = "n_teeosa_points"))
  60. andmed <- rbind(andmed, data.frame("schema" = "teeregister_wfs", "table" = "n_ylek"))
  61. andmed <- rbind(andmed, data.frame("schema" = "eesti", "table" = "e_101_kivi_p"))
  62. andmed <- rbind(andmed, data.frame("schema" = "eesti", "table" = "e_103_pinnavorm_p"))
  63. andmed <- rbind(andmed, data.frame("schema" = "eesti", "table" = "e_202_seisuveekogu_p"))
  64. andmed <- rbind(andmed, data.frame("schema" = "eesti", "table" = "e_301_muu_kolvik_p"))
  65. andmed <- rbind(andmed, data.frame("schema" = "eesti", "table" = "e_305_puittaimestik_p"))
  66. andmed <- rbind(andmed, data.frame("schema" = "eesti", "table" = "e_402_korgrajatis_p"))
  67. andmed <- rbind(andmed, data.frame("schema" = "eesti", "table" = "e_403_muu_rajatis_p"))
  68. andmed <- rbind(andmed, data.frame("schema" = "eesti", "table" = "e_602_tehnopaigaldis_p"))
  69. andmed <- rbind(andmed, data.frame("schema" = "eesti", "table" = "kirik_p"))
  70. andmed <- rbind(andmed, data.frame("schema" = "eesti", "table" = "kohanimi"))
  71. andmed <- rbind(andmed, data.frame("schema" = "eesti", "table" = "korgus_p"))
  72. andmed <- rbind(andmed, data.frame("schema" = "eesti", "table" = "roostik_p"))
  73. andmed <- rbind(andmed, data.frame("schema" = "eesti", "table" = "sygavus_p"))
  74. for (intersect in intersect_layers) {
  75. conf$gpkg_table <- intersect
  76. intersect_layer <- ruut::construct_to_gpkg_output_file_str(conf = conf, is_input_str = T)
  77. for (i in 1:nrow(andmed)) {
  78. ## teeregister_wfs andmebaasis on importimisel geomeetria välja tähistus 'geometry'.
  79. if (andmed$schema[i] %in% c("teeregister_wfs")) geom <- "geometry" else geom <- "geom"
  80. conf$gpkg_table <- sprintf("%s_%s", intersect, andmed$table[i])
  81. conf$table <- andmed$table[i]
  82. conf$schema <- andmed$schema[i]
  83. output <- ruut::construct_to_gpkg_output_file_str(conf = conf, is_input_str = F)
  84. input <- ruut::construct_to_gpkg_output_postgres_str(
  85. conf = conf, geometry_type = "Point", srid = 3301,
  86. checkPrimaryKeyUnicity = TRUE, key = "id", geometry_field = geom
  87. )
  88. ## ------------------- QGIS: qgisprocess ----------------------
  89. str <- paste0("{ 'INPUT' : '", input, "', 'INTERSECT' : '", intersect_layer, "', 'OUTPUT' : '", output, "', 'PREDICATE' : [0] }")
  90. algorithm <- "native:extractbylocation"
  91. cmd <- ruut::construct_qgis_output_result_to_better_format(str = str, algorithm = algorithm)
  92. cat(sprintf("\n%s\n\n", cmd))
  93. system(cmd)
  94. ## Filtreerime aadressandmete kihi eraldi alamkihtideks
  95. if (andmed$table[i] == "aadressandmed") {
  96. aadressandmed <- unique(as.data.frame(sf::read_sf(dsn = dsn, layer = sprintf("%s_aadressandmed", intersect), as_tibble = T))[, c("adob_liik"), drop = FALSE])
  97. parent_table <- conf$gpkg_table
  98. for (k in 1:nrow(aadressandmed)) {
  99. table_suffix <- aadressandmed$adob_liik[k]
  100. conf$gpkg_table <- parent_table
  101. input <- ruut::construct_to_gpkg_output_file_str(conf = conf, is_input_str = TRUE)
  102. conf$gpkg_table <- sprintf("%s_%s", conf$gpkg_table, table_suffix)
  103. output <- ruut::construct_to_gpkg_output_file_str(conf = conf, is_input_str = FALSE)
  104. str <- paste0("{ 'INPUT' : '", input, "', 'INTERSECT' : '", intersect_layer, "', 'OUTPUT' : '", output, "', FIELD : 'adob_liik', OPERATOR : 0, VALUE : ", aadressandmed$adob_liik[k], " }")
  105. algorithm <- "native:extractbyattribute"
  106. cmd <- ruut::construct_qgis_output_result_to_better_format(str = str, algorithm = algorithm)
  107. cat(sprintf("\n%s\n", cmd))
  108. system(cmd)
  109. }
  110. }
  111. }
  112. }
  113. ## Layers list
  114. sf::st_layers(dsn = dsn)
  115. }