35 Topics

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
307
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
197
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
293
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
203
Member Avatar for nima.narim
Member Avatar for Momerath
0
215
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
340
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
444
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
226
Member Avatar for slfisher

The state of Oregon is holding a series of informational meetings in 20 areas around the state to identify the barriers to bringing Internet resources to their community. While obviously meetings are being held in urban locations such as Portland and the state capital of Salem, they are also being …

Member Avatar for mactilden
0
633
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
106
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
106
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
214
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 slfisher

[I]So, did anybody hear tonight's mysterious southeast Portland explosion? [/I] Apparently a lot of people, like my Portland friend, did. ("Tonight" was Sunday.) What's interesting is how they used Internet tools to track down the location. As described in an article in the [I]New York Times[/I], people immediately started using …

Member Avatar for InsightsDigital
0
213
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

In addition to funding [URL="http://www.daniweb.com/news/story231771.html"]broadband projects[/URL] in the states, particularly in rural areas, the American Recovery and Reinvestment Act of 2009, also known as the stimulus package, includes funds for [URL="http://www.ntia.doc.gov/press/2009/BTOP_mapping_090701.pdf"]collection of state-level broadband data[/URL], as well as state-wide broadband mapping and planning. The project, which will also help create …

0
432
Member Avatar for happygeek

I knew it was going to happen, you knew it was going to happen, [URL="http://www.itwire.com/content/view/19244/53/"]everyone knew[/URL] that Street View would cause a privacy stink when it eventually launched in the UK. Everyone except Google it would appear. Although it is not saying how many images have been removed from the …

0
154
Member Avatar for newsguy

Reports suggest that Google Earth might have put the top secret British nuclear defence headquarters, at the Faslane HM Naval Base Clyde in Scotland, at risk from terrorist attack after the satellite mapping shows clear images of the facility. The images are highly detailed and even show a couple of …

0
460
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

Where would we be without satnav? Good question, as most of us seem to have lost the ability to drive anywhere without some annoying slightly posh woman barking instructions at us every few minutes. Of course, satnav is not all gravy: who could forget the [URL="http://www.daniweb.com/blogs/entry1242.html"]crazy satnav directions[/URL] that led …

Member Avatar for omol
0
290

The End.