search for: mymap

Displaying 12 results from an estimated 12 matches for "mymap".

Did you mean: mmap
2010 Jan 21
1
use R from python
? stato filtrato un testo allegato il cui set di caratteri non era indicato... Nome: non disponibile URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20100121/95fb8869/attachment.pl>
2009 Mar 12
3
Map using projection
Hi list, I have a real problem with plotting US state map. When I try to plot the northern state, there will be some blank space in the top of graph (see case 1 example), and when I plot southern states, there will be a blank space in the bottom of plot (see case 2). I spent almost 2 days to figure out a solution, but could not. Would you help me if you know what the problem is? Regards, Alireza
2011 Jun 07
1
RgoogleMaps Axes
...5), ? ? ? ? ? ? ? ? ? ?LON =c(-122.225,-122.225,-122.075,-122.075,-122.025)), ? ? ? ? ? ? ? ? ? ?.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...
2011 Sep 15
0
RGoogleMpas error
...3, -77.03660), size = c('tiny','tiny','tiny'), col = c('blue', 'green', 'red'), char = c('','','')); #get the bounding box: bb <- qbbox(lat = mymarkers[,"lat"], lon = mymarkers[,"lon"]) #download the map: MyMap <- GetMap.bbox(bb$lonR, bb$latR, destfile = "DC.png", GRAYSCALE =T, markers = mymarkers); #determine the max zoom, so that all points fit on the plot # (not necessary in this case): zoom <- min(MaxZoom(latrange=bb$latR,lonrange=bb$lonR)); #plot: png("OverlayTest.png",640,6...
2018 Feb 23
0
Mapedit::selectMap in shiny map.
...g the ids of the selected polygons. ##however the code below - trying to implement in shiny fails with "Can?t call runApp() from within runApp(). If your application code contains runApp(), please remove it. library(shiny) library(leaflet) library(mapedit) ui <- fluidPage( leafletOutput(?mymap?) ) server <- function(input, output, session) { lf<-leaflet() %>% addTiles()%>% addPolygons(data =gadmCHE, label = ~NAME_1, layerId = ~NAME_1) output$mymap <- renderLeaflet({selectMap(lf) }) } shinyApp(ui, server) ##How do I achieve the same in a shiny map? [[alternative HTML v...
2010 Apr 30
6
addListener
I am trying to use the marker method addlistener(). A simplified version of what I''m trying to do: var map; var marker; map = new mxn.Mapstraction(''myMap'',''google''); map.setCenterAndZoom(new mxn.LatLonPoint(45.559242,-122.636467), 15); marker = new mxn.Marker(new mxn.LatLonPoint(45.559242, -122.636467)); marker.addData({icon: "http://mapscripting.com/examples/mashups/richter-high.pn...
2014 Jan 23
2
[Bug 885] New: Kernel BUG (possibly panic) deleting chain used in map
..._meta nft_reject_ipv4 nft_hash nft_rbtree nf_tables_ipv4_ The VM displays no more console output but I believe the kernel panics. Here is the interactive session I used. # nft -i nft> add table filter nft> add chain filter input { type filter hook input priority 0; } nft> add map filter mymap { type ifindex : verdict; } nft> add chain filter test nft> add element filter mymap { eth0 : jump test } nft> delete chain filter test This is using rawhide fedora kernel 3.13.0-1.fc21.x86_64 on a base Fedora 20 release, using the libnftnl from netfilter git and nft from netfilter git....
2017 Sep 13
0
ggmap + geom_raster
...8299L, 8233L, 4848L, 7922L, 5795L, 6971L, 179L, 4990L, 1776L, 4431L, 5718L, 4268L, 1157L, 1854L, 6433L, 4637L, 8194L, 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_...
2009 Mar 23
4
Bird''s Eye integration in Mapstraction
Are there any plans to integrate Virtual Earth''s Bird''s Eye view to mapstraction? I tried an "integration hack" but then found out that there are too many issues involved (check whether birds eye is available for the current map area, disabling zoom controls,...). Has anyone else tried it? Franz
2009 Sep 30
2
C++ parser for doc.get_data() result.
Xapians! Did anybody wrote and would like to share a routines that parse result from doc.get_data() into some key and pair values in C++ ? Code: Xapian::Document doc = i.get_document(); string data = doc.get_data(); mymap = parse_result(data); As you know the data string contain all the data within the document delimited by "=" sign and "\n" new line and needs to be parse into key and values. I know that we can assign values during indexing and retrieve it as: doc.get_value(1), but I think that...
2012 Jan 26
2
GUI login issues over NFS
I am at my wits end, googling, trying various things, and nothing seems to really solve my problem, so I thought I would break down and write to the community to see if anyone else has run into the issue and actually solved it. My environment of interest contains a mix of various Fedora and CentOS workstations that all participate in NIS for user authentication which then, upon a successful login,
2015 Nov 26
4
Creating/Deleting a new instruction from LLVM IR
Hi, I was trying to create a new *Store* instruction and inserting it to LLVM IR (.ll) file. I found the following constructor in LLVM Manual: StoreInst::StoreInst <http://llvm.org/docs/doxygen/html/classllvm_1_1StoreInst.html#aa2a72f9a51b317f5b4ab8695adf59025> (Value <http://llvm.org/docs/doxygen/html/classllvm_1_1Value.html> * Val, Value