User DanM - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T12:13:44Zhttp://stackoverflow.com/feeds/user/47450http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1790798/java-seems-to-be-truncating-long-string-result-from-ms-sql-query0Java seems to be truncating long string result from MS-SQL queryDanM2009-11-24T15:28:43Z2009-11-24T15:37:58Z
<p>So I've got a query in a JSP class that retrieves, basically, the entire contents of a table as a string using MS SQL's "FOR XML AUTO" feature.</p>
<p>I.e., <code>select * from userdata for xml auto</code>.</p>
<p>The problem is that the result is being truncated at around 2033 characters. There's no unusual character at that point or anything; the break occurs right in the middle of a plain-text attribute.</p>
<p>Is there some obvious thing that's likely causing this, like a limit parameter I need to increase somewhere?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1730237/how-to-pack-encrypt-unpack-decrypt-a-bunch-of-files-in-java1How to Pack/Encrypt/Unpack/Decrypt a bunch of files in Java?DanM2009-11-13T16:15:17Z2009-11-13T17:10:42Z
<p>I'm essentially trying to do the following on a Java/JSP-driven web site:</p>
<ul>
<li>User supplies a password</li>
<li>Password is used to build a strongly-encrypted archive file (zip, or anything else) containing a text file as well as a number of binary files that are stored on the server. It's essentially a backup of the user's files and settings.</li>
<li>Later, the user can upload the file, provide the original password, and the site will decrypt and unpack the archive, save the extracted binary files to the appropriate folder on the server, and then read the text file so the site can restore the user's old settings and metadata about the binary files.</li>
</ul>
<p>It's the building/encrypting the archive and then extracting its contents that I'm trying to figure out how to do. I really don't care about the archive format, other than that it is very secure.</p>
<p>The ideal solution to my problem will be very easy to implement, and will require only tried-and-tested libraries with free and nonrestrictive licenses (e.g. apache, berkeley, lgpl).</p>
<p>I'm aware of the TrueZIP and WinZipAES libraries; the former seems like massive overkill and I can't tell how stable the latter is... Are there other solutions out there that would work well?</p>
http://stackoverflow.com/questions/655213/iis-isapiredirect-tomcat2IIS -> Isapi_Redirect -> TomcatDanM2009-03-17T17:18:59Z2009-11-08T13:06:59Z
<p>I've been trying for days to get Tomcat up and running through IIS via the Jakarta Connector.</p>
<p>I've followed all of Microsoft's instructions -- put the connector .dll in %tomcatdir%\bin\win32\i386\, added the registry entry, added a filter (pointing to the .dll) to the default web site... and yet, any time I try to access a Tomcat web app, I get the "You are not authorized to view this page" error.</p>
<p>Has anyone experienced this? Help!</p>
<p>Thanks,
-Dan</p>
http://stackoverflow.com/questions/1323258/connecting-iboutlet-to-viewcontroller-managed-by-a-uitabbarcontroller/1415289#14152890Answer by DanM for Connecting IBOutlet to ViewController managed by a UITabBarControllerDanM2009-09-12T14:47:03Z2009-09-12T14:47:03Z<p>I recently encountered this exact error, and found that just doing a Clean All targets fixed the problem. Might be as simple as that.</p>
http://stackoverflow.com/questions/1367730/how-do-i-deal-with-a-classnotloadedexception-while-debugging0How do I deal with a ClassNotLoadedException while debugging?DanM2009-09-02T13:37:43Z2009-09-02T14:06:24Z
<p>So I'm (remotely) debugging some a java/jboss application in Eclipse, stepping through line by line. At one point, an array of <code>GridSquare</code> objects (<code>GridSquare</code> is a fairly simple, standalone class, contains a few properties and methods) is created by a method call, i.e:</p>
<p><code>GridSquare[] squares = this.theGrid.getSquares(14, 18, 220, 222);</code></p>
<p>...While when I actually execute the code, the <code>squares</code> array does get populated with <code>GridSquare</code> objects, I get something odd when stepping through the code and debugging. At a breakpoint on the line immediately following the assignment shown above, if I try to view the <code>squares</code> array, instead of a value I get this:</p>
<p><code>org.eclipse.debug.core.DebugException: com.sun.jdi.ClassNotLoadedException: Type has not been loaded occurred while retrieving component type of array.</code></p>
<p>...Anyone know what that's about?</p>
http://stackoverflow.com/questions/626788/t-sql-group-by-best-way-to-include-other-grouped-columns3T-SQL GROUP BY: Best way to include other grouped columnsDanM2009-03-09T15:46:19Z2009-08-13T07:26:47Z
<p>I'm a MySQL user who is trying to port some things over to MS SQL Server.</p>
<p>I'm joining a couple of tables, and aggregating some of the columns via GROUP BY.</p>
<p>A simple example would be employees and projects:</p>
<pre><code>select empID, fname, lname, title, dept, count(projectID)
from employees E left join projects P on E.empID = P.projLeader
group by empID
</code></pre>
<p>...that would work in MySQL, but MS SQL is stricter and requires that everything is either enclosed in an aggregate function or is part of the GROUP BY clause.</p>
<p>So, of course, in this simple example, I assume I could just include the extra columns in the group by clause. But the actual query I'm dealing with is pretty complicated, and includes a bunch of operations performed on some of the non-aggregated columns... i.e., it would get REALLY ugly to try to include all of them in the group by clause.</p>
<p>So is there a better way to do this?</p>
http://stackoverflow.com/questions/659882/sql-server-t-sql-via-jsp-the-multi-part-identifier-xx-yy-could-not-be-bound0SQL Server/T-SQL via JSP: "The multi-part identifier XX.YY could not be bound"DanM2009-03-18T20:03:57Z2009-07-17T11:37:03Z
<p>I'm getting the error:</p>
<pre><code> the multi-part identifier "IC.industry" could not be bound
</code></pre>
<p>when making this SQL query from a JSP page via JDBC:</p>
<pre><code>select C.company, C.shname, C.fullname, count(d_to_c.designer)
from companies C
left join ind_to_c IC on C.company = IC.company
left join d_to_c on C.company= d_to_c.company
where IC.industry = ?
group by C.company, C.shname, C.fullname
order by C.shname
</code></pre>
<p>and I'm trying to run it as a prepared statement, where I'm setting the parameter via (for example) <code>stmt.setObject(1, 7)</code> prior to running <code>stmt.executeQuery()</code>.</p>
<p>Now, what's weird is: If I execute this with the <code>?</code> and set the parameter as I just mentioned, I get the "could not be bound" error. If, however, I just change the query and hardcode the number 7 into the text of the query, it works!</p>
<p>So it has <em>something</em> to do with binding that parameter.</p>
<p>But I can't seem to figure out what.</p>
<p>Anybody?</p>
<p><strong>UPDATE</strong>: Per request, the table definition for <code>ind_to_c</code>:</p>
<pre><code> industry - int(11)
company - int(11)
</code></pre>
<p>(it's just a table that defines the m2m relationship between industries and companies)</p>
<p><strong>UPDATE 2</strong>: Also per request, the full JSP code. I had to pull this out of a call to an abstraction of the database connection (which we use to store prepared statements, etc.</p>
<p>// conn has been initialized as the db connection object.</p>
<pre><code>int parent_id = 7;
PreparedStatement ps = conn.prepareStatement("select C.company, C.shname, C.fullname, count(d_to_c.designer) from companies C left join ind_to_c IC on C.company = IC.company left join d_to_c on C.company = d_to_c.company where IC.industry = ? group by C.company, C.shname, C.fullname order by C.shname");
ps.setObject(1, parent_id);
ResultSet rs = null;
rs = ps.executeQuery();
</code></pre>
http://stackoverflow.com/questions/917484/determining-whether-geographic-point-is-within-x-meters-of-a-state-border-using4Determining whether geographic point is within X meters of a state border (using shapefile for border data)DanM2009-05-27T19:08:42Z2009-05-28T00:32:03Z
<p>So I'm writing a Java app, and I've got an ESRI Shapefile which contains the borders of all the U.S. states. What I need is to be able to determine whether any given lat/lon point is within a specified distance from ANY state border line - i.e., I will <em>not</em> be specifying a particular border line, just need to see whether the point is close to <em>any</em> of them.</p>
<p>The solution does NOT have to be very precise at all; e.g. I don't need to be dealing with measuring perpendicular to the border, or whatever. Just checking to see if going X meters north, south, east or west would result in crossing a border would be more than sufficient. The solution DOES have to be computationally efficient, as I'll be performing a huge number of these calculations.</p>
<p>I'm planning to use the GeoTools library (though if there's a simpler option, I'm all for it) with the Shapefile plugin. What I don't really understand is: Once I've got the shapefile loaded into memory, how do I check to see whether I'm near a border?</p>
<p>Thanks!
-Dan</p>
http://stackoverflow.com/questions/659882/sql-server-t-sql-via-jsp-the-multi-part-identifier-xx-yy-could-not-be-bound/663578#6635780Answer by DanM for SQL Server/T-SQL via JSP: "The multi-part identifier XX.YY could not be bound"DanM2009-03-19T19:04:17Z2009-03-19T19:04:17Z<p>I upgraded to the newer v. 2.0 of the MS-SQL JDBC driver, and magically it worked.</p>
<p>Sigh.</p>
http://stackoverflow.com/questions/629941/ms-sql-convert-all-instances-of-one-column-type-to-another0MS-SQL: Convert all instances of one column type to another?DanM2009-03-10T12:38:40Z2009-03-10T12:49:57Z
<p>I have an SQL Server 2008 database, which contains about 40 tables. Most of them contain at least a couple of <code>varchar</code> columns, and I want to convert every single one of those to <code>nvarchar</code> (of the same length). Also want to convert a number of <code>text</code> fields to <code>nvarchar(MAX)</code>. Is there a simple, straightforward way to do this?</p>
http://stackoverflow.com/questions/622218/user-defined-aggregate-in-sql-server-2008-how-to-deploy-with-maxbytesize-1/629965#6299650Answer by DanM for User-Defined Aggregate in SQL Server 2008 - How to deploy with MaxByteSize = -1?DanM2009-03-10T12:43:53Z2009-03-10T12:43:53Z<p>Figured it out... After building the solution in Vis Studio, assuming I've dropped the .dll it creates into c:\temp and called it GroupConcat.dll:</p>
<pre><code>CREATE ASSEMBLY GroupConcat from 'C:\temp\GroupConcat.dll' with permission_set = safe
GO
CREATE AGGREGATE groupconcat(@input nvarchar(max))
RETURNS nvarchar(max)
EXTERNAL NAME GroupConcat
GO
</code></pre>
<p>That does it.</p>
http://stackoverflow.com/questions/622218/user-defined-aggregate-in-sql-server-2008-how-to-deploy-with-maxbytesize-10User-Defined Aggregate in SQL Server 2008 - How to deploy with MaxByteSize = -1?DanM2009-03-07T17:58:07Z2009-03-10T12:43:53Z
<p>I read <a href="http://www.halhayes.com/blog/PermaLink,guid,127faa81-511d-462f-9b48-3272142837f9.aspx" rel="nofollow">here</a> (and elsewhere) that it's possible, in SQL Server 2008, to build a user-defined aggregate which can return a string longer than 8000 characters. This is exactly what I need.</p>
<p>Supposedly, the method is to set maxByteSize to -1 instead of a number btw 1 and 8000; this should allow any size up to 2GB.</p>
<p>For some reason, apparently, you can't deploy straight from Visual Studio 2008 if you use this setting; so you need to manually deploy.</p>
<p>So: I build my project - GroupConcat (which is supposed to simulate MySQL's group_concat aggregator) - which gives me, in the project's bin folder, a file "SqlClassLibrary.dll". Per the instructions on the above-linked page, I build the assembly in SQL Server. The command executes successfully. However, when I try to actually <em>use</em> the groupconcat aggregator:</p>
<p><strong><code>select department, dbo.groupconcat(projectNumber) from projectleads group by department</code></strong></p>
<p>...it says it can't be found. This all works fine if I set maxByteSize to 8000 and deploy directly from within VS2008, but I need >8000. Anybody know what I'm doing wrong?</p>
<p>Thanks
-dan</p>
<p><strong>NOTE:</strong> I do specifically need to have a groupconcat aggregator function rather than using some of the SQL Server tricks I've often seen.</p>
http://stackoverflow.com/questions/611850/ms-sql-server-2008-confusion-in-migrating-from-mysql-re-select-xyz-from-table1MS SQL Server 2008 - Confusion in migrating from MySQL re: "select XYZ from TABLE"DanM2009-03-04T18:28:17Z2009-03-04T22:07:11Z
<p>So I'm just confused here.</p>
<p>I've got to migrate my database from MySQL to MS SQL Server 2008. I've transferred the data via the "MS SQL Data Wizard" app from SQL Maestros. It took the data+structure from my MySQL database "gk" and copied it into a database "gk" on my MS SQL Express instance.</p>
<p>But when I connect to the MS SQL instance and try to run an SQL query, I only get results when I execute "<code>select * from gk.TABLENAME</code>" or "<code>select * from gk.gk.TABLENAME</code>"... If I execute "<code>select * from TABLENAME</code>" after executing "<code>use gk</code>", I get:</p>
<blockquote>
<p>Error: Invalid object name 'TABLENAME'<br>
SQLState: S0002<br>
Error code: 208</p>
</blockquote>
<p>How do I make this behave "normally"? I.e., I connect to a specific database such that I don't have to explicitly tell it in which database/schema to find the table?</p>
<p><strong>UPDATE:</strong>
I should specify the structure that was created by the SQL Data Wizard app. Looking at the object browser tree on the SQL Server Management Studio, there's this:</p>
<pre><code>[HOSTNAME]\SQLEXPRESS (SQL Server ...)
|-- Databases
|-- System Databases
|-- gk
|...
|-- Tables
|-- TABLE1
|-- TABLE2
|-- TABLE3
</code></pre>
<p>... and so on.</p>
<p>Thanks.
-dan</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/566149#5661496Answer by DanM for What is the single hardest programming skill or concept you have learned?DanM2009-02-19T16:40:33Z2009-02-19T16:40:33Z<p>Continuations (and <a href="http://www.madore.org/~david/computers/callcc.html" rel="nofollow">call/cc</a>).</p>
<p>Total nightmare to wrap your head around. For those who are not aware of call/cc... it's sort of like a mathematically sound GOTO with no side effects.</p>
<p>I.e., it is a riddle, wrapped in a mystery, inside an enigma.</p>
http://stackoverflow.com/questions/537921/efficiently-iterate-through-all-matching-keys-in-a-hashmap4Efficiently iterate through all MATCHING keys in a hashmap?DanM2009-02-11T17:40:25Z2009-02-11T21:03:54Z
<p>I have a <code>HashMap</code> with millions of entries.</p>
<p>Need to retrieve all entries whose keys match a specific set of criteria (in this case, each key is an object with two integer properties; I need to retrieve all keys where each of these integers fall within a specified range).</p>
<p>What is the fastest, most efficient way to iterate through all such keys?</p>
<p><strong>UPDATE:</strong>
In this particular case, though I didn't specify it up front, the first integer in the key has a natural precedence over the second integer.</p>
http://stackoverflow.com/questions/451415/simulating-groupconcat-mysql-function-in-ms-sql-server-20052Simulating group_concat MySQL function in MS SQL Server 2005?DanM2009-01-16T18:14:52Z2009-02-09T14:22:40Z
<p>Hello everyone.</p>
<p>So I'm trying to migrate a MySQL-based app over to MS Sql Server 2005 (not by choice, but that's life).</p>
<p>In the original app, we used <em>almost</em> entirely ANSI-SQL compliant statements, with one significant exception -- we used MySQL's group_concat function fairly frequently.</p>
<p>group_concat, by the way, does this: given a table of, say, employee names and projects...</p>
<pre><code>SELECT empName, projID FROM project_members;
</code></pre>
<p>returns:</p>
<pre><code>ANDY | A100
ANDY | B391
ANDY | X010
TOM | A100
TOM | A510
</code></pre>
<p>... and here's what you get with group_concat:</p>
<pre><code>SELECT empName, group_concat(projID SEPARATOR ' / ')
FROM project_members GROUP BY empName;
</code></pre>
<p>returns:</p>
<pre><code>ANDY | A100 / B391 / X010
TOM | A100 / A510
</code></pre>
<p>...So what I'd like to know is: Is it possible to write, say, a user-defined function in MS SQL which emulates the functionality of group_concat? I have almost no experience using UDFs, stored procedures, or anything like that -- just straight-up SQL -- so please err on the side of too much explanation :)</p>
http://stackoverflow.com/questions/512850/2-d-concurrent-hashmap-2-property-key-type-hashmap-of-hashmaps-update12-D (concurrent) HashMap: 2-property key type? hashmap of hashmaps? [update]DanM2009-02-04T19:16:00Z2009-02-04T22:19:16Z
<p>So I need a 2-dimensional <code>ConcurrentHashMap</code>.</p>
<p>It has to be as blazing fast as possible, as I'm going to be adding to and updating its values extremely frequently. It's in a multithreaded application, hence the choice to use ConcurrentHashMap instead of just HashMap.</p>
<p>Both the "x" and "y" indices are integers with a known range (0 through 40,000,000).</p>
<p>What I need to know is: What's the most efficient way to implement this so it'll be as speedy as possible? The most obvious route is to do a literal 2-D hashmap:</p>
<p><code>ConcurrentHashMap<Integer, ConcurrentHashMap<Integer, ValueObj>> foo;</code></p>
<p>Or I could make a private class "IntPair" with two properties x and y, and use that as a key... though if I do that, what's the most efficient way to do <code>equals()</code> and <code>hashcode()</code>? and will I wind up allocating too many new <code>IntPair</code>s? Could I keep a set of <code>IntPair</code>s for each x/y I've assigned, and then use a purely reflexive equals() such that I'm just checking for the exact same object instance?</p>
<p><hr /></p>
<h2>Update:</h2>
<p>Now that I've taken a closer look at Integer.valueOf(int), the specific caching model it uses wouldn't make sense here, since I'm dealing with a very sparse matrix with unpredictable entries. I really need to be caching all those IntPairs which are used, not a prespecified subset.</p>
<p>Intuitively, it seems to me that looking up an IntPair in a big map to see if I've already created it would, in fact, be more-or-less the same as just looking it up in the big "2-D" ConcurrentHashMap anyway, wouldn't it? So it seems the solution here is really to just use <code>new IntPair(x,y)</code> each time I look up a key. Yes?</p>
http://stackoverflow.com/questions/512850/2-d-concurrent-hashmap-2-property-key-type-hashmap-of-hashmaps-update/512973#5129730Answer by DanM for 2-D (concurrent) HashMap: 2-property key type? hashmap of hashmaps? [update]DanM2009-02-04T19:46:41Z2009-02-04T19:46:41Z<p>In response to Zach, Yes, the matrix will be very sparse.</p>
<p>I looked at the page you linked, and without a doubt the functionality of Integer.valueOf(int) would be ideal. If I developed a similar static method within my <code>IntPair</code> class, can I assume that I could define <code>equals()</code> to only check for strict reflexive equality?</p>
<p>That said, I don't see in that page where it explains how to implement that functionality using a static nested class and static factory method.... am I just missing it somehow? How do I do that?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/415442/iphone-sdk-2-2-adusting-playback-volume-while-not-actively-playing-music-w-av/505893#5058934Answer by DanM for iPhone (SDK 2.2): adusting playback volume while NOT actively playing music w/ AVFoundation?DanM2009-02-03T03:06:01Z2009-02-03T03:06:01Z<p>Turns out this can be accomplished by allocating an <code>AVAudioPlayer</code> with any valid sound file and calling the <code>prepareToPlay</code> method, without ever calling the <code>play</code> method.</p>
<p>Works perfectly.</p>
http://stackoverflow.com/questions/415442/iphone-sdk-2-2-adusting-playback-volume-while-not-actively-playing-music-w-av3iPhone (SDK 2.2): adusting playback volume while NOT actively playing music w/ AVFoundation?DanM2009-01-06T04:16:34Z2009-02-03T03:06:01Z
<p>So I have an app which plays many short sound clips. I need to know when the sounds are finished playing, and I need to use mp3s, so I'm using AVFoundation for the sound playback.</p>
<p>When a sound is actively playing, and the user uses the hardware volume buttons, the playback volume changes. Problem is, the app is NOT constantly playing sounds, and when it's not, and the hardware buttons are used, the RINGER volume gets adjusted instead.</p>
<p>How do I set it up so, as long as the app is running, the user can adjust the playback volume?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/390181/sparse-matrices-arrays-in-java8Sparse matrices / arrays in JavaDanM2008-12-23T21:55:14Z2008-12-26T20:56:55Z
<p>I'm working on a project, written in Java, which requires that I build a very large 2-D sparse array. Very sparse, if that makes a difference. Anyway: the most crucial aspect for this application is efficency in terms of time (assume loads of memory, though not nearly so unlimited as to allow me to use a standard 2-D array -- the key range is in the billions in both dimensions).</p>
<p>Out of the kajillion cells in the array, there will be several hundred thousand cells which contain an object. I need to be able to modify cell contents VERY quickly.</p>
<p>Anyway: Does anyone know a particularly good library for this purpose? It would have to be Berkeley, LGPL or similar license (no GPL, as the product can't be entirely open-sourced). Or if there's just a very simple way to make a homebrew sparse array object, that'd be fine too.</p>
<p>I'm considering <a href="http://ressim.berlios.de/" rel="nofollow">MTJ</a>, but haven't heard any opinions on its quality.</p>
<p>Thanks!!
-Dan</p>
http://stackoverflow.com/questions/389211/geospatial-coordinates-and-distance-in-kilometers-updated-again/394254#3942540Answer by DanM for Geospatial coordinates and distance in kilometers... (updated again)DanM2008-12-26T20:55:59Z2008-12-26T20:55:59Z<p>I figured out the Big Problem with these formulae, aside from the implementation errors mentioned in the other answers and updates.</p>
<p>The big problem was this: The Distance method (for computing the distance between two points) was computing great-circle distances. Which, of course, makes sense -- that's the shortest path between the two points. <em>However</em>, the great-circle distance between two points which lie on the same parallel (line of latitude) is NOT the same as the distance between those two points when traveling directly along the line of latitude, unless you're at the equator.</p>
<p>So: the functions ARE working correctly; however, the alternative coordinate system I proposed in the original question requires that we look only at the distance north along the IDL followed by the distance east along the parallel at the resulting latitude. And calculating distance along a specific parallel is quite different from calculating distance along a great circle!</p>
<p>Anyway, there you have it.</p>
http://stackoverflow.com/questions/389211/geospatial-coordinates-and-distance-in-kilometers-updated-again2Geospatial coordinates and distance in kilometers... (updated again)DanM2008-12-23T15:48:57Z2008-12-26T20:55:59Z
<p>This is a followup to <a href="http://stackoverflow.com/questions/378281/latlon-distance-heading-latlon">this question</a>.</p>
<p>I seem to be stuck on this. Basically, I need to be able to convert back and forth to referring to coordinates either in the standard degree system OR by measuring a distance north from the south pole along the international date line, and then a distance east starting from that point on the date line. To do this (as well as some more general distance-measuring stuff), I have one method for determining the distance between two lat/lon points, and another method that takes a lat/lon point, a heading and a distance, and returns the lat/lon point at the end of that course.</p>
<p>Here are the two static methods I've defined:</p>
<pre><code> /* Takes two lon/lat pairs and returns the distance between them in kilometers.
*/
public static double distance (double lat1, double lon1, double lat2, double lon2) {
double theta = toRadians(lon1-lon2);
lat1 = toRadians(lat1);
lon1 = toRadians(lon1);
lat2 = toRadians(lat2);
lon2 = toRadians(lon2);
double dist = sin(lat1)*sin(lat2) + cos(lat1)*cos(lat2)*cos(theta);
dist = toDegrees(acos(dist)) * 60 * 1.1515 * 1.609344 * 1000;
return dist;
}
/* endOfCourse takes a lat/lon pair, a heading (in degrees clockwise from north), and a distance (in kilometers), and returns
* the lat/lon pair that would be reached by traveling that distance in that direction from the given point.
*/
public static double[] endOfCourse (double lat1, double lon1, double tc, double dist) {
double pi = Math.PI;
lat1 = toRadians(lat1);
lon1 = toRadians(lon1);
tc = toRadians(tc);
double dist_radians = toRadians(dist / (60 * 1.1515 * 1.609344 * 1000));
double lat = asin(sin(lat1) * cos(dist_radians) + cos(lat1) * sin(dist_radians) * cos(tc));
double dlon = atan2(sin(tc) * sin(dist_radians) * cos(lat1), cos(dist_radians) - sin(lat1) * sin(lat));
double lon = ((lon1-dlon + pi) % (2*pi)) - pi;
double[] endPoint = new double[2];
endPoint[0] = lat; endPoint[1] = lon;
return endPoint;
}
</code></pre>
<p>And here's the function I'm using to test it:</p>
<pre><code> public static void main(String args[]) throws java.io.IOException, java.io.FileNotFoundException {
double distNorth = distance(0.0, 0.0, 72.0, 0.0);
double distEast = distance(72.0, 0.0, 72.0, 31.5);
double lat1 = endOfCourse(0.0, 0.0, 0.0, distNorth)[0];
double lon1 = endOfCourse(lat1, 0.0, 90.0, distEast)[1];
System.out.println("end at: " + lat1 + " / " + lon1);
return;
}
</code></pre>
<p>The "end at" values should be appx. 72.0 / 31.5. But instead I'm getting approximately 1.25 / 0.021.</p>
<p>I assume I must be missing something stupid, forgetting to convert units somewhere, or something... Any help would be greatly appreciated!!</p>
<p><strong>UPDATE:</strong></p>
<p>OK, I had (correctly) written the distance function to return meters, but wrote kilometers in the comments by mistake ... which of course confused me when I came back to it today :) Anyway, now that's fixed, and I've fixed the factoring error in the endOfCourse method, and I also realized I'd forgotten to convert back to degrees from radians in that method too. Anyway: while it appears I'm now getting the correct latitude number (71.99...), the longitude number is way off (I get 3.54 instead of 11.5).</p>
<p><strong>UPDATE 2:</strong>
I had a typo in the test, as mentioned below. It's now fixed in the code. The longitude number is still, however, wrong: I'm now getting -11.34 instead of 11.5. I think there must be something wrong with these lines:</p>
<pre><code> double dlon = atan2(sin(tc) * sin(dist_radians) * cos(lat1), cos(dist_radians) - sin(lat1) * sin(lat));
double lon = ((lon1-dlon + pi) % (2*pi)) - pi;
</code></pre>
<p>Thanks,
-Dan</p>
http://stackoverflow.com/questions/378281/lat-lon-distance-heading-lat-lon6Lat/Lon + Distance + Heading --> Lat/LonDanM2008-12-18T15:53:55Z2008-12-18T16:30:04Z
<p>Hello...</p>
<p>So: I have the following function, adapted from a formula found online, which takes two lat/lon coordinates and finds the distance between them in miles (along a spherical Earth):</p>
<pre><code>public static double distance (double lat1, double lon1, double lat2, double lon2) {
double theta = toRadians(lon1-lon2);
lat1 = toRadians(lat1);
lon1 = toRadians(lon1);
lat2 = toRadians(lat2);
lon2 = toRadians(lon2);
double dist = sin(lat1)*sin(lat2) + cos(lat1)*cos(lat2)*cos(theta);
dist = toDegrees(acos(dist)) * 60 * 1.1515 * 1.609344 * 1000;
return dist;
}
</code></pre>
<p>As far as I can tell this works just fine.</p>
<p>What I need is a second function which, using the exact same model of the Earth's geometry, takes a single lat/lon pair [A], a heading, and a distance, and outputs a new lat/lon pair [B] such that if you started at point [A], and traveled the given distance at the given heading, you'd wind up at point [B].</p>
<p>This is where the fact that my geometry skills have left me entirely comes into play :)</p>
<p>Any help would be much appreciated!</p>
<p>Thanks,
-Dan</p>
http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/121709#121709Comment by DanM on What is the one programming skill you have always wanted to master but haven't had time?DanM2009-11-24T20:34:33Z2009-11-24T20:34:33ZI fail to see the point of trying one's luck at GUIs with a functional language. Though IIRC doesn't Franz make a GUI designer for Common Lisp? Anyway, functional programming is for writing actual program logic, not for putting stuff on the screen. :)http://stackoverflow.com/questions/415442/iphone-sdk-2-2-adusting-playback-volume-while-not-actively-playing-music-w-av/505893#505893Comment by DanM on iPhone (SDK 2.2): adusting playback volume while NOT actively playing music w/ AVFoundation?DanM2009-11-24T20:19:10Z2009-11-24T20:19:10ZThis is assuming you're ONLY using this particular AVAudioPlayer object to sit there and make sure the volume buttons work properly. If you want to play any sound files at the same time, just allocate a new AVAudioPlayer; you can use that second one as a common player for the rest of your files.http://stackoverflow.com/questions/1790798/java-seems-to-be-truncating-long-string-result-from-ms-sql-query/1790855#1790855Comment by DanM on Java seems to be truncating long string result from MS-SQL queryDanM2009-11-24T16:04:01Z2009-11-24T16:04:01ZThat was the problem. (It returns the XML in multiple rows of 2,033 characters each, instead of as a single row.) Thanks!http://stackoverflow.com/questions/1276916/asynchronous-file-upload-ajax-file-upload-using-jsp-and-javascript/1277972#1277972Comment by DanM on Asynchronous file upload (AJAX file upload) using jsp and javascriptDanM2009-11-23T16:45:51Z2009-11-23T16:45:51ZIt is indeed possible to do asynchronous file uploads without Flash; e.g. gmail.http://stackoverflow.com/questions/1730237/how-to-pack-encrypt-unpack-decrypt-a-bunch-of-files-in-java/1730641#1730641Comment by DanM on How to Pack/Encrypt/Unpack/Decrypt a bunch of files in Java?DanM2009-11-18T13:14:40Z2009-11-18T13:14:40ZWell, sure, if you let people use English words as passwords. Just put some simple restrictions -- e.g. require at least one capital letter and one special character -- and you gain a lot of entropy.http://stackoverflow.com/questions/1511082/why-cant-i-do-i-in-c-like-languages/1511093#1511093Comment by DanM on Why can't I do ++i++ in C-like languages?DanM2009-10-02T19:44:48Z2009-10-02T19:44:48Zthat's a comment relating to the design of a program, more than relating to the design of a language...http://stackoverflow.com/questions/1367730/how-do-i-deal-with-a-classnotloadedexception-while-debugging/1367924#1367924Comment by DanM on How do I deal with a ClassNotLoadedException while debugging?DanM2009-09-02T14:36:09Z2009-09-02T14:36:09ZThat did it. Thanks!!http://stackoverflow.com/questions/1367730/how-do-i-deal-with-a-classnotloadedexception-while-debugging/1367924#1367924Comment by DanM on How do I deal with a ClassNotLoadedException while debugging?DanM2009-09-02T14:15:45Z2009-09-02T14:15:45ZIs there some way to force the JVM to load a class at a particular moment? Something similar to a compiler directive?http://stackoverflow.com/questions/917484/determining-whether-geographic-point-is-within-x-meters-of-a-state-border-usingComment by DanM on Determining whether geographic point is within X meters of a state border (using shapefile for border data)DanM2009-05-27T19:18:31Z2009-05-27T19:18:31ZCorrect. Does not have to account for curvature of the earth, at least not in any meaningful sense.http://stackoverflow.com/questions/122942/how-to-return-multiple-values-in-one-column-t-sql/123025#123025Comment by DanM on How to return multiple values in one column (T-SQL)?DanM2009-04-16T18:48:40Z2009-04-16T18:48:40ZThis worked fabulously for me.http://stackoverflow.com/questions/659882/sql-server-t-sql-via-jsp-the-multi-part-identifier-xx-yy-could-not-be-bound/662511#662511Comment by DanM on SQL Server/T-SQL via JSP: "The multi-part identifier XX.YY could not be bound"DanM2009-03-19T15:06:28Z2009-03-19T15:06:28Z(that is to say, the code you see now in the question is the correct code, and it does still have the same problem.)http://stackoverflow.com/questions/659882/sql-server-t-sql-via-jsp-the-multi-part-identifier-xx-yy-could-not-be-bound/662511#662511Comment by DanM on SQL Server/T-SQL via JSP: "The multi-part identifier XX.YY could not be bound"DanM2009-03-19T15:04:11Z2009-03-19T15:04:11ZI don't, that was a typo... I'm pulling all of this code out of an object structure we use to store prepared stmts and do some other high-level stuff... and the way we pass params to that framework is via an object array. Accidentally left it as an array instead of a single object. Oops!http://stackoverflow.com/questions/659882/sql-server-t-sql-via-jsp-the-multi-part-identifier-xx-yy-could-not-be-bound/660017#660017Comment by DanM on SQL Server/T-SQL via JSP: "The multi-part identifier XX.YY could not be bound"DanM2009-03-18T21:23:29Z2009-03-18T21:23:29ZC.cid was a typo, as was ind_2_c (should have read ind_to_c). I renamed some of the columns/tables for purposes of this post, hence the typos. Also, posted the table def.http://stackoverflow.com/questions/659882/sql-server-t-sql-via-jsp-the-multi-part-identifier-xx-yy-could-not-be-bound/660017#660017Comment by DanM on SQL Server/T-SQL via JSP: "The multi-part identifier XX.YY could not be bound"DanM2009-03-18T21:00:41Z2009-03-18T21:00:41Z(Industry is an int(11), by the way)http://stackoverflow.com/questions/659882/sql-server-t-sql-via-jsp-the-multi-part-identifier-xx-yy-could-not-be-bound/660017#660017Comment by DanM on SQL Server/T-SQL via JSP: "The multi-part identifier XX.YY could not be bound"DanM2009-03-18T21:00:11Z2009-03-18T21:00:11Zactually, I can't test that -- have to operate through a framework (looong story) that only gives me access to setObject. Yes, I realize that's silly. Anyway, though, I need to use setObject.