Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

32 results for “from:Howard, Tim G (DEC)”

De-serialization vulnerability?
Howard, Tim G (DEC) · May 1, 2024 · r-help

All, There seems to be a hullaboo about a vulnerability in R when deserializing untrusted data: https://hiddenlayer.com/research/r-bitrary-code-execution https://nvd.nist.gov/vuln/detail/CVE-2024-27322 https://www.kb.cert.org/vuls/id...

creating spatial metadata: best tools/approach?
Howard, Tim G (DEC) · Jul 3, 2020 · r-sig-geo

All, I need to create XML metadata for some of my outputs (mostly rasters) following the US government standard (FGDC): https://www.fgdc.gov/standards/projects/FGDC-standards-projects/metadata/base-metadata/index_html In researching what my options are...

Question niche based model whith R
Howard, Tim G (DEC) · Apr 10, 2017 · r-sig-geo

You might check out the dismo package and the vignette it has on species distribution modeling. https://cran.r-project.org/web/packages/dismo/index.html Tim Date: Mon, 10 Apr 2017 09:12:54 +0000 (UTC) From: Soufianou Abou...

Regex Split?
Howard, Tim G (DEC) · May 5, 2023 · r-help

If you only want the character strings, this seems a little simpler: > strsplit("a bc,def, adef ,,gh", "[ ,]+", perl=T) [[1]] [1] "a" "bc" "def" "adef" "gh" If you need delimeters (the commas) you could then add them back in...

group adjacent polygons, optimize sum of polygon attributes
Howard, Tim G (DEC) · Jan 8, 2015 · r-sig-geo

All, Given a tessellated set of polygons, each with an attribute of sample size, I want to aggregate these polygons into groups such that the sum of the sample size values reaches a certain threshold while simultaneously maximizing the number...

raster: extract with different methods (simple, bilinear) among layers in brick?
Howard, Tim G (DEC) · Jul 20, 2016 · r-sig-geo

Hi all, I have a raster brick for which I'd like to extract data from each layer to a point dataset, but I'd like to use method="simple" for some of the layers and method="bilinear" for others...

get species within sites ordihull polys
Howard, Tim G (DEC) · Sep 25, 2015 · r-sig-ecology

All - Consider clusters of points in an NMDS with those clusters determined in some way (I'll use hclust below). Then consider plotting the species on that ordination. I'd like to automatically find which species are 'most associated' with...

df with embedded wkt lists to sf
Howard, Tim G (DEC) · Jun 9, 2022 · r-sig-geo

Howdy all -? There's probably a way to do this much? more simply than I've figured it out, so it's a bit embarrassing but here goes. I'm getting data out of a shiny app that looks like...

substr gives empty output
Howard, Tim G (DEC) · Jan 22, 2018 · r-help

In y <- substr(x, i, 1) your third integer needs to be the location not the number of digits, so change it to y <- substr(x, i, i) and you should get what you want. Cheers, Tim > Date: Sun, 21...

raster:::stack(), missing value where TRUE/FALSE needed
Howard, Tim G (DEC) · Aug 25, 2016 · r-sig-geo

All, I'm stymied by this, I expect there is a simple solution. I am trying to stack/brick some very large rasters (26 GB in native R [.gri] format!). But the error does not imply there's a problem...

stars::RasterIO using extent info?
Howard, Tim G (DEC) · Nov 13, 2018 · r-sig-geo

Dear list, I am exploring the different options for reading parts of large imagery object in stars, as discussed here: https://r-spatial.github.io/stars/articles/proxy.html My ultimate goal is to read into RAM only a clipped...

Restricting geographical space for SDM analyses
Howard, Tim G (DEC) · Nov 17, 2020 · r-sig-geo

Francisco, That's right, instead of cropping by longitude and latitude, you'll need to define the model output area by another spatial layer that represents the coastline and the certain distance inland. To get that (your targeted modeling area...

Adding Census polygons to OSM map?
Howard, Tim G (DEC) · Jun 8, 2023 · r-sig-geo

Kevin, To get the basemap in plot mode you need to download the tiles using read_osm. This works for me, I Simplified a bit: library(sf) library(tmap) library(tigris) options(tigris_use_cache = TRUE) library(tmaptools) ## Get an...

Formatting zeroes with prettyNum
Howard, Tim G (DEC) · May 23, 2025 · r-help

You fed it two characters, "dash" and "space" and it only wanted one character so it truncated to the first character and warned you that that's what it did. If you had your space before the dash, it would...

get species within sites ordihull polys
Howard, Tim G (DEC) · Sep 28, 2015 · r-sig-ecology

Eduard, Yes, indicator species may help - and indeed, perhaps all I need are some pointers from the community table produced in vegan: vegemite and tabasco. I'm working down that path now. Mike, Aha - yes, distance from the centroid to...

project path in Rmd (Ivan Calandra)
Howard, Tim G (DEC) · Apr 2, 2020 · r-help

You also should be able to reference locations from the 'root' of your project using the here() package. https://here.r-lib.org/ Best, Tim Howard > Date: Thu, 2 Apr 2020 10:21:47 +0100 > From: Rui Barradas <ruipbarradas at...

raster:::stack(), missing value where TRUE/FALSE needed
Howard, Tim G (DEC) · Aug 26, 2016 · r-sig-geo

I'm kind of at a loss as to why "Error in if (common.len == 1L) unlist(x, recursive = FALSE) else if (common.len : missing value where TRUE/FALSE needed" means "your system can't handle such big files" but...

raster: extract with different methods (simple, bilinear) among layers in brick?
Howard, Tim G (DEC) · Jul 21, 2016 · r-sig-geo

Robert, Very slick. Thank you! I had thought about splitting by method and running only twice, but hadn't come up with an approach yet. Perfect. Thanks again, Tim > -----Original Message----- > From: Robert J. Hijmans [mailto:r.hijmans at gmail...

Missing shapes in legend with scale_shape_manual
Howard, Tim G (DEC) · Oct 31, 2023 · r-help

I believe the missing shapes are because you had set alpha=0 for the last geom point. I expect there are better ways, but one way to handle it would be to avoid the filtering, adding columns with med and...

Adding Census polygons to OSM map?
Howard, Tim G (DEC) · Jun 8, 2023 · r-sig-geo

And I just realized an easier way to get a bounding box for the basemap is to use the spatial information you already have in the polygon: basem <- read_osm(bb(rw_tract, ext = 1.5)) The 'ext' option allows...

Can't find what you're looking for? Try searching with Google .