search for: maptype

Displaying 20 results from an estimated 25 matches for "maptype".

Did you mean: mantype
2019 Sep 26
2
DenseMap/ValueMap: is M[New]=M[Old] valid ?
Hi, I have a question about llvm/ADT/DenseMap.h and llvm/IR/ValueMap.h: When you have a: MapType M; is it safe to do: M[NewKey] = M[OldKey]; or do you need to do it in two steps: auto tmp = M[OldKey]; // ensure the reference to M[OldKey] is copied, before reassigning. M[NewKey] = tmp; // might reallocate aka, will a possible allocation for M[NewKey] invalidate the reference...
2018 Jul 31
0
[PATCH nbdkit 3/4] Add map filter.
...n arbitrary map of regions of the underlying plugin. --- common-rules.mk | 1 + configure.ac | 1 + filters/map/Makefile.am | 61 +++ filters/map/map.c | 256 +++++++++ filters/map/maptype.c | 493 ++++++++++++++++++ filters/map/maptype.h | 76 +++ filters/map/nbdkit-map-filter.pod | 173 ++++++ filters/offset/nbdkit-offset-filter.pod | 1 + filters/partition/nbdkit-partition-filter.pod | 1 + plugins/pattern/nbdk...
2004 Feb 19
1
read codebook function
...int*) &cb->unused[i], 1); if( cb->unused[i] ) continue; } // get length and adjust this->fReadBits1((int*) &cb->length[i], 5); cb->length[i] += 1; } } // read vector lookup table this->fReadBits1((int*) &cb->mapType, 4); switch( cb->mapType ) { case 0: break; case 1: case 2: // read minimum, delta value and value bits and flag sequence this->fReadBits1((int*) &cb->minValue, 32); this->fReadBits1((int*) &cb->deltaValue, 32); this->fReadBits1((int*) &cb->quantWidt...
2012 Sep 05
1
Mail Send and Receive Problem
...statistics: max cache size 1 at Sep 5 10:05:25 Sep 5 10:13:56 student postfix/smtpd[9447]: connect from mailrly1.student.ac.in[192.168.1.2] Sep 5 10:13:56 student postfix/smtpd[9447]: warning: restriction check_sender_mx_access: bad argument "/etc/postfix/maps/verisign_mx_access": need maptype:mapname Sep 5 10:13:56 student postfix/smtpd[9447]: NOQUEUE: reject: RCPT from mailrly1.student.ac.in[192.168.1.2]: 451 4.3.5 Server configuration error; from=<webmaster at strandbookstall.com> to=<divya at student.ac.in> proto=SMTP helo=<mailrly1.student.ac.in> Sep 5 10:13:56 s...
2011 Jun 07
1
RgoogleMaps Axes
...? ? ? ? ? ? ? ? ?.Names=c("LAT","LON"),class="data.frame", ? ? ? ? ? ? ? ? ? ?row.names =c(1418L,1419L,1536L,1538L,1578L)) # Get bounding box. boxt <-qbbox(lat =datas$LAT,lon =datas$LON) MyMap<-GetMap.bbox(boxt$lonR,boxt$latR,destfile ="Arvin12Map.png", maptype ="mobile") PlotOnStaticMap(MyMap,lat =datas$LAT,lon =datas$LON, ? ? ? ? ? ? ? ? axes =TRUE,mar =rep(4,4)) When I run this on my computer the horizontal axis ranges from 300W to 60E, but the ticks in between aren't linearly spaced (300W, 200W, 100W, 0, 100E, 160W, 60W). Also, the vert...
2007 Oct 11
1
maps does not work
...) > map() Fehler in zip.file.extract(file, "Rdata.zip") : 'destination' existiert nicht # Error in zip.file.extract(file, "Rdata.zip") : 'destination' does not exist > traceback() 4: zip.file.extract(file, "Rdata.zip") 3: data(list = dbname) 2: maptype(database) 1: map() To check if I have principle problems with my system I tried: > require(mapdata) > map('worldHires', col=1:10) # Works I am running R 2.6.0 and a current version of maps. But I had a similar problem with R 2.5.1 Is this a known issue? thanks Lukas
2006 Mar 19
0
how to arrange the codeword tree into array form
...process is done in _make_words in tremer code. i would be if some one could explain me the exact algorithm or where can i get it? i am attaching the code here for your reference. static int _make_words(char *l,long n,ogg_uint32_t *r,long quantvals, codebook *b, oggpack_buffer *opb,int maptype){ long i,j,count=0; long top=0; ogg_uint32_t marker[33]; if(n<2){ r[0]=0x80000000; }else{ memset(marker,0,sizeof(marker)); for(i=0;i<n;i++){ long length=l[i]; if(length){ ogg_uint32_t entry=marker[length]; long chase=0; if(count && !entry)ret...
2013 Jun 14
0
Problem with Get_map getting maps without country name
Dear R users, I use: mapImageData<- get_map(source="google", c(lon=21, lat=57), zoom=6, maptype="terrain") to get ggmapTemp.png file in the directory. The problem is - some city and park names overlay with my data points I want to plot on this map. Is there a way to get the map without city, country and park names? I get this using maptype="satellite", but I want to use...
1999 Oct 08
4
Automounting
Is there a way to make samba automatically mount a home directory? That is, a user logging in (from Linux), enters its username and password(Samba), and the system automatically mounts the user's home directory from the samba server(without asking the password again). Has anyone ever tried to do this? And succedeed :-) ? -- nneves@di.fc.ul.pt Dept. Informatica, Fac.
2015 Feb 24
2
[LLVMdev] Removing contention in PassRegistry accesses to speed up compiles
...;ToFree.end(); I != E; ++I) delete *I; - + delete Impl; pImpl = 0; } const PassInfo *PassRegistry::getPassInfo(const void *TI) const { - sys::SmartScopedLock<true> Guard(*Lock); PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl()); PassRegistryImpl::MapType::const_iterator I = Impl->PassInfoMap.find(TI); return I != Impl->PassInfoMap.end() ? I->second : 0; } const PassInfo *PassRegistry::getPassInfo(StringRef Arg) const { - sys::SmartScopedLock<true> Guard(*Lock); PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(...
2023 Oct 13
1
rnrfa package problems
...bbox <- list(lonMin = -3.76, latMin = 52.43, lonMax = -3.67, latMax = 52.48) The ggmap code following gives an error ? this may be because the bbox data is empty but I?m not sure The needed packages are loaded: library(ggmap) library(ggrepel) m <- get_map(location = as.numeric(bbox), maptype = 'terrain') ggmap(m) + geom_point(data = someStations, aes(x = lon, y = lat), + col = "red", size = 3, alpha = 0.5) + geom_text_repel(data = someStations, aes(x = lon, y = lat, label = name), + size = 3, col = "red") I...
2003 Dec 01
1
Re: using shapefile as owin
...file, region.id = NULL) Map2lines(Shapefile) Map2points(Shapefile) Map2bbs(Shapefile) [[1]] [,1] [,2] [1,] -116.1655 34.03370 [2,] -116.1672 34.03370 [3,] -116.1819 34.03364 #R does its thing for a gillion more lines, then, Error in Map2lines(Shapefile) : maptype not line/arc > plot(shapepoly) Error in plot.window(xlim, ylim, log, asp, ...) : need finite xlim values In addition: Warning messages: 1: no finite arguments to min; returning Inf 2: no finite arguments to max; returning -Inf 3: no finite arguments to min; returning Inf 4: no finite argume...
2019 Sep 27
2
DenseMap/ValueMap: is M[New]=M[Old] valid ?
...e in "M". > > On Thu, Sep 26, 2019 at 2:48 PM Jeroen Dobbelaere via llvm-dev > <llvm-dev at lists.llvm.org> wrote: > Hi, > > I have a question about llvm/ADT/DenseMap.h and > llvm/IR/ValueMap.h: > > When you have a: >      MapType M; > > is it safe to do: >     M[NewKey] = M[OldKey]; > > or do you need to do it in two steps: >    auto tmp = M[OldKey]; // ensure the reference to M[OldKey] is > copied, before reassigning. >    M[NewKey] = tmp;      // might reallocate...
2009 Jun 01
0
[mapstraction commit] r12 - Implemented most Cloudmade functions. Still requires image, tile and KML/GeoRSS overlays
...ider code + var c = this.addControlsArgs; + switch (c.zoom) { + case ''large'': + this.addLargeControls(); + break; + case ''small'': + this.addSmallControls(); + break; + } + + if (c.map_type) { + this.addMapTypeControls(); + } + if (c.scale) { + map.addControl(new CM.ScaleControl()); + this.addControlsArgs.scale = true; + } }, addSmallControls: function() { var map = this.maps[this.api]; - // TODO: Add provider code + map.addControl...
2018 Jul 31
7
[PATCH nbdkit 0/4] Add truncate and map filters.
This patch series proposes two new filters. * truncate: This can truncate, extend, round up or round down the size of a plugin/device. A typical usage is to fix the qemu problem that it can only handle devices which are a multiple of 512-bytes: nbdkit --filter=truncate random size=500 round-up=512 This will serve a virtual device with size 512 bytes. Reading from the last 12 bytes will
2010 May 27
0
googlev3 addPolyline and core swapping
i''ve added the right code for addPolyline in googlev3 js and changed a bit the swap function to insert markers and polyline and change maptype too sorry but i''ve put all the code on git cause i don''t know how to access svn as committer for the moment so please refer to git to get all the changes you could find usefull @all: do you know if there''s a way to get a list of active markers and polyline from google...
2012 Dec 07
0
Problem with ggmap
...oints v4 = c(1, 0.5, 0.2); # Transparency for added points v5 = c(551, 426, 500); # Colors for added points testData <- data.frame(lat = v1,lon = v2, big=v3, op=v4, col=v5) # Group variables together mapImageData4 <- get_googlemap(c(lon=-79.1, lat= 43.88),zoom=8,maptype="terrain"); # Get map image data pic4 <- ggmap(mapImageData4) + geom_point(aes(x=lon,y=lat), data=testData, colour = v5, size=v3, alpha = v4) The following `from` values were not present in `x`: col, color, pch, cex, lty, lwd, srt, adj, bg, fg, min, max Thanks, Axel. [[alte...
2010 Feb 02
3
deny=yes in userdb
I would like deliver to reject certain users. Since supposedly deliver only uses userdb, not passwd, I can't use deny=yes for that. Or does userdb support deny=yes? Yes, I should rather reject them right in the MTA, but that currently takes too long to implement. Or how to reject gast* in postfix using nss authentication?
2017 Sep 13
0
ggmap + geom_raster
..., 560L, 4694L, 9274L, 8903L, 8877L, 1586L, 1398L, 5865L, 4209L, 6075L, 3307L, 1634L, 8108L, 514L, 9453L, 5210L), class = "data.frame") library(ggmap) library(RColorBrewer) MyMap <- get_map(location= "Orlando, FL", source="google", maptype="roadmap", crop=FALSE, zoom=7) YlOrBr <- c("#FFFFD4", "#FED98E", "#FE9929", "#D95F0E", "#993404") ggmap(MyMap) + stat_density_2d(data=s_rit, aes(x=lon, y=lat, fill=..level.., alpha=..level..), geom="po...
2012 Mar 16
1
ggmap crash
...gt; sites <- as.data.frame(cbind(siteLat, siteLon, '')) > lats <- c(floor(min(siteLat))-10, ceiling(max(siteLat))+10) > lons <- c(floor(min(siteLon))-10, ceiling(max(siteLon))+10) > map <- GetMap.bbox(c(min(siteLon)-5, max(siteLon)+5), c(min(siteLat)-5, max(siteLat)+5), maptype='satellite') [1] "http://maps.google.com/maps/api/staticmap?center=53.277508,-9.011888&zoom=5&size=640x640&maptype=satellite&format=png32&sensor=true" > lonr <- c(map$BBOX$ll[2], map$BBOX$ur[2]) > latr <- c(map$BBOX$ll[1], map$BBOX$ur[1]) > lonr...