README.md

toposhop

Early work on R-level topology fixes for simple features.

So far we have:

These do not yet work:

See Issues for examples and please add your own!

sfdct

Using the constrained triangulation in https://github.com/r-gris/sfdct seems like that will fix many problems. The best documentation and explanation and examples of the problems is listed at the links below.

https://3d.bk.tudelft.nl/hledoux/pdfs/12_agile.pdf

https://github.com/tudelft3d/prepair

## first tests look fine
library(sf)
p <- data.frame(geometry = 'POLYGON((0 0, 0 10, 10 0, 10 10, 0 0))')
d <- st_as_sf(p, wkt = "geometry")
st_is_valid(sf::st_union(sfdct::ct_triangulate(d)))
#[1] TRUE

## examples in data/ from prepair
fs <- c("data/CLC2006_180927.geojson",  "data/CLC2006_2018418.geojson")

library(sf)
d1 <- st_read(fs[1L])
st_is_valid(d1)
#[1] FALSE
#Warning message:
#In eval(substitute(expr), envir, enclos) :
 # Ring Self-intersection at or near point 20.137278515460533 68.32204464422999

library(sfdct)
d1_f <- ct_triangulate(d1)
d2 <- st_union(d1_f) ## back to multipolygon
st_is_valid(d2)
#[1] TRUE


r-gris/toposhop documentation built on May 26, 2019, 1:34 p.m.