A map is a data structure relating keys to values, or a higher order function that applies a function to a list

learn more… | top users | synonyms

0
votes
2answers
54 views

Creating a map with a collection as the Key?

Is it possible to create a map where the key is a Collection (any sort of collection)? If I try it on most common collections I'm told the collection can't be cast to comparable. I've been trying ...
2
votes
2answers
63 views

C++ - Re-implement map data structure

I am working on a large codebase. There is no support for the map data structure. Is there a list of efficient open source data structures I can implement into this codebase without adding any ...
1
vote
1answer
33 views

Store and retrieve corresponding items

I have program in which I wrote custom classes for some purpose. I need to store the classes in the form of a map like data structure where I can easily get an item corresponding to the other. For eg: ...
-1
votes
0answers
13 views

D3js: how to convert GIS .tiff (raster) files into json?

How to convert GIS topographic .tiff file into .json files ? Native D3js solution preferred if existing.
0
votes
2answers
13 views

Retrieving/modifying highest & lowest values in k/v pair map?

So I have encountered the situation where I have a k/v map of destination to quantity, i.e. {San Francisco -> 10}, and I want to retrieve the k/v pair with the highest or lowest value, and then after ...
4
votes
3answers
71 views

Reason behind using linear probing in identityHashMap

As we know in java collections framework every class in Map uses Chaining for collision resolution but IdentityHashMap uses linear probing for the same. Can somebody put some light what is the reason ...
0
votes
4answers
47 views

Assigning arrays as keys and values of a map

I have two arrays of Type String: String [] a; String [] b; and then a map Map<String, String> mapNumeric = new HashMap<String, String>(); I want a to be the keys and b the value. So ...
1
vote
0answers
64 views

std::map::insert/operator[] hybrid for inserting mosty-ordered values to STL maps?

I need to merge and edit multiple Motorolla S-Record (MOT/SREC) files that each consist of memory addresses and the associated contents, and are therefore generally ordered by the memory address ...
0
votes
1answer
41 views

error: no match for operator= in map c++

im trying to import data from an XML file and save them in a 5D map // declaration of the map map<char *, map<char *, map<char*, map<char *, map<char*, map<char*, char*, ...
0
votes
2answers
33 views

Text Histogram, tokens stored in map

I am reading from a file and take the words as tokens with strtok. I am trying to store the words in a map structure. I don't really know how to insert the tokens in the map. My code so far: ...
-3
votes
1answer
42 views

what is better…list of objects or map? [closed]

I have pairs of two values - they could be translated to a map where you put key, value or to a list where you put objects that have the fields that in 'map' world are key and value. Which is better ...
0
votes
2answers
25 views

Difference between treemap and concurrentskiplistmap? Possibility to use NavigableMap with a map structure for duplicate keys?

I'm a beginner in Java. I have a method as below: public void time_filter(Long t1, Long t2){ NavigableMap<Long, Operations_enter> time_map = new TreeMap<Long, Operations_enter>(); ...
0
votes
1answer
21 views

IOS: use offline maps

in my app I want to use offline maps and with this maps use gpx files to have a route. I found openstreetmap to do it, but is there some better services? (the best solution with level curves) thanks
0
votes
2answers
44 views

map/set iterator is not dereferencable C++ map

Please, have a look at my code. int main () { Program* allcommand = new Program; allcommand->addCommand("add", new Add); allcommand->addCommand("convert", new Convert); ...
0
votes
2answers
36 views

Scala: Remove none elements from map and flatten

I have a map: Map("key1" -> Some("value1"), "key2" -> None, "key3" -> Some("value3")) I want to remove all None elements an flatten the map. Which is the easiest way to accomplish that? I ...
-1
votes
0answers
11 views

how to get direction of open street.i need south-west and North-East Parameter

how to get direction from open street bonding box.i need south-west and North-East Parameter for twitter bounding box(latitude and longitude). how to do it. please help me out.
0
votes
0answers
7 views

SSRS 2012 map rendering performance

I have a report with four maps using four datasets. The report is cached and produces the following stats from the executionlog table. TimeDataRetrieval=0 TimeProcessing=20 TimeRendering=2530 ...
1
vote
0answers
35 views

Why can you not return an object to Javascript's Array.map() and it map it properly?

I have two functions below (they are taken out of a larger script so assume everything is defined etc. self.sentenceObjs works great. It returns an object exactly like it's supposed to do. ...
0
votes
1answer
23 views

Draw 32x32 Tiled Images in QT

I'm curious to learn how to split an image into 32x32 (or really any size) selectable tiles and display them in Qt? An example is the Tiled Map Editor (the panel in the lower right corner of the ...
0
votes
1answer
50 views

How to uniform initialize map of unique_ptr?

I have this code to initialize map from into to unique_ptr. auto a = unique_ptr<A>(new A()); map<int, unique_ptr<A>> m; m[1] = move(a); Can I use uniform initialize this? I tried ...
1
vote
1answer
21 views

Google Map Infowindow Not Appearing Properly

I have a standard Google Map Infowindow being opened on click on a standard Google Marker. The arrow pointing down to the marker seems to be a couple of pixels off. I have been banging my head against ...
2
votes
2answers
49 views

C Function Macro Of Node

I am trying to make a node that can accept any key value types. So far it works when I use it once, but when I use it another time, I get errors. Below are the codes I've written: map.h: #ifndef ...
2
votes
3answers
62 views

insert vs emplace vs operator[] in c++ map

I'm using maps for the first time and I realized that there are many ways to insert an element. You can use emplace(), operator[] or insert(), plus variants like using value_type or make_pair. While ...
1
vote
1answer
30 views

pair(const std::pair<_T1, _T2>&) is implicitly deleted because the default definition would be ill-formed Error: when assigning map of unique_ptr

I'm trying to set a map of unique_ptr with a method. class A { map<int, unique_ptr<B>> x; public: void setx(const map<int, unique_ptr<B>>& x) {this->x = x;} // ...
4
votes
1answer
36 views

Remove connecting lines in ggplot2 geom_polygon

I've made the map below by subsetting a shapefile downloaded from www.gadm.org : load(url('http://gadm.org/data/rda/GBR_adm0.RData')) library(ggplot2) ukMapFort <- fortify(gadm) ukMapFortSub <- ...
0
votes
0answers
15 views

how plot this kind of gis map, part of map but has limitaion

how to plot something like this: see image here, I didn't have 10 reputation so I can not post image, so paste a image URL here. http://img.dxycdn.com/upload/2011/11/03/40/88524524.jpg right part ...
0
votes
1answer
12 views

How can I show tweets on a map in Processing?

I have been trying to use a map to show locations of tweets (from Streaming API) in Processing. But I haven't found any good resource/tutorial. Will anyone help me please?
0
votes
1answer
17 views

Issue with HashMap<String,Marker> in android

I want to keep track of markers on the map. When a particular marker is clicked, I need to display the info regarding to that marker. I am using one HashMap variable to keep track of the markers ...
4
votes
1answer
79 views

animated gadm map in R

everybody, sorry for disturb, but I am being quite new with r faced a crucial difficuty: I want to create an animated map of Russin with changes in unemployment with differnt years, like. To start ...
0
votes
1answer
42 views

Multiple mapping of arrays within arrays - Ruby [closed]

I want to go through an array in an array with arrays in those. The array should contain 5 arrays, and in each of those arrays are five more arrays, the generation of the numbers is fine, but when I ...
1
vote
3answers
42 views

How to put values in Map which is within a Map

How do I put values in this map? public static Map<String, TreeMap<String, SomeClass>> myMap=Collections.synchronizedMap(new TreeMap<String, TreeMap<String,SomeClass>>());
0
votes
1answer
28 views

Use Bing Quadkey tiles instead of x/y/z tiles in leafletjs map

I try to create a map with leaflet.js where it is possible to switch between different tile layers. It works great with tileservers that serve the tiles with the standard x,y and z(oom) schema. ...
1
vote
1answer
27 views

How to read Boost property_map with peer values with identical tag names

I am using the property_map from Boost c++ library v1.53, and its working great for me except I can't figure out how to parse data nodes with the same name that are peers of each other. As in the ...
2
votes
0answers
34 views

Adding scale bar to ggplot map

I've produced this map in ggplot2: library(maptools); library(ggplot2) data(wrld_simpl) world <- fortify(wrld_simpl) worldUk <- subset(world, id=="GBR") ggplot() + geom_path(aes(long, lat, ...
0
votes
0answers
7 views

adding markers to google map from spreadsheet

I want to upload my excel spreadsheet of longitudes and latitudes onto my website, and then use that file to add those markers to my google maps. is this possible, and if so, how can i accomplish ...
0
votes
3answers
38 views

Android - Google Map doesn't display

Please excuse my bad English, I'm French ! I've got a question about my Android App... I hava to integrate a google map, so I've followed a tutorial (from Google developper website), but when I when ...
1
vote
2answers
44 views

create a map with extensible key values

I would like to create a map with extensible key values. Currently I have a common project which has some enum. In my main project in which I have included the common project as a dependency, I have ...
0
votes
1answer
46 views

Vim - unable to map multiple keys

(it's a new topic whose starting point is this question) To make it short, I think I can't make mapping with 2-keys combination in vim (<key1-key2>, or <A-j> for example). One-key mapping ...
0
votes
1answer
11 views

image map coordinates ms paint for windows 7

help, so frustrated. Brand new so sorry about this question but i can't find the answer for the life of me. I created an image map and have to find the x y coordinates for the clickable areas. The ...
2
votes
1answer
79 views

Doing Map<Key, Map<Key, Set< Class>>> is painful in C++. Is there a better way?

I'm used to Python's development mindset when it comes to organizing data in a hierarchical fashion using maps. It's easy and syntactically cheap. While not extremely difficult in C++, nested ...
0
votes
2answers
29 views

Java: Stacked (layered) maps behind a Map interface?

I need a Map impl which would consist of stacked maps, which I could push() and pop(), and the values would be "added" or "removed" if they belong to the map being pushed/popped. And the values would ...
-1
votes
0answers
31 views

positioning multiple layered images in a responsive layout

Hi Sorry if this has been asked and answered already, But I have not found it if so. I am creating a website where for the homepage has an image of a map of a city, over this image I want to overlay ...
5
votes
2answers
129 views

C++ map of cmath functions

I would like to create a map with the keys being a function name as a string and the value being the function itself. So something like this... #include <cmath> #include <functional> ...
1
vote
0answers
73 views

C++ design: keeping subclasses in a map<string, superclass>

I have a ResourceManager class that is supposed to manage resources (images, sounds, etc.), which are mostly Resource objects which implement a stream interface. I keep them in a ...
6
votes
2answers
97 views

Is it okay to make Integer-keyed Maps in Java?

Just like in title. Is it okay to make something like this: HashMap<Integer, Object> foo = new HashMap<>(); Or maybe there's better container that allow adding values at any index? When ...
0
votes
3answers
85 views

C++ how to change value of a map element

I have a map with an integer and a class I made. Now I need to change the integer of each element in the list. I thought about sth like this : std::map<int, Product> ProductList; //This is ...
0
votes
0answers
14 views

calling image map links from an svg

I'm trying to do that most common of things- make a clickable image map. I've got the map highlight jquery plugin and with that and using manually coded in co-ordinates I can get shapes and links to ...
0
votes
1answer
25 views

Retrieve Latitude and Longitude from given address [closed]

I have an address with me and I want to retrieve its latitude and longitude using JavaScript. And main criteria is that I want to use HTML 5 Geolocation and not any third party resources like google ...
0
votes
0answers
24 views

windows phone 8 show blank map

I am trying to add a simple map to my app. I added map reference, added capability in WMAppManifest and this code to page: <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0"> ...
0
votes
0answers
9 views

QtConcurrent map type issues

I have a function remapTerrain() that accepts a QList<TerrainArray*> and delivers QLIst<TerrainTile*>and I wanted to see if I could use QtConcurrent::blockingMap to make it run on more ...

1 2 3 4 5 134