Tagged Questions

Corresponding every element of a given set to a unique element of another set

learn more… | top users | synonyms

236
votes
16answers
31k views

What algorithms compute directions from point A to point B on a map?

How do map providers (such as Google or Yahoo! Maps) suggest directions? I mean, they probably have real-world data in some form, certainly including distances but also perhaps things like driving ...
80
votes
2answers
7k views
54
votes
12answers
28k views

What is the ideal data type for latitude / longitude?

I'll be performing calculations on lat / long pairs, what datatype is best suited in MySQL database?
52
votes
1answer
37k views

server.mappath(“.”), server.mappath(“~”), server.mappath(@“\”), server.mappath(“/”). What is the difference?

Can anyone explain the difference between Server.MapPath("."), Server.MapPath("~"), Server.MapPath(@"\") and Server.MapPath("/")?
43
votes
12answers
47k views

How do I calculate distance between two latitude longitude points?

Here's an easy one for you: How do I calculate the distance between two points points specified by latitude and longitude? EDIT: For clarification, I'd like the distance in kilometres, the points ...
33
votes
9answers
10k views

any tool for java object to object mapping?

Friends, I am trying to convert DO to DTO using java and looking for automated tool before start writing my own. I just wanted to know if there any free tool available for the same.
31
votes
7answers
12k views

Python reverse / inverse a mapping

Given a dictionary like so: map = { 'a': 1, 'b':2 } How can one invert this map to get: inv_map = { 1: 'a', 2: 'b' }
17
votes
4answers
7k views

Inheritance Mapping with Fluent NHibernate

Given the following scenario, I want map the type hierarchy to the database schema using Fluent NHibernate. I am using NHibernate 2.0 Type Hierarchy public abstract class Item { public ...
15
votes
2answers
3k views

Fluent NHibernate, working with interfaces

I just switched to Fluent NHibernate and I've encountered an issue and did not find any information about it. Here's the case : public class Field : DomainObject, IField { public Field() { ...
14
votes
2answers
1k views

EF4 code-first: defining object relationships, foreign keys

< RANT_MODE > EF code-first approach is meant to save lots of time but for the time being I've only seen toy examples and spent hours trying to understand how I can make it generate the db I want. ...
13
votes
3answers
270 views

Geographic obstructions in radius searches

I am new here and points poor so I can only offer 50 pt bounty. Suppose I have an application a search for all gas stations within 10 mile radius of a certain location. However one side of this ...
12
votes
2answers
243 views

Double map in haskell?

I am still a haskell beginner. Can I do a double map in haskell? For example, if I have a [[Char]] and I want to convert each Char in each [Char] to lower case, is there an easy way to do this ...
12
votes
7answers
11k views

EF Mapping and metadata information could not be found for EntityType Error

I have encountered an exception when I using Entity Framework 4.0 RC. My Entity Framework model is encapsulated in a private assembly whos name is Procurement.EFDataProvider and my POCO are inside of ...
11
votes
2answers
213 views

python class that acts as mapping for **unpacking

Without subclassing dict, what would a class need to be considered a mapping so that it can be passed to a method with ** from abc import ABCMeta class uobj: __metaclass__ = ABCMeta ...
11
votes
6answers
2k views

SLAM Algorithm

Does anyone have any experience with developing or working on the autonomous robot problem, in particular developing the SLAM algorithm? I would like to know where would be a good place to get started ...
10
votes
1answer
1k views

Entity Framework 4 CTP5 Code First: how to share common column names in a Hierarchy Per Table mapping

I'm using Entity Framework 4 CTP5 code first approach and I have a Hierarchy Per Table mapping. Some of my classes in the hierarchy have properties in common. public class BaseType { public int ...
9
votes
2answers
741 views

EF 4.0 - mapping to readonly property with private field

Is it possible to map following POCO class with EF 4.0? public class MyClass { private string _myData; public MyClass() { } public MyClass(string myData) { _myData = myData; } ...
9
votes
3answers
1k views

Using AutoMapper to unflatten a DTO

I've been trying to use AutoMapper to save some time going from my DTOs to my domain objects, but I'm having trouble configuring the map so that it works, and I'm beginning to wonder if AutoMapper ...
9
votes
6answers
10k views

Wifi Triangulation

What would be the best way to triangulate a wireless network passively. Are there tools available? Algorithms? Libraries? My goal would be to create a relative map of various objects that sends or ...
9
votes
12answers
3k views

Mapping two integers to one, in a unique and deterministic way

Imagine two positive integers A and B. I want to combine these two into a single integer C. There can be no other integers D and E which combine to C. So combining them with the addition operator ...
9
votes
8answers
613 views

Is there a value in using map() vs for?

Does map() iterate through the list like "for" would? Is there a value in using map vs for? If so, right now my code looks like this: for item in items: item.my_func() If it makes sense, I ...
9
votes
5answers
2k views

Math - mapping numbers

How do I map numbers, linearly, between a and b to go between c and d. That is, I want numbers between 2 and 6 to map to numbers between 10 and 20... but I need the generalized case. My brain is ...
9
votes
9answers
4k views

Map Routing, a la Google Maps?

I've always been intrigued by Map Routing, but I've never found any good introductory (or even advanced!) level writeups talking about it. Does anybody have any pointers, hints, etc? update: I'm ...
8
votes
3answers
82 views

Easy typing for non-english keyboards vim users

In English or US keyboards keys like \, /, [ and ] are very easily typed with only one key stroke. Usually is not the same for non-english keyboards. Is there a way to achieve the same easiness of ...
8
votes
1answer
180 views

RDF / Graph to Object Mapping Framework

Does anyone have used, implemented, knows or just have heard of any graph (especially RDF) to object mapping frameworks for java. We are evaluating frameworks at the moment. So far we have: KMS ...
8
votes
4answers
294 views

Mapping a numpy array in place

Is it possible to map a numpy array in place? If yes, how? Given a_values - 2D array - this is the bit of code that does the trick for me at the moment: for row in range(len(a_values)): for col ...
8
votes
3answers
928 views

Automapper for Java

Is there Java equivalent of .Net's Automapper?
8
votes
3answers
8k views

Good examples of MapServer / OpenLayers

I want to convince some clients to use MapServer and OpenLayers. Please can anyone suggest attractive websites to show off the possiblities! The clients will be impressed by: A density map ...
8
votes
3answers
1k views

Mapping A Sphere To A Cube

There is a special way of mapping a cube to a sphere described here: http://mathproofs.blogspot.com/2005/07/mapping-cube-to-sphere.html It is not your basic "normalize the point and you're done" ...
8
votes
10answers
3k views

C# - IDataReader to Object mapping using generics

How can I map a DataReder object into a class object by using generics? For example I need to do the following: public class Mapper<T> { public static List<T> ...
8
votes
2answers
2k views

Anyone using Bing Map Web Services with Delphi?

Has anyone gotten Bing Map Web Services (formerly Virtual Earth Web Services) working with Delphi? Based on my experiences so far (both using Delphi and Visual Studio C#), I'm about ready to give up ...
8
votes
4answers
8k views

How to display data using openlayers with OpenStreetMap in geodjango?

I've got geodjango running using openlayers and OpenStreetMaps with the admin app. Now I want to write some views to display the data. Basically, I just want to add a list of points (seen in the ...
8
votes
5answers
3k views

Object to object mapper

I've used plenty of ORM tools in the past, NHibernate, .netTiers, LLBLGen and more and they always do a pretty good job of mapping data from a database to objects in code. What I'm looking for ...
7
votes
3answers
130 views

Given two python lists of same length. How to return the best matches of similar values?

Given are two python lists with strings in them (names of persons): list_1 = ['J. Payne', 'George Bush', 'Billy Idol', 'M Stuart', 'Luc van den Bergen'] list_2 = ['John Payne', 'George W. Bush', ...
7
votes
8answers
250 views

What benefit is there of allowing a variable to be left uninitialized?

In many languages you're allowed to declare a variable and use it before initializing it. For example, in C++, you can write a snippet such as: int x; cout << x; This would of course return ...
7
votes
3answers
484 views

Why does AutoMapper have an IValueFormatter when it has a seemingly much more powerful ValueResolver?

It looks like an IValueFormatter takes a value of type object and returns a value of type string, while a ValueResolver<TSource, TDestination> takes a value of any type and returns a value of ...
7
votes
2answers
4k views

Mapping a list in hibernate by ordering instead of an index-field

This works: <hibernate-mapping> <class name="Train" table="Trains"> <id column="id" name="id" type="java.lang.String" length="4"> <generator ...
7
votes
4answers
2k views

UIScrollView ImageView with pins on top

To all, I have a UIScrollView which has a UIImageView. I want to show pins on this imageView. When I add pins as subviews of the ImageView everything is great except for when you zoom the scale ...
7
votes
2answers
1k views

Composite foreign key columns in GORM

I need to customize the column names for composite foreign keys in GORM, and I didn't find any document that shows how to do it. I know how to customize PK columns, and how to customize a ...
7
votes
4answers
1k views

Input in Prolog

I'm currently working on a recursive Prolog program to link routes together to create a basic GPS of the Birmingham area. At the moment I can get output as so: Input routeplan(selly_oak, aston, P). ...
7
votes
3answers
2k views

How to convert Perforce depot locations to client view locations

I'd like to know how to convert Perforce depot locations to client view locations for the purpose of script writing. I have a script that first checks out a file for edit in perforce and then ...
6
votes
2answers
2k views

Entity Framework 4.1 Code First: Get all Entities with a specific base class

I have a DbContext with set up different DbSet<T>s with all types that derive from the same base class: public class Foo : Entity { } public class Bar : Entity { } MyDbContext : DbContext { ...
6
votes
1answer
124 views

null with PHP < and > operators

Can somebody explain how null is mapped in these statements? null>0; //=> bool(false) null<0; //=> bool(false) null==0; //=> bool(true) but null<-1; // => bool(true) I ...
6
votes
5answers
576 views

performance difference between openlayers, decarta and google maps

We have recently been transitioning our company mapping system from Google map, first to deCarta and then to OpenLayers. We have found that OpenLayers and deCarta are remarkably slower than Google ...
6
votes
8answers
413 views

Algorithm required to determine if a rectangle is completely covered by another set of rectangles

I am searching for an algorithm that will determine if a new rectangle is completely covered by a set of existing rectangles. Another way of putting the question, is does the new rectangle exist ...
6
votes
11answers
966 views

How to create a “dependency graph” for IT assets

One of my customers is trying to create an interactive "matrix" of interdependencies for the various applications used in their company (it's a travel&leisure company with around 2500 employees). ...
6
votes
2answers
2k views

Common Mercator Projection formulas for Google Maps not working correctly

I am building a Tile Overlay server for Google maps in C#, and have found a few different code examples for calculating Y from Latitude. After getting them to work in general, I started to notice ...
6
votes
6answers
347 views

String and character mapping question for the guru's out there

Here's a problem thats got me stumped (solution wise): Given a str S, apply character mappings Cm = {a=(m,o,p),d=(q,u),...} and print out all possible combinations using C or C++. The string can be ...
6
votes
1answer
263 views

Does type projection have an opposite, or is it still projection (or just mapping)?

This is based on my assumption that taking an object of type: public class Fruit : IBasicFruit, IFruitDetails { // IBasicFruit implementation public string name { get; set; } public ...
6
votes
1answer
807 views

Plotting shapefiles on top of Google map tiles

I have some shapefiles I want to plot over Google Maps tiles. What's the most efficient way to do this? One path might be to use the pkg RgoogleMaps, however, it is still unclear to me how to do this. ...

1 2 3 4 5 34