I am trying to create mapbox tiles using mapboxapi::tippecanoe()
in R. Unfortunately, my work computer runs Windows 10, which greatly complicates what I am trying to do. Tippecanoe is a Unix executable, so I downloaded and installed Ubuntu and am running it on a Windows subsystem for Linux. To get tippecanoe to launch, I had to edit the source code of mapboxapi::tippecanoe()
to pass arguments to WSL. I then ran into an issue where Tippecanoe would give me an error that it could not open database files. Some research on Github led me to believe that this was related the number of open files limit in Ubuntu. After a lot of digging, I was able to increase ulimit -n
to 65535 for on my ubuntu terminal. As soon as I launch Ubuntu, if I type in ulimit -n
, I get 65535. However, when I call `sytem2("wsl", "ulimit -n"), I get the default value of 1024. I thought this was due to the user that R was calling in Ubuntu, but running system2("wsl", "whoami") returned the username for who I increased both the hard and soft nofile limits for. I am really stumped. Apologies for not pasting a reproducible example, but I am not sure how to make one for this situation. Any help would be much appreciated. Thanks!
ulimit different between ubuntu terminal and call from R
71 Views Asked by Sean McKenzie At
1
Well after a whole lot of tinkering, this ended up being mostly a straightforward R code issue. The
ulimit
issue may still have been a problem, but actually I need to fix the R code inmapboxapi::tippecanoe()
. Becausemapboxapi::tippecanoe()
uses thesystem()
command to calltippecanoe
, not only did I need to change the call to invoke wsl through a login shell usingsystem2("wsl", "- d Ubuntu -lc 'tippecanoe <arguments to tippecanoe>'")
, but I also needed to change the paths that R sent to tippecanoe to be linux paths instead of Window paths. If anyone else is having trouble with this, here is the tweakedmapboxapi::tippecanoe()
command code that actually worked for me: