active questions tagged map - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T04:42:40Zhttp://stackoverflow.com/feeds/tag/maphttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1948343/cant-get-the-keys-in-a-database-to-parse-as-part-of-an-array-1Can't get the keys in a database to parse as part of an arrayjoe Simpson2009-12-22T18:42:10Z2009-12-22T19:39:06Z
<p>I have an table in my database which so far has been great for storing stuff in more than one object. But i want to be able to transform it into a multi-object array thingy.</p>
<p>Here is the data which is related to this new 'object' (in mysql):</p>
<pre>
uid field value
page:1 shop[2].location In Shops, Dundas Arcades,Middlesbrough, TS1 1HT
page:1 shop[1].location 5a High Street, Stockton-on-tees, TS18 1UB
page:1 name Enter The Asylum
page:1 contact.website http://entertheasylum.co.uk
page:1 contact.phone 0800 090 090
</pre>
<p>Now what i'm looking for is to via PHP transform it into something like (print_r output):</p>
<pre><code>array(
"name" => "Enter The Asylum",
"shop" => array(
array("location" => "In Shops, Dundas Arcades..."),
array("location" => "5a High Street, Stockton-on-tees...")
),
"contact" => array(
"website" => "http://entertheasylum.co.uk",
"phone" => "0800 090 090"
)
)
</code></pre>
<p>anybody got any ideas?</p>
<p>Joe</p>
http://stackoverflow.com/questions/1940652/dynamically-inserting-strings-to-a-stdmap1Dynamically inserting strings to a std::mapRed Serpent2009-12-21T15:12:05Z2009-12-22T09:52:37Z
<p>Hi</p>
<p>I am trying to create a map of file pairs... First I am searching a specified directory for files using the FindFirstFile and FindNextFile and when a file is found I search the map to see if the associated file is there. If the other file was added to the map, the new found file is inserted beside the previously found one. If an associated file was not found, the new file is inserted to the map and its pair is left intact.</p>
<p>To explain more:
lets say we have 2 files file.1.a and file.1
those files represent a pair and thus should be added to the map as a pair</p>
<pre><code>//map<File w/o .a, File w .a>
std::map<CString, CString> g_map;
int EnumerateFiles(LPCTSTR Dir)
{
//Search Files....
//Found a File....(for ex: file.1)
//Append .a to the string and search for it in the map
BOOL bAdded = FALSE;
for(std::map<CString, CString>::iterator itr = g_map.begin(); itr != g_map.end(); itr++)
{
if(StrCmp(tchAssocFile, itr->second) == 0)
{
bAdded = TRUE;
//pair the string with the other one;
}
}
if(!bAdded)
//Add the new string to the map and leave its associate blank
//Do the same in reverse if the associate was found first....
}
</code></pre>
<p>I hope this was clear as I can't think of any other way to put it... sry.</p>
<p>Can you please help in solving this issue...</p>
<p>regards</p>
http://stackoverflow.com/questions/1863158/message-map-in-win32-no-mfc1Message Map in Win32 No-MFC whoi2009-12-07T21:49:06Z2009-12-22T04:38:24Z
<p>How could I create similar structure to handle Win32 Messages like it is in MFC?</p>
<p>In MFC;</p>
<pre><code>BEGIN_MESSAGE_MAP(CSkinCtrlTestDlg, CDialog)
//{{AFX_MSG_MAP(CSkinCtrlTestDlg)
ON_BN_CLICKED(IDC_BROWSE, OnBrowse)
ON_BN_CLICKED(IDC_DEFAULTSKIN, OnChangeSkin)
ON_WM_DRAWITEM()
ON_WM_MEASUREITEM()
ON_WM_COMPAREITEM()
ON_BN_CLICKED(IDC_CHECK3, OnCheck3)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
</code></pre>
<p>BEGIN_MESSAGE_MAP macro handles this behaviour. What to do for pure Win32? </p>
http://stackoverflow.com/questions/1935139/using-stdmapk-v-where-v-has-no-usable-default-constructor3Using std::map<K,V> where V has no usable default constructorBCS2009-12-20T07:35:38Z2009-12-21T21:23:27Z
<p>I have a symbol table implemented as a <code>std::map</code>. For the value, there is no way to legitimately construct an instance of the value type via a default constructor. However if I don't provide a default constructor, I get a compiler error and if I make the constructor assert, my program compile just fine but crashes inside of <code>map<K,V>::operator []</code> if I try to use it to add a new member.</p>
<p><em>Is there a way I can get C++ to disallow <code>map[k]</code> as an l-value at compile time (while allowing it as an r-value)?</em></p>
<p><hr></p>
<p>BTW: I know I can insert into the map using <code>Map.insert(map<K,V>::value_type(k,v))</code>.</p>
<p><hr></p>
<p><strong>Edit:</strong> several people have proposed solution that amount to altering the type of the value so that the map can construct one without calling the default constructor. <strong>This has exactly the opposite result of what I want</strong> because it hides the error until later. If I were willing to have that, I could simply remove the assert from the constructor. What I <em>Want</em> is to make the error happen even sooner; at compile time. However, it seems that there is no way to distinguish between r-value and l-value uses of <code>operator[]</code> so it seems what I want can't be done so I'll just have to dispense with using it all together.</p>
http://stackoverflow.com/questions/1939953/how-to-find-a-value-exists-in-a-c-stdmap0How to find a value exists in a C++ std::mapatch2009-12-21T12:55:03Z2009-12-21T13:14:53Z
<p>Hi, I'm trying to check if value is in a map and somewhat can't do it:</p>
<pre><code>typedef map<string,string>::iterator mi;
map<string, string> m;
m.insert(make_pair("f","++--"));
pair<mi,mi> p = m.equal_range("f");//I'm not sure if equal_range does what I want
cout << p.first;//I'm getting error here
</code></pre>
<p>so how can I print what is in p?
Thank you</p>
http://stackoverflow.com/questions/1938189/understanding-lambda0Understanding LambdaNimbuz2009-12-21T04:31:30Z2009-12-21T04:42:39Z
<pre><code>X = 5
L = list(map(lambda x: 2**X, range(7)))
print (L)
</code></pre>
<p>... I'm expecting this to return:</p>
<pre><code>[1, 2, 4, 8, 16, 32, 64]
</code></pre>
<p>...instead, it returns:</p>
<pre><code>[32, 32, 32, 32, 32, 32, 32]
</code></pre>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1918456/what-is-a-hashtable-dictionary-implementation-for-python-that-doesnt-store-the-k3What is a hashtable/dictionary implementation for Python that doesn't store the keys?unknown (google)2009-12-16T23:06:21Z2009-12-18T21:46:04Z
<p>I'm storing millions, possibly billions of 4 byte values in a hashtable and I don't want to store any of the keys. I expect that only the hashes of the keys and the values will have to be stored. This has to be fast and all kept in RAM. The entries would still be looked up with the key, unlike set()'s.</p>
<p>What is an implementation of this for Python? Is there a name for this?</p>
<p>Yes, collisions are allowed and can be ignored.</p>
<p>(I can make an exception for collisions, the key can be stored for those. Alternatively, collisions can just overwrite the previously stored value.)</p>
http://stackoverflow.com/questions/1757363/java-hashmap-performance-optimization-alternative9Java HashMap performance optimization / alternativeNash02009-11-18T16:44:22Z2009-12-18T20:38:56Z
<p>I want to create a large HashMap but the <code>put()</code> performance is not good enough. Any ideas?</p>
<p>Other data structure suggestions are welcome but I need the lookup feature of a Java Map:</p>
<p><code>map.get(key)</code></p>
<p>In my case I want to create a map with 26 million entries. Using the standard Java HashMap the put rate becomes unbearably slow after 2-3 million insertions. </p>
<p>Also, does anyone know if using different hash code distributions for the keys could help? </p>
<p>My hashcode method:</p>
<pre><code>byte[] a = new byte[2];
byte[] b = new byte[3];
...
public int hashCode() {
int hash = 503;
hash = hash * 5381 + (a[0] + a[1]);
hash = hash * 5381 + (b[0] + b[1] + b[2]);
return hash;
}
</code></pre>
<p>I am using the associative property of addition to ensure that equal objects have the same hashcode. The arrays are bytes with values in the range 0 - 51. Values are only used once in either array. The objects are equal if the a arrays contain the same values (in either order) and the same goes for the b array. So a = {0,1} b = {45,12,33} and a = {1,0} b = {33,45,12} are equal.</p>
<p>EDIT, some notes:</p>
<ul>
<li><p>A few people have criticized using a hash map or other data structure to store 26 million entries. I cannot see why this would seem strange. It looks like a classic data structures and algorithms problem to me. I have 26 million items and I want to be able to quickly insert them into and look them up from a data structure: give me the data structure and algorithms.</p></li>
<li><p>Setting the initial capacity of the default Java HashMap to 26 million <em>decreases</em> the performance.</p></li>
<li><p>Some people have suggested using databases, in some other situations that is definitely the smart option. But I am really asking a data structures and algorithms question, a full database would be overkill and much slower than a good datastructure solution (after all the database is just software but would have communication and possibly disk overhead).</p></li>
</ul>
http://stackoverflow.com/questions/1921836/sorting-technique-followed-by-treemap0Sorting technique followed by TreeMap?Hari2009-12-17T13:36:29Z2009-12-17T16:01:18Z
<p>Can anyone explain how the data are sorted in a <code>TreeMap</code> automatically when we try to print the data stored in them?</p>
http://stackoverflow.com/questions/1921237/problem-using-generic-map-with-wildcard0Problem using generic map with wildcardmmoossen2009-12-17T11:52:21Z2009-12-17T13:50:20Z
<p>i have a method that returns a map defined as:</p>
<pre><code>public Map<String, ?> getData();
</code></pre>
<p>the actual implementation of this method is not clear to me, but:</p>
<p>when i try to do:</p>
<pre><code>obj.getData().put("key","value")
</code></pre>
<p>I get following compile time error message:</p>
<blockquote>
<p>The method put(String, capture#9-of ?)
in the type Map
is not applicable for the arguments
(String, String)</p>
</blockquote>
<p>what is the problem? is not <code>String</code> of type anything?</p>
<p>thanks in advance</p>
http://stackoverflow.com/questions/1887039/starndards-of-open-gis-like-openstreetmap-cloudmade0Starndards of open GIS, like openstreetmap, cloudmade?Mickey Shine2009-12-11T10:05:33Z2009-12-16T19:39:38Z
<p>I am not familiar with the GIS (or map), but recently I have to do some work related to this field. I know some map providers: OpenStreetMap, CloudMadeMap, OpenCycleMap, OpenAerialMap...... My questions is: Do those map providers have the same standards? I mean the tile size, zoom levels, scales for each zoom level and so on. </p>
<p>Is there any standard for open GIS? If yes, where can I find them or some one could give me some references or links?</p>
<p>Correct me if I am wrong.</p>
<p>Thank you</p>
http://stackoverflow.com/questions/1900132/jax-rs-mapstring-string-to-json-without-the-overhead0JAX-RS, Map<String,String> to JSON without the overhead?flygandehund2009-12-14T10:34:24Z2009-12-14T12:00:23Z
<p>Hi!</p>
<p>I'm using JAX-RS to create restful webservices in Java. I am getting to much overhead in the produced JSON.</p>
<p>Data class:</p>
<pre><code>@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Test {
private Map<String,String> data;
Test() {}
public Test(Map<String,String> data) {
this.data = data;
}
public Map<String, String> getData() {
return data;
}
}
</code></pre>
<p>Service:</p>
<pre><code>@GET
@Path("/test")
@Produces("application/json; charset=UTF-8;")
public Test test() {
Map<String,String> map = new HashMap<String,String>();
map.put("foo", "bar");
map.put("bingo", "bongo");
return new Test(map);
}
</code></pre>
<p>Produces:</p>
<pre><code>{"data":{"entry":[{"key":"foo","value":"bar"},{"key":"bingo","value":"bongo"}]}}
</code></pre>
<p>I would like it to produce:</p>
<pre><code>{"data":{"foo":"bar","bingo":"bongo"}}
</code></pre>
<p>What is the simplest way to achive this? I am free to redifine my data class but I can't know in advance the keys or size of the map.</p>
http://stackoverflow.com/questions/1898729/common-algorithm-for-stdlist-and-stdmap3Common algorithm for std::list and std::map?Chris2009-12-14T03:18:31Z2009-12-14T06:14:01Z
<p>I have a class of interest (call it X).<br>
I have a std::list<X*> (call it L).<br>
I have a function (call it F). </p>
<p>F(L) returns a subset of L (a std::list<X*>) according to an algorithm that examines the internal state of each X in the list.</p>
<p>I'm adding to my application a std::map<int,X*> (call it M), and I need to define F(M) to operate in the same fashion as F(L) - that is to say, F(M) must return a std::list<X*> as well, determined by examining the internal state of each X in the map.</p>
<p>Being a self-described lazy programmer, immediately I see that the algorithm is going to be [logically] the same and that each data type (the std::list and the std::map) are iterable templates. I don't want to maintain the same algorithm twice over, but I'm not sure how to move forward.</p>
<p>One approach would be to take the X*'s from F(M) (that is, the 'values' from the key-value map), throw them into a std::list<X*>, and punt the processing over to F(std::list<X*>), passing the return std::list<X*>; back through. I can't see how this would be the only way.</p>
<p>My question: How can I maintain the core algorithm in one place, but retain the ability to iterate over either a sequence or the values of a pair associative container?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/800955/removeif-equivalent-for-stdmap2remove_if equivalent for std::mapaJ2009-04-29T05:05:30Z2009-12-14T04:27:41Z
<p>I was trying to erase a range of elements from map based on particular condition. How do I do it using STL algorithms?</p>
<p>Initially I thought of using <code>remove_if</code> but it is not possible as remove_if does not work for associative container.</p>
<p>Is there any "remove_if" equivalent algorithm which works for map ?</p>
<p>As a simple option, I thought of looping through the map and erase. But is looping through the map and erasing a safe option?(as iterators get invalid after erase)</p>
<p>I used following example:</p>
<pre><code>bool predicate(const std::pair<int,std::string>& x)
{
return x.first > 2;
}
int main(void)
{
std::map<int, std::string> aMap;
aMap[2] = "two";
aMap[3] = "three";
aMap[4] = "four";
aMap[5] = "five";
aMap[6] = "six";
// does not work, an error
// std::remove_if(aMap.begin(), aMap.end(), predicate);
std::map<int, std::string>::iterator iter = aMap.begin();
std::map<int, std::string>::iterator endIter = aMap.end();
for(; iter != endIter; ++iter)
{
if(Some Condition)
{
// is it safe ?
aMap.erase(iter++);
}
}
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1897632/prolog-list-question0Prolog List QuestionChris2009-12-13T20:26:18Z2009-12-14T02:27:05Z
<p>I'm trying to understand lists in prolog when I stumbpled over this problem:</p>
<p>there's a predicate mergeandmap/2 that should basically do this:</p>
<pre><code>mergeandmap([[a1,...,an],...,[z1,...,zm]],[x1...xn])
%----------list 1------------ -list 2--
</code></pre>
<p>List 2 consits of letters (for example [a,b,c]).
List 1 consits of several lists with size(list2) elements containing 1s and 0s
(for example: [[0,0,1],[1,0,1],[0,1,1]])</p>
<p>The prolog program should determine from list 1 which elements from list 2 should be printed and when.</p>
<p>For the above example:</p>
<pre><code>([[0,0,1],[1,0,1],[0,1,1]],[a,b,c]) Result: b c abc
</code></pre>
<p>Another example:</p>
<pre><code>([[0,1,1],[1,0,1],[1,1,1]],[a,b,c]) Result: bc ac abc
([[0,1],[1,0]],[a,b]) Result: b a
([[0,1,1,1],[1,0,1,0],[1,1,1,0],[1,1,1,0]],[a,b,c,d]) Result: bcd acd abcd a
</code></pre>
<p>I came up with this idea:</p>
<pre><code>([[A,B,C],[D,E,F],[G,H,I]],[a,b,c])
</code></pre>
<ol>
<li>"Merge" Lists into new list: by putting all the first subelements together, all the second subelements, all third, etc, etc... -> [ADG,BEH,CFI] </li>
<li><p>"Map" second list on Result from (1):</p>
<p>[ADG,BEH,CFI] + [abc,abc,abc] </p></li>
</ol>
<p>-> Value of uppercase letter decides wether lower case letter gets in the result.</p>
<p>Does anybody know how to implement this in prolog?
Any help would really be appreciated!</p>
http://stackoverflow.com/questions/810667/how-to-reproject-map-with-a-cascading-umn-mapserver0How to reproject map with a cascading UMN-mapserver?Mnementh2009-05-01T08:38:15Z2009-12-13T21:09:24Z
<p>I have UMN configured as a cascading mapserver. I want it to reproject the map while cascading through UMN. How can I do that? Is that possible at all?</p>
http://stackoverflow.com/questions/1894678/php-generating-a-world-map-from-border-data1php - generating a world map from border dataMark2009-12-12T20:57:07Z2009-12-12T22:04:01Z
<p>I have found the shape data for the borders of all the countries and a class to process it and I have written a script to convert the longitude and latitude to a pixel location on an image and to draw the countries using imagefilledpolygon and imageline. Everything is working great except:</p>
<p>1) I have a $scale variable that I can change. At $scale=1 the image is 360x180px (1px = 1 degree lat/long). Ideally the final image I want would be about $scale = 2 (720x360) however the borderlines at 1px thick look very thick. So I thought the best solution would be to generate the map at $scale=10 and then resize the generated image. The problem is imagecopyresized does not antialias when it resizes and it leaves me with a really jagged image, how can I resize and antialias?</p>
<p>2) The number of points to generate a polygon of a country is a LOT. The plan is to use the same code to produce a html imagemap to make the countries into links. However I fear at the moment there is too many points for an imagemap (the file size might be too big). My initial approach was to skip x amount of points, which lead to some success, If I process 1 in 10 points I get an acceptable result mostly. Ideally I would have even less... when I tried 1 in 40 I found some country borders overlapped and there were some gaps between countries (but some of the busier coastlines looked better). Can anyone think of a sensible way to reduce the number of points whilst maintaining a reasonable level of accuracy?</p>
<p>If anyone is interested I'll post the code (once its finished)</p>
http://stackoverflow.com/questions/1892742/openlayers-vector-layer0Openlayers vector layerstabbie2009-12-12T08:12:39Z2009-12-12T08:12:39Z
<p>I want to have a vector layer of the world, which shows the country borders, states and their names in English. Is there a layer that exists that I can control the colours?</p>
<p>Cloudmade doesn't let me quite do this, nor does openstreetmap and a bunch of others. I'm thinking I might need to create a raster image and overlay that except I dont know where to get an accurate EPS/vector map I can edit and overlay.</p>
<p>Running out of options!</p>
http://stackoverflow.com/questions/1879255/traditional-for-loop-vs-iterator-in-java4traditional for loop vs Iterator in JavaHarish2009-12-10T07:39:15Z2009-12-12T06:13:23Z
<p>Is there any performance testing results available in comparing traditional for loop vs Iterator while traversing a ArrayList,HashMap and other collections?</p>
<p>Or simply why should I use Iterator over for loop or vice versa?</p>
http://stackoverflow.com/questions/1891330/high-speed-interprocess-associative-array0high speed interprocess associative arrayMark Borgerding2009-12-11T22:39:44Z2009-12-11T23:05:31Z
<p>Is there library usable from c++ for sharing fairly simple data (integers,floating point numbers, strings) between cooperative processes? </p>
<p>Must be :</p>
<ul>
<li>high-speed (SQL-based methods too slow due to parsing)</li>
<li>able to get,set,update,delete both fixed and variable data types (e.g. int and string) </li>
<li>ACID (atomic,consistent,isolated,durable)</li>
<li>usable under linux</li>
<li>usable by processes without a shared parent.</li>
<li>highly compatible license: e.g. LGPL,MIT,BSD</li>
</ul>
<p>For bonus points:</p>
<ul>
<li>ability to work across the network.</li>
<li>ability to handle aggregation/composition into more complicated structures</li>
</ul>
http://stackoverflow.com/questions/1889729/clickable-world-map-that-returns-the-relivant-3166-1-alpha-2-country-code0Clickable world map that returns the relivant 3166-1-alpha-2 country codeMark2009-12-11T17:48:18Z2009-12-11T17:52:12Z
<p>I want to make a click-able world map which when a user clicks on a country it directs the user to a url containing the corresponding country code.</p>
<p>e.g you click on the UK and it directs you to .../country.php?c=GB</p>
<p>What would be the best way to go about it? html imagemaps? javascript? flash? Are there scripts already out there? Is there a way to use google maps?</p>
http://stackoverflow.com/questions/1888502/remap-keyboard-key-in-wpf0remap keyboard key in wpfJoshua2009-12-11T14:42:26Z2009-12-11T14:42:26Z
<p>I have a wpf application that uses several Telerik RadNumericUpDown controls to enter measurements. Turns out that the Telerik control only accepts "." from the numeric keypad (next to the 0 on the right side of the keyboard). Most of my clients have laptops, and so they don't have this button, but they have the "." next to the "," and the right shift key. I asked the question in the Telerik forums about a fix, but haven't heard back. In the meantime I'm wondering if there is a simple way to remap the "." next to the "," key to the "." key on the numeric keypad.</p>
<p>Does anyone know if there is a way to do this. I'd like to do it just in my application, and not OS wide.</p>
<p>Thanks</p>
<p>Joshua</p>
http://stackoverflow.com/questions/1887242/android-map-map-does-not-show-up-on-device0Android Map: Map does not show up on Devicevikram deshpande2009-12-11T10:42:53Z2009-12-11T11:18:17Z
<p>I am able to see Map in emulator but once I load app on device map does not show up.</p>
<p>Emulator have target as google api 1.6 and device have android 1.6 loaded.</p>
<p>Is this diffrence causing issue?</p>
<p>please help and thanks in advance.</p>
http://stackoverflow.com/questions/1885268/the-internals-of-route-me-i-need-to-add-my-own-tile-source0The internals of route-me? I need to add my own tile sourceMickey Shine2009-12-11T01:20:50Z2009-12-11T01:29:35Z
<p>Hi there,</p>
<p>(route-me is an iPhone map library, <a href="http://code.google.com/p/route-me/" rel="nofollow">http://code.google.com/p/route-me/</a> )</p>
<p>I have a map app based on web and it works fine now. Recently I need to make an iPhone client for my map. But here is the problem: My map got an images size of 300x300 and zoom levels with 1-13, and the scales are also different (Meanwhile it seems route-me support an images size of 256x256 and some certain zoom levels and scales).</p>
<p>I need to look into the source of route-me. It's really hard to do so without much documentation. So I am here to see if any one could give me a brief guidance, such as the definition of tiles, how the tiles change with certain tile size and zoom level, etc(better with some implementation specifications)</p>
<p>Thank you in advance~</p>
http://stackoverflow.com/questions/1884682/an-exercise-map-or-reduce-a-map-in-python-without-list-comprehensions0An Exercise: map or reduce a map in Python without list comprehensions?culebrón2009-12-10T22:55:13Z2009-12-10T23:15:46Z
<p>When I started writing this question, I didn't think of the easy solution with nested lists, but now anyway want to find one.</p>
<p>Here's an ugly code:</p>
<pre><code>fun0(
fun1(fun2(fun3(arg1))),
fun1(fun2(fun3(arg4))),
fun1(fun2(fun3(arg4))),
fun1(fun2(fun3(arg4))))
</code></pre>
<p>Ouch! Names are given for examples. In the real application, their names have no pattern like this.</p>
<p>I played a bit with <code>map(map ...)</code> and <code>reduce(map ...)</code> getting wrong results or <code>TypeError</code>s, before going here and writing this. The simple solution, of course, came while writing the question: use list comprehensions. Something like this (haven't tested yet):</p>
<pre><code>fun0([i(j) for i in (fun1, fun2, fun3) for j in (arg1, arg2, arg3, arg4)])
</code></pre>
<p>Still, I'd like to know <strong>how is it possible to achieve the same with functional programming tools only?</strong></p>
<pre><code>fun0(map(fun1, map(fun2, map(fun3,
(arg1, arg2, arg3, arg4)))))
</code></pre>
<p>There's still a pattern that I think can be removed. I tried <code>map(map, (fun1, ...), (arg1, ...))</code> but this way Python tried to iterate over each argument and raised errors.</p>
http://stackoverflow.com/questions/1883663/should-i-use-jquery-inarray0Should I use jQuery.inArray()?pr10012009-12-10T20:10:32Z2009-12-10T23:05:29Z
<p>I'm doing very frequent searches in arrays of objects and have been using jQuery.inArray(). However, I'm having speed and memory issues and one of the most called methods according to my profiler is jQuery.inArray(). What's the word on the street about its performance? Should I switch to a simple for loop?</p>
<p>My specific function is:</p>
<pre><code>function findPoint(point, list)
{
var l = list.map(function anonMapToId(p) { return p.id });
var found = jQuery.inArray(point.id, l);
return found;
}
</code></pre>
<p>Is perhaps <code>list.map()</code> is more to blame?</p>
http://stackoverflow.com/questions/1865490/is-there-any-free-open-source-map-engine-for-iphone0Is there any free/open source map engine for iPhone?Mickey Shine2009-12-08T08:25:30Z2009-12-10T15:31:31Z
<p>Hi
I have a bunch of map images and i wonder if there is any free/open source map engine that I can use for iPhone development. Just like google map api but they are for native development</p>
http://stackoverflow.com/questions/1879418/how-to-add-custom-map-source-to-route-me0How to add custom map source to route-me?Mickey Shine2009-12-10T08:19:37Z2009-12-10T08:56:16Z
<p>Hi,
'route-me' is an iPhone map engine and I want to add my own map source to it. I've got all the map images on my server but I dont know how to add the map source? Any one could help?</p>
http://stackoverflow.com/questions/212562/is-there-a-good-way-to-have-a-mapstring-get-and-put-ignore-case9Is there a good way to have a Map<String, ?> get and put ignore case?Joshua2008-10-17T15:07:03Z2009-12-09T20:55:41Z
<p>Is there a good way to have a Map get and put ignore case?</p>
http://stackoverflow.com/questions/1441717/plotting-color-map-with-zip-codes-in-r-or-python2Plotting color map with zip codes in R or Pythongappy2009-09-17T22:50:42Z2009-12-09T04:38:07Z
<p>I have some US demographic and firmographic data.<br />
I would like to plot zipcode areas in a state or a smaller region (e.g. city). Each area would be annotated by color and/or text specific to that area. The output would be similar to <a href="http://maps.huge.info/" rel="nofollow">http://maps.huge.info/</a> but a) with annotated text; b) pdf output; c) scriptable in R or Python.</p>
<p>Is there any package and code that allows me to do this?</p>