26 Discussion / Question Topics

Remove Filter
Member Avatar for
Member Avatar for pritaeas

I'm looking to build a command-line tool that will enable me to read an arbitrary XML file combined with a mapping to fill an existing (arbitrary) SQLite database with data. What I'm looking for are conceptual ideas on how to solve this. I've got a possible theoretical solution in mind, …

Member Avatar for pritaeas
0
305
Member Avatar for edarcy

Hi, I am creating a project which is a remake of a game so I want to be able to read a map from a Notepad file and store the location and character in the file so I can place a selected image in the location on the grid that …

0
196
Member Avatar for Katie_1

I work for a small food charity that delivers hot meals to people in London. We are looking for a program that will make our logistics easier. We need a route planner that can take a list of postcodes and design routes that work with variable requirements such as the …

Member Avatar for jwenting
0
292
Member Avatar for manalibhadula

Hi , I am new to hibernate and facing issues with composite key mapping.Please help,.While running class name Example,At line 36:- **List sites = session.createQuery("Select h from SiteStageDto h").list();** code is returning null pointer,the hql is returing right query but unable to fetch data to list. I am also posting …

Member Avatar for manalibhadula
0
336
Member Avatar for DarkLightning7

I am working on a mapping system to support pathfinding over areas that are too large to hold in memory. The problem i have run into is how to load only a small part of the map when its all linked together and then dynamicaly load more of the map …

Member Avatar for JamesCherrill
0
221
Member Avatar for DarkLightning7

Ok so im working on a mapping library for my pathfinding system and im trying to figure out what Data structure would be best to use for rapid calls up to several hundred a second, as low memory usage as possible, and not too difficult to store and load pieces(chunks) …

Member Avatar for DarkLightning7
0
201
Member Avatar for nima.narim
Member Avatar for Momerath
0
214
Member Avatar for rexmorgan

This is working code. You will of course have to replace the directories used in this code with your own that will be unique to your particular situation. You also must have ArcGIS, and the newest version is 10 which will only work with python 2.6. There is plenty of …

0
333
Member Avatar for bazzer14

Hi, all. I would like to know about convertion from (x, y) to (latitude, longitude)? For Example: In my project(windows form - VB.NET) i have a Panel (control) and have a MouseMove Event then when i moving the mouse it have a location such as: Label1.text = e.X Label2.text = …

Member Avatar for bazzer14
0
389
Member Avatar for essaydoctor

Suppose that I have a login page where users need to enter their email addresses. The email addresses will only have a .edu domain name extension. I was wondering if there was a way for me to figure out what college the user went to based on his/her email address? …

Member Avatar for stultuske
0
233
Member Avatar for freedomflyer

Earlier on, in [URL="http://www.daniweb.com/software-development/java/threads/412571"]this thread[/URL] my question was answered about how to add objects of a custom class I called State into a HashSet which was a value for a key in a HashMap. [CODE]Map<String, HashSet<State>> mapping = new HashMap<String, HashSet<State>>();[/CODE] However, I need to ensure that there are only …

Member Avatar for JamesCherrill
0
339
Member Avatar for Catalyst.X

Ok, So i wrote this basic program that takes a map file as an input, and parses it and then draws the map. Its sort of like VERY BASIC tile mapping. The problem is, I cant think of a way to loop it so that no matter how many map …

Member Avatar for thines01
0
210
Member Avatar for Mestika

Hi everyone, I'm working on a small project and have run into some problems. Briefly described, what I'm attempting to do is: I've a rather large text file with a different sentence and I need to find all the words in each sentence and add them to some sort of …

Member Avatar for JamesCherrill
0
442
Member Avatar for ChaosCoder

What I'm trying to do is parse a CSV file that has column headers, and map those headers - ideally to a class. The tricky part is that I need to be able to support various mappings because it will be interacting with different systems that give the headers different …

Member Avatar for ChaosCoder
0
1K
Member Avatar for spoonlicker

I'm sorry about my last bold post, I just like bold, but does any one know how the basics of mapping work and what mapping exactly is? I want to know because it might be necessary. And some sites I am banned from by IP so that's why I'm not …

Member Avatar for Nick Evan
-1
225
Member Avatar for blackmagic01021

I am trying to develop a digital map based on the vehicle inertial sensor information. The Map output will be a road course shape on which the vehicle traveled. The map will be based on a fixed reference point. I have speed, yaw rate and time related information. what I …

0
105
Member Avatar for bjc999

Hello, I am trying to map a URL to a sub path using .htaccess. Does this look right? //Rewrite to www Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^domain.co.uk/sub-path[nc] RewriteRule ^(.*)$ http://www.domain.co.uk/sub-path/$1 [r=301,nc] //301 Redirect Old File Redirect 301 [url]www.anotherdomain.co.uk[/url] [url]www.domain.co.uk/sub-path[/url] //301 Redirect Entire Directory RedirectMatch 301 [url]www.anotherdomain.co.uk(.*[/url]) www.domain.co.uk/sub-path/$1 Many thanks!

0
113
Member Avatar for bjc999

Hi there, I have a few sites plus a few clients' sites I have designed and manage. At present, when I want to add a new feature to all of the sites, I code it into each site individually. What I want to achieve is to be able to update …

Member Avatar for bjc999
0
264
Member Avatar for bjc999

Hi there, I have a few sites plus a few clients' sites I have designed and manage. At present, when I want to add a new feature to all of the sites, I code it into each site individually. What I want to achieve is to be able to update …

Member Avatar for pritaeas
0
163
Member Avatar for jimbojames

Hi All, My first post here so here it goes... I am trying to do what I think should be a simple task but I cant seem to wrap my head around how to do it - any advice or help would be greatly received. I am tring to do …

Member Avatar for nick.crane
0
104
Member Avatar for Ejl191

I've been tasked with plotting various points onto a map. Due to financing and the nature of the project we can't use Google or any of that type of thing. So we have to do this the hard way using PHP or Javascript. I'm supplied a map(Mercator) and the coordinates …

Member Avatar for Ejl191
0
213
Member Avatar for white feather

[CODE] private Map<String , String> c = new HashMap<String , String>(); .... //regx to get mString c.put(mString.group() , mString.group()); ..... //regx to get mNumber c.put(mNumber.group() , mNumber.group()); ....... Set set = c.entrySet(); Iterator i = set.iterator(); while( i.hasNext() ) { Map.Entry me = (Map.Entry) i.next(); System.out.println(me.getKey() + " : " …

Member Avatar for white feather
0
174
Member Avatar for GlockComa

I have a simple online credit application where customers put in their credit related data, i.e. Name, Address, SS #, Birthday, etc. I have to use another program to pull credit that requires me to input all that info. So currently I get my online app screen up and have …

Member Avatar for chrishea
0
199
Member Avatar for slfisher

Just months after [URL="http://www.daniweb.com/blogs/entry3136.html"]Google purchased [/URL]the entire online rights to a new satellite's imagery, the U.S. government, citing budget concerns, has [URL="http://www.usatoday.com/news/washington/2008-10-21-cognress-satellites_N.htm"]canceled plans[/URL] to launch two more commercial satellites. According to the Associated Press, the House and Senate intelligence appropriations committees cut approximately $1.7 billion in funding for 2008 and …

0
142
Member Avatar for happygeek

Boffins from the [URL="http://www.ucsd.edu/"]University of California, San Diego[/URL] have succeeded in developing new algorithms to map the Internet. While mapping any network topology can be complex and demanding, mapping the Internet takes the task to a whole new level. Yet Priya Mahadevan and Amin Vahdat think they have accomplished it …

0
126
Member Avatar for happygeek

I was born in London, and although I no longer live there (having swapped the rat race for a life of rural seclusion) I am a regular business visitor. Unsurprisingly then, I tend to travel a lot by the good old London Black Cab. While more expensive than taking the …

0
146

The End.