0
votes
2answers
19 views
JAX-RS, Map<String,String> to JSON without the overhead?
Hi!
I'm using JAX-RS to create restful webservices in Java. I am getting to much overhead in the produced JSON.
Data class:
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Test {
…
2
votes
5answers
125 views
Common algorithm for std::list and std::map?
I have a class of interest (call it X).
I have a std::list<X*> (call it L).
I have a function (call it F).
F(L) returns a subset of L (a std::list<X*>) according to an algorithm that …
2
votes
6answers
586 views
remove_if equivalent for std::map
I was trying to erase a range of elements from map based on particular condition. How do I do it using STL algorithms?
Initially I thought of using remove_if but it is not possible as remove_if does …
0
votes
2answers
52 views
Prolog List Question
I'm trying to understand lists in prolog when I stumbpled over this problem:
there's a predicate mergeandmap/2 that should basically do this:
mergeandmap([[a1,...,an],...,[z1,...,zm]],[x1...xn])
…
0
votes
1answer
62 views
How to reproject map with a cascading UMN-mapserver?
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?
1
vote
4answers
47 views
php - generating a world map from border data
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 …
0
votes
0answers
8 views
Openlayers vector layer
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?
Cloudmade doesn't let me …
4
votes
8answers
182 views
traditional for loop vs Iterator in Java
Is there any performance testing results available in comparing traditional for loop vs Iterator while traversing a ArrayList,HashMap and other collections?
Or simply why should I use Iterator over …
0
votes
1answer
43 views
high speed interprocess associative array
Is there library usable from c++ for sharing fairly simple data (integers,floating point numbers, strings) between cooperative processes?
Must be :
high-speed (SQL-based methods too slow due to …
0
votes
3answers
45 views
Starndards of open GIS, like openstreetmap, cloudmade?
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 …
0
votes
1answer
19 views
Clickable world map that returns the relivant 3166-1-alpha-2 country code
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.
e.g you click on the UK and it directs you to …
0
votes
0answers
8 views
remap keyboard key in wpf
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 …
0
votes
2answers
21 views
Android Map: Map does not show up on Device
I am able to see Map in emulator but once I load app on device map does not show up.
Emulator have target as google api 1.6 and device have android 1.6 loaded.
Is this diffrence causing issue?
…
0
votes
0answers
10 views
The internals of route-me? I need to add my own tile source
Hi there,
(route-me is an iPhone map library, http://code.google.com/p/route-me/ )
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 …
0
votes
3answers
63 views
An Exercise: map or reduce a map in Python without list comprehensions?
When I started writing this question, I didn't think of the easy solution with nested lists, but now anyway want to find one.
Here's an ugly code:
fun0(
fun1(fun2(fun3(arg1))),
…
