Results 16 comments of Andrew Nisbet

For reference, here's how it's done in vscode: https://stackoverflow.com/questions/58719428/how-to-disable-tabnine-extension-for-only-one-language

The normal way to do this would be adding `"ignored_packages": ["TabNine"]` to the markdown syntax-specific preferences. But for me this doesn't disable TabNine.

I've been working on an API that's pretty stable now for my uses, it has 30m SRTM, 10m NED, and some other open datasets. Code: [ajnisbet/opentopodata](https://github.com/ajnisbet/opentopodata) Docs & public API:...

This is great thanks for bringing this up! It's something I would love to support: I looked at adding a lunar at one point. From memory, technically non-earth datasets would...

Thanks! I'll look through this, figure out what exactly would be needed, then make a call on if it's worth the changes!

I had a look at this today. Because Open Topo Data treats input coordinates as WGS-84, pyproj can't convert those coordinates to lunar/martian ones. You get the error ``` Error...

@cjlapao you could consider reaching out to [jazzband](https://github.com/jazzband): they are a group which adopts and maintains widely-used python packages that need more maintainers. It seems like rq-dashboard would meet their...

@troutinsights The 10m NED dataset is currently the highest-resolution covering the US. There is also 1m lidar data covering about half the US and constantly updated and expanded! But it's...

I have the same issue, with basically the same code as @abelsonlive. Dataset is 300MB on a 6GB machine, 4 core machine, 50 trees. Occurs with and without parallel. Using...

The backing file is a temporary file used to store data that won't fit in memory. There seems to be code to clear these files after fitting a tree ([`grow.R`](https://github.com/aloysius-lim/bigrf/blob/8ea6c12ed5bf03a1a6ea2938ff318f1bbd56a8d5/R/grow.R#L206))...