Displaying 20 results from an estimated 600 matches similar to: "voronoi.mosaic chokes?"
2006 Jul 19
2
voronoi tessellations
Okay, been working with tripack, seems the most mature package for this. Got it to work well with their test data set - data(tritest). When i tried random numbers to explore further, i am getting some results that don't reconcile.
example run this:
library(tripack)
y <- runif(100)
x <- runif(100)
vm <- voronoi.mosaic(x,y)
plot(vm)
par(new=T)
plot(x,y,col='blue')
when
2006 Apr 06
1
rounding of voronoi vertices using deldir()
Hello list,
I'm just getting started with using R - I have been trying over the past
day or so to work out a method for generating voronoi polygons for
PostGIS using SQL. I was able to put together a procedure which works
relatively well, but is somewhat inefficient. Someone on the PostGIS
list pointed me to the deldir() function in R, for which I can export a
text file with x/y coordinates
2008 Feb 07
1
Voronoi
Hello everyone
I have a problem with tripack package, I want to perform a Voronoi
tessellation on a specific domain (I have the shape file), in order to
weight my climatic data with the area ... How Can I do it?
Thank you very much
Andrea
2011 Feb 24
1
weighted Voronoi diagrams
Dear R-users,
Does anyone know how to do weighted Voronoi diagrams (Dirichlet
tesselation) in R? To be more specific, I have a set of coordinates for
tree locations on a plot, and I'm looking for a way to do the
tesselation so that the polygon size for each tree depends on the size
of the subject tree, and the size of its neighbors. So, the location of
the bisection between two trees
2005 Nov 13
4
voronoi
Is there any pure r code to do delaunay or voronoi diagrams?
Thanks!
---------------------------------
[[alternative HTML version deleted]]
2006 Oct 03
2
maybe use voronoi.findrejectsites?
hi all members,
please, i need you help... now a i´m working with veronoi polygons in a
area with projections, but i need cut the polygons left. On other words, i
need cut the polygons in the worked area.
R help say that use the command voronoi.findrejectsites, but in this
command i need put the numbers, any way...this command not cut!! do you
can help me?
Thank you for help me!
José Bustos
2015 Oct 31
5
Openvpn and samba: play nice together?
Friends--
I'm stumped! Cannot get mount.cifs to work over a tun connection. How
would you trouble-shoot this?
1. It cannot be openvpn causing the problem: I can ping across the
connection both directions on all machines.
2. It cannot be samba causing the problem: I can mount.cifs the smb
shares on the lan (using the identical credentials file) without any issue.
3. Have iptables
2008 Oct 20
1
About Torus Rndamiztion
Hallo
I am going through the paper on Torus randomization by Kyle E. Harms
torus randomization is an alternative to Chi-sq test of Independence When
the assumption of independence within the groups is violated
i want to know that Is there any library regarding torus randomization
Someone said me that its in Utility.r but i could not find out this
please help me in this regard
Shubham
Surendra
2008 Apr 12
2
nonlinear curve fitting on a torus
Dear R users.
I have data observed on the surface of a torus, and
am trying to fit the nonlinear regression using
the geodesic equation on a torus. Could anyone give
me a helpful advise on this problem? I would
definitely appreicate your reply.
Sincerely,
SUNGSU KIM
[[alternative HTML version deleted]]
2010 Dec 16
0
Convert tileplot's trellis to shapefile/ Add values to voronoi polygon
I would like to create a voronoi map that can show me point values like the
ones in colum street_cle. I was able to do it in tileplot(latticeExtra) like the
ones attached, and with the following commands:
xy=list(x=x2$X, y=x2$Y)
xy$street_cle <- x2$street_cle
tileplot(street_cle~ x*y, xy)
But this is a trellis. Is it possible to be converted to a shapefile or image so
I can plot it using
2005 Aug 03
1
help for cell2nb and queencell in spdep package
Dear Dr. Bivand and R-users,
I have a 5 by 5 grid, say, location[1:5,1:5], and I want to know the
indices of 8 neighbours of each cell. For example, for location[2,2], its
neighbour coordinates are [1,1:3], [2,1], [2,3] and [3,1:3]. Sometimes I
also need to remove edge effects (torus = TRUE).
I have tried "cell2nb" function in your spdep package. Here's my example:
> neigh
2001 Apr 14
0
How to create polygons from voronoi objects in tripack?
Hello.
I'd like to convert voronois object created by tripack to polygons to use
them in GIS(Geographic Information Systems) software. I tried to create
voronoi objects by using following code.
> library(tripack)
> x <- rnorm(10)
> y <- rnorm(10)
> plot(x,y)
> v<-voronoi.mosaic(x,y)
> plot(v)
But from here, I could not create polygons.
Of course, I know
2008 Jul 18
1
system time - windows specific problem
Hi all,
I'm currently implementing quasi random generation (torus) on R
(package randtoolbox available on CRAN). Even if it is not a great
idea, I decided to use the machine time to initiate the seed. So when
the seed is not specified by the user, the pkg uses the time machine
time.
Hence the following R code should produce different uniform variates :
> for(i in
2007 Nov 27
1
voronoi/Delaunay/Dirichlet tessellation on sphere in R or S?
There's Renka's STRIPACK, and TRIPACK, respectively, ACM TOMS Algorithms
772 and 751, and there's the R package "deldir" which does the Delaunay
for a plane, but does anyone have or know of the tessellation in R for a
sphere?
Also, is there a standard indexing scheme for Delaunay facets, and
perhaps of edges in such facets? I'd expect that to be a publication
reference,
2010 Jul 28
1
kde on Torus
Hello,
I have 2D-data on a torus, i.e. they are scattered within [0:2pi) and are
supposed to be periodic with period 2pi.
Is there a way in R for a kernel density estimation for such data? I found this
article http://www.dmqte.unich.it/personal/dimarzio/density46.pdf
but
a) I don't fully understand the article (my knowledge in statistics is poor)
b) I did not understand which Eq.
2010 Jan 13
1
Recommended visualization for hierarchical data
Let's say I have data in the following schema that describes the number of
purchases a company has received from each County in the US:
State | County | Purchases
---------------------------------------
NJ | Mercer | 550
CA | Orange | 23
....
I would like to visualize what states contribute the most to the overall
total, and furthermore within those states, what Counties contribute the
most.
2014 Apr 14
2
[LLVMdev] LLVM 3.4.1 - Testing Phase
On 04/14/2014 02:31 PM, Arnaud Allard de Grandmaison wrote:
> Hi All,
>
> As kindly pointed by Sebastian, please forget my point about the release
> script. I read the mail from Tom 2 days ago, and forgot that the script was
> available in the tag / branch when I acted today :(
>
> I uploaded clang+llvm-3.4.1-rc1-x86_64-unknown-ubuntu12.04.tar.xz to
> ftp.llvm.org.
>
2004 Aug 31
0
N-dimensional delaunay tesselation & voronoi diagrams
Hi,
I've been looking for functions that can do delaunay tesselation and
generate voronoi cells. I came across deldir and tripack but both seem
to be restricted to 2D points. Are there any packages that can do a
tesselation in N dimensions? I know that Matlab and Mathematica use the
qhull package to provide functions for this. Does anybody know of any R
packages that do this (maybe by calling
2019 Mar 19
2
Como generar el dibujo de un mapa, tipo los de maptools::data(wrld_simpl)
Buenas!
Estoy intentando hacer un trabajo con mapas y llegué a un punto en el que
me atasco:
Quiero generar el dibujo de un mapa.
A ese mapa después le señalaría unos puntos y en, base a esos puntos,
dividiría el mapa en secciones (usando diagramas Voronoi, que creo que
sabría hacerlo, por más que todavía me quedan raro)
Todavía lo que sé hacer es muy ínfimo (marcar puntos y etiquetar con
2019 Mar 19
2
Como generar el dibujo de un mapa, tipo los de maptools::data(wrld_simpl)
Muchas gracias, Carlos.
Estaba emperrado con usar OSM. Pero sevuramente los de Google presentaran
alguna solucion.
Intento probar pronto.
Juan Abasolo.
telefomotik, barjatu trebezi falta
Carlos Ortega <cof en qualityexcellence.es> igorleak hau idatzi zuen (2019
mar. 19, ar. 23:13):
> Hola,
>
> No sé si esto seguirá siendo vigente, con los cambios en las APIs de
> Google...