User James Schek - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T12:26:50Z http://stackoverflow.com/feeds/user/17871 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1840590/java-error-using-vectors-unchecked-call-to-adde/1840656#1840656 0 Answer by James Schek for Java Error using Vectors: unchecked call to add(E) James Schek 2009-12-03T15:30:52Z 2009-12-03T15:30:52Z <p>If you have no choice but to use the non-generic data structure, you can put <code>@SuppressWarnings("unchecked")</code> at the start of the method to silence the warning.</p> <p>This only be done if you have no choice but to use the non-generic vector. This usually happens when you're working with older libraries or certain parts of the Java runtime libraries.</p> http://stackoverflow.com/questions/1831156/how-to-be-a-senior-developer-and-career-move/1834045#1834045 1 Answer by James Schek for How to be a senior developer and career move? James Schek 2009-12-02T16:24:12Z 2009-12-02T16:24:12Z <p>The truly "senior" developers spend much of their time trying to be the "junior" guy on the team.</p> http://stackoverflow.com/questions/1760291/is-compiler-allowed-to-ignore-inline-in-case-of-template-specialization/1760364#1760364 0 Answer by James Schek for Is compiler allowed to ignore inline in case of template specialization? James Schek 2009-11-19T01:31:44Z 2009-11-19T01:31:44Z <p>I believe you can explicitly declare the method as extern and then put the specialization into a .cpp. I've tried something similar in a past life with GCC, but I don't recall the exact details of how it worked. <a href="http://msdn.microsoft.com/en-us/magazine/cc163769.aspx" rel="nofollow">MSDN Magazine has an article on this</a> that might help.</p> http://stackoverflow.com/questions/1714144/asp-net-or-silverlight-map-viewer-with-offline-support/1760347#1760347 0 Answer by James Schek for asp.net or silverlight map viewer with offline support? James Schek 2009-11-19T01:26:20Z 2009-11-19T01:26:20Z <p>I believe the <a href="http://blogs.esri.com/Dev/blogs/arcgisserver/archive/2008/10/10/Using-Gears-in-a-.NET-Web-ADF-application.aspx" rel="nofollow">ArcGIS Server API's can be used offline</a> when used in combination with Google Gears.</p> http://stackoverflow.com/questions/1742940/why-not-catch-general-exceptions/1743060#1743060 3 Answer by James Schek for Why not catch general Exceptions James Schek 2009-11-16T15:52:17Z 2009-11-16T15:52:17Z <p>Having worked on equipment used by emergency responders, I would rather the user see an ugly error message than to accidently swallow an exception that misleads the user into believing everything is "ok". Depending on your application, the consequence could be anything from nothing to a lost sale to a catastrophic loss of life. </p> <p><em>If</em> a person were going to catch all exception, show a better error dialog, and then quit the application, that's ok.. but if they are going to continue running after swallowing an unknown exception, I would fire a person for that. It's not ok. Ever.</p> <p>Good coding is about practices that assume humans make mistakes. Assuming all "critical" exceptions have been caught and handled is a bad idea.</p> http://stackoverflow.com/questions/1742859/stdvectorreserve-performance-penalty/1742920#1742920 1 Answer by James Schek for std::vector::reserve performance penalty James Schek 2009-11-16T15:32:20Z 2009-11-16T15:32:20Z <p>Move the reserve outside of the add.</p> <p>Each time you invoke "add", you are reserving atleast 3 extra elements. Depending on the implementation of vector, this <em>could</em> be increasing the size of the backing array almost every time you call "add". That is would definately cause the performance difference that you describe.</p> <p>The correct way to use reserve is something like:</p> <pre><code>vec.reserve(max*3); for(int i=0; i&lt;max; i++) add(i); </code></pre> http://stackoverflow.com/questions/1551935/creating-custom-google-or-openlayers-maps/1701950#1701950 0 Answer by James Schek for Creating custom Google (or OpenLayers?) maps James Schek 2009-11-09T15:57:52Z 2009-11-09T16:08:38Z <p>If you are using ArcGIS to creat eyour map, then use ArcGIS Server to serve up the maps online. Then use <a href="http://resources.esri.com/arcgisserver/apis/javascript/arcgis/index.cfm?fa=home" rel="nofollow">ArcGIS JavaScript API</a> to build your web application. There are several out-of-the-box templates as well as easy-to-use examples for performing basic actions such as pan, zoom, select, highlight, redlining, etc.</p> <p>Create your map service, then add your custom Map as a <a href="http://resources.esri.com/help/9.3/arcgisserver/apis/javascript/arcgis/help/jsapi/arcgisdynamicmapservicelayer.htm" rel="nofollow">Dynamic Map Service</a> or a <a href="http://resources.esri.com/help/9.3/arcgisserver/apis/javascript/arcgis/help/jsapi/arcgistiledmapservicelayer.htm" rel="nofollow">Tiled Map Service</a> (if you've cached it). Perform a <a href="http://resources.esri.com/help/9.3/arcgisserver/apis/javascript/arcgis/help/jsapi/findtask.htm" rel="nofollow">Find</a> (or <a href="http://resources.esri.com/help/9.3/arcgisserver/apis/javascript/arcgis/help/jsapi/querytask.htm" rel="nofollow">Query</a> if you have more than one feature you want to highlight). Add the <a href="http://resources.esri.com/help/9.3/arcgisserver/apis/javascript/arcgis/help/jsapi/graphic.htm" rel="nofollow">Graphic</a> from the <a href="http://resources.esri.com/help/9.3/arcgisserver/apis/javascript/arcgis/help/jsapi/findresult.htm" rel="nofollow">FindResult</a> to your <a href="http://resources.esri.com/help/9.3/arcgisserver/apis/javascript/arcgis/help/jsapi/graphicslayer.htm" rel="nofollow">GraphicsLayer</a>.</p> <p><a href="http://resources.esri.com/help/9.3/arcgisserver/apis/javascript/arcgis/help/jssamples/find%5Fmap.html" rel="nofollow">Here's</a> a more complete example.</p> http://stackoverflow.com/questions/1669514/should-i-inherit-from-stdexception/1669631#1669631 3 Answer by James Schek for Should I inherit from std::exception? James Schek 2009-11-03T19:31:07Z 2009-11-03T19:31:07Z <p>You should inherit from <a href="http://www.boost.org/doc/libs/1%5F40%5F0/libs/exception/doc/boost-exception.html" rel="nofollow">boost::exception</a>. It provides a lot more features and well-understood ways to carry additional data... of course, if you're not using <a href="http://www.boost.org/" rel="nofollow">Boost</a>, then ignore this suggestion.</p> http://stackoverflow.com/questions/1608667/what-silverlight-dev-must-learn-to-use-arcgis-silverlight/1663709#1663709 1 Answer by James Schek for What silverlight dev must learn to use arcGIS silverlight? James Schek 2009-11-02T21:07:12Z 2009-11-02T21:07:12Z <p>It helps to have a basic understaind of the ESRI Map and Graphics object model for any of their API's (they all have similarities). The Silverlight API is much simpler than the Arcobjects API, but shares many of the same patterns.</p> <p>If you are performing specific operations (such as distance calculations, map annotating, etc) there may be very specific concepts that will help. Can you post a question with more details about your goal?</p> http://stackoverflow.com/questions/1614445/writing-an-image-processing-application-for-analysis-of-satellite-imagery/1663687#1663687 1 Answer by James Schek for Writing an image processing application for analysis of satellite imagery James Schek 2009-11-02T21:04:09Z 2009-11-02T21:04:09Z <p>Overly processed imagery such as Google or Bing maps is a <em>horrible</em> source of imagery for performing feature extraction or feature recognition. Usually, you want the most unprocessed, raw form possible with camera models... of course, if you don't have access to this sort of data, then you have to work with what you have.</p> <p>A more important consideration of Google Maps/Earth imagery is that you may run afoul of their License Agreement. I suggest you check it before you decide on their data as your imagery source. In particular, if you bypass their API's, you've violated their license agreement.</p> <p>As far as libraries and langauges, there are dozens of machine vision libraries available. I can't recommend one over the other as I've only been a down-stream consumer of their results. My understanding of the problem is that the biggest concern is how you build the "models" to compare against... i.e. how do you give the system an "example" of what you're looking for.</p> <p>Once you've found a library, then you can make a decision on the language. Generally, a high-level language like Python or Matlab is used for this kind of prototyping. Once a method has been found, then conversion to a "higher performance" language is done--<em>if necessary</em>.</p> <p>Personally, I'd probably use Python because (1) it's freely available, (2) has a significant community in the scientific and research worlds, and (3) can interop with a wide variety of languages and platforms.</p> http://stackoverflow.com/questions/1595164/subversion-repository-back-up/1595211#1595211 0 Answer by James Schek for Subversion repository back up James Schek 2009-10-20T14:52:01Z 2009-10-20T14:52:01Z <p>You should runt he hot-backup.py script and then backup the copy that's produced. </p> <p>See <a href="http://svnbook.red-bean.com/en/1.5/svn.reposadmin.maint.html#svn.reposadmin.maint.backup" rel="nofollow">SVN docs on backups</a>:</p> <blockquote> <p>As far as full backups go, the naïve approach might seem like a sane one, but <strong><em>unless you temporarily disable all other access to your repository, simply doing a recursive directory copy runs the risk of generating a faulty backup.</em></strong> In the case of Berkeley DB, the documentation describes a certain order in which database files can be copied that will guarantee a valid backup copy. A similar ordering exists for FSFS data. But you don't have to implement these algorithms yourself, because the Subversion development team has already done so. The svnadmin hotcopy command takes care of the minutia involved in making a hot backup of your repository. And its invocation is as trivial as the Unix cp or Windows copy operations</p> </blockquote> http://stackoverflow.com/questions/1541202/how-do-you-know-what-srid-to-use-for-a-shp-file/1556541#1556541 2 Answer by James Schek for How do you know what SRID to use for a shp file? James Schek 2009-10-12T19:58:11Z 2009-10-12T19:58:11Z <p>To elaborate on <a href="http://stackoverflow.com/questions/1541202/how-do-you-know-what-srid-to-use-for-a-shp-file/1541615#1541615">synecdoche</a>'s answer, the SRID sometimes called an "EPSG" code. The SRID/EPSG code is a defacto short-hand for the Well-Known-Text representations of projections.</p> <p>You can do a quick search on the SRID table to see if you can find an exact or similar match: select srid, srtext, proj4text from spatial_ref_sys where srtext ILIKE '%BLAH%' </p> <p>Above was found at <a href="http://www.bostongis.com/?content%5Fname=postgis%5Ftut01" rel="nofollow">http://www.bostongis.com/?content_name=postgis_tut01</a>.</p> <p>You can also search on <a href="http://spatialreference.org" rel="nofollow">spatialreference.org</a> for these kinds of things. THe serach tool is primitive so you may have to use google and specify the site. But any results will show you the ESRI PRJ contents, the PostGIS SQL INSERT, and a bunch more representations.</p> <p>I think your PRJ is at: <a href="http://spatialreference.org/ref/sr-org/15/" rel="nofollow">http://spatialreference.org/ref/sr-org/15/ </a></p> http://stackoverflow.com/questions/1501338/what-advantages-can-i-get-from-learning-c-if-im-mainly-a-c-programmer/1501471#1501471 3 Answer by James Schek for What advantages can I get from learning C++ if I'm mainly a C# Programmer? James Schek 2009-10-01T01:27:11Z 2009-10-01T01:27:11Z <p>The best reasons for learning C++ for a C# developer is to learn new programming paradigms. C++ is more than just an "object oriented" language and hence offers a chance to learn new approaches to solving problems. With C# 3.0 and .NET 3.5, C++ doesn't affer as many unique paradigms, but if you are not using them, then effective C++ programming will force you to learn them.</p> <p>In particular, C++ still offers a very powerful generic programming paradigm that is unmatched by C#. The STL forces you to use functional programming concepts that many C# developers avoid or don't use (LINQ extensions and lambda's for example).</p> <p>I've also found that it strengthens a persons understanding and appreciation for lexical scope. Concepts such as RAII or C++ namespaces really push the need to manage scope very carefully... in C#, many of these concerns exist, but are less "in your face". Template metaprogramming is another unique concept that C++ offers that C# doesn't. </p> http://stackoverflow.com/questions/1493553/reading-a-jpeg-file-in-c/1493562#1493562 4 Answer by James Schek for reading a jpeg file in c#. James Schek 2009-09-29T16:14:31Z 2009-09-29T16:14:31Z <ol> <li>Read the file using the <a href="http://msdn.microsoft.com/en-us/library/system.drawing.bitmap.aspx" rel="nofollow">Bitmap</a> class. </li> <li><a href="http://msdn.microsoft.com/en-us/library/5ey6h79d.aspx" rel="nofollow">Lock pixels</a>.</li> <li>Retrieve bytes from array.</li> </ol> <p>Alternatively, you can use <a href="http://msdn.microsoft.com/en-us/library/system.drawing.bitmap.getpixel.aspx" rel="nofollow">GetPixel</a> if you just need one or two.</p> http://stackoverflow.com/questions/1489239/do-threads-clean-up-after-themselves-in-win32-mfc-and-posix 1 Do threads clean-up after themselves in Win32/MFC and POSIX? James Schek 2009-09-28T20:39:27Z 2009-09-28T22:22:41Z <p>I am working on a multithreaded program using C++ and Boost. I am using a helper thread to eagerly initialize a resource asynchronously. If I detach the thread and all references to the thread go out of scope, have I leaked any resources? Or does the thread clean-up after itself (i.e. it's stack and any other system resources needed for the itself)?</p> <p>From what I can see in the docs (and what I recall from pthreads 8 years ago), there's not explicit "destory thread" call that needs to be made.</p> <p>I would like the thread to execute asynchronously and when it comes time to use the resource, I will check if an error has occured. The rough bit of code would look something like:</p> <pre><code>//Assume this won't get called frequently enough that next_resource won't get promoted //before the thread finishes. PromoteResource() { current_resource_ptr = next_resource_ptr; next_resource_ptr.reset(new Resource()); callable = bind(Resource::Initialize, next_resource); //not correct syntax, but I hope it's clear boost::thread t(callable); t.start(); } </code></pre> <p>Of course--I understand that normal memory-handling problems still exist (forget to delete, bad exception handling, etc)... I just need confirmation that the thread itself isn't a "leak".</p> <p>Edit: A point of clarification, I want to make sure this isn't technically a leak:</p> <pre><code>void Run() { sleep(10 seconds); } void DoSomething(...) { thread t(Run); t.run(); } //thread detaches, will clean itself up--the thread itself isn't a 'leak'? </code></pre> <p>I'm fairly certain everything is cleaned up after 10 seconds-ish, but I want to be absolutely certain.</p> http://stackoverflow.com/questions/1367903/hiring-a-boss-looking-for-the-right-attitude/1368027#1368027 0 Answer by James Schek for Hiring a Boss: Looking For The Right Attitude James Schek 2009-09-02T14:24:33Z 2009-09-17T23:57:55Z <p>If this person has Project Management duties, then review the <a href="http://www.construx.com/Page.aspx?hid=2617" rel="nofollow">10 Deadly Sins of Software Estimation</a> (<a href="http://www.ewh.ieee.org/r5/central%5Ftexas/austin%5Fcs/presentations/2004.08.26.pdf" rel="nofollow">Alternative Link</a>). Then ask the candfidate some questions about software estimation. See what their response is to fixing a late project or their approach is to estimating tasks that involve a lot of unknowns.</p> <p>Most of the responses I get to that line of questioning makes want to become a worker on an assembly line.</p> http://stackoverflow.com/questions/1424660/garbage-collection-vs-non-garbage-collection-programming-languages/1424874#1424874 1 Answer by James Schek for Garbage collection vs. non garbage collection programming languages James Schek 2009-09-15T02:43:03Z 2009-09-15T02:43:03Z <p>Some non-GC languages offer constructs called reference counting smart pointers. These try to get around some problems such forgetting to deallocate memory or trying to access invalid memory by automating some of the management functions.</p> <p>As some have said, you have to be "smart" about "smart pointers". Smart pointers help to avoid a whole class of problems, but introduce their own class of problems.</p> <p>Many smart pointers can create memory leaks by:</p> <ul> <li>cycles or circular reference (A points to B, B points to A).</li> <li>bugs in the smart pointer implementation (rare on mature libraries like Boost)</li> <li>mixing raw pointers with smart pointers</li> <li>thread safety</li> <li>improperly attached or detaching from a raw pointer</li> </ul> <p>These problems shouldn't be encountered in fully GC'ed environments.</p> http://stackoverflow.com/questions/1411394/how-to-become-a-faster-programmer/1411544#1411544 6 Answer by James Schek for How to become a "faster" programmer? James Schek 2009-09-11T15:13:46Z 2009-09-11T16:12:46Z <p>To produce software faster, I've found the best thing to do is to learn your runtime API as best as possible. Don't type out list logic when a LINQ extension will do; don't build a bunch of event listeners when binding will work, etc.</p> <p>As far as estimation, that comes with experience. You can make use of estimation software out there to help you figure out better estimates.</p> <p>Personally, I found with junior level developers, take whatever their initial estimate is and multiply it by 2, then double it. This will account for all of the learning, meetings, wasted time, etc. The more senior level developers tend to work at a factor of 2 over their estimates.</p> <p>Often times, the question is not if your estimate was wrong. It's did your estimate account for all the right things? Are you giving your estimates and timelines in terms of coding effort or in terms of calendar time? Think about all the time in your day and how much of it is actual, productive coding vs. meetings, learning, debugging, etc.</p> http://stackoverflow.com/questions/1411463/in-java-should-variables-be-declared-at-the-top-of-a-function-or-as-theyre-nee/1411503#1411503 3 Answer by James Schek for In Java, should variables be declared at the top of a function, or as they're needed? James Schek 2009-09-11T15:09:06Z 2009-09-11T15:09:06Z <p>I've found that declaring them as-needed results in fewer mistakes than declaring them at the beginning. I've also found that declaring them at the minimum scope possible to also prevent mistakes.</p> <p>When I looked at the byte-code generated by the location of the declaration few years ago, I found they were more-or-less identical. There were ocassionally differences depending on when they were assigned. Even something like:</p> <pre><code>for(Object o : list) { Object temp = ...; //was not "redeclared" every loop iteration } </code></pre> <p>vs</p> <pre><code>Object temp; for(Object o : list) { temp = ...; //nearly identical bytecoode, if not exactly identical. } </code></pre> <p>Came out more or less identical</p> http://stackoverflow.com/questions/1394338/c-interface-help-in-power-of-interface/1394528#1394528 0 Answer by James Schek for C# - Interface -Help in power of Interface James Schek 2009-09-08T15:05:57Z 2009-09-08T15:05:57Z <p>Interfaces can be used for "tagging" concepts or marking classes with specifically functionality such as serializable. This metadata (Introspection or Reflection) can be used with powerful inversion-of-control frameworks such as dependency injection.</p> <p>This idea is used throughout the .NET framework (such as ISerializable) and third-party <a href="http://ninject.org/" rel="nofollow">DI frameworks</a>.</p> http://stackoverflow.com/questions/1379850/how-can-i-draw-a-road-using-bing-maps-api/1379901#1379901 2 Answer by James Schek for How can I draw a road using bing maps api? James Schek 2009-09-04T15:17:52Z 2009-09-04T15:17:52Z <p>Use <code>map.GetDirections(new VELatLong(lat,lon),new VELatLong(lat,lon))</code></p> http://stackoverflow.com/questions/1370826/excract-jpanel-into-new-class-in-netbeans/1370879#1370879 1 Answer by James Schek for Excract JPanel into new class in NetBeans James Schek 2009-09-03T00:32:53Z 2009-09-03T00:32:53Z <p>Create a new JPanelX class in Netbeans. Then copy-paste the contents of JPanel X into JPanelX. Repeat for each of the others.</p> <p>Then in JFrame, remove the JPanel's and replace them with your new JPanelX, etc.</p> http://stackoverflow.com/questions/1361442/do-you-know-any-free-satellite-imagery-for-gis/1363304#1363304 1 Answer by James Schek for Do you know any free satellite imagery for GIS? James Schek 2009-09-01T16:02:29Z 2009-09-01T16:02:29Z <p>THe <a href="http://seamless.usgs.gov/website/seamless/viewer.htm" rel="nofollow">USGS Seamless</a> website provides free satellite and aerial imagery. The website is a bit dated (ok, very dated), but it's a good starting point.</p> <p>Unfortunately, downloading a very large amount of data (such as a full city) is cumbersome.</p> http://stackoverflow.com/questions/1340223/calculating-area-enclosed-by-arbitrary-polygon-on-earths-surface/1347828#1347828 2 Answer by James Schek for Calculating area enclosed by arbitrary polygon on Earth's surface James Schek 2009-08-28T15:42:35Z 2009-08-31T15:06:21Z <p>You mention "geography" in one of your tags so I can only assume you are after the area of a polygon on the surface of a geoid. Normally, this is done using a projected coordinate system rather than a geographic coordinate system (i.e. lon/lat). If you were to do it in lon/lat, then I would assume the unit-of-measure returned would be percent of sphere surface.</p> <p>If you want to do this with a more "GIS" flavor, then you need to select an unit-of-measure for your area and find an appropriate projection that preserves area (not all do). Since you are talking about calculating an arbitrary polygon, I would use something like a <a href="http://webhelp.esri.com/arcgisdesktop/9.2/index.cfm?id=138&amp;pid=103&amp;topicname=Lambert%5FAzimuthal%5FEqual%5FArea" rel="nofollow">Lambert Azimuthal Equal Area</a> projection. Set the origin/center of the projection to be the center of your polygon, project the polygon to the new coordinate system, then calculate the area using standard planar techniques.</p> <p>If you needed to do many polygons in a geographic area, there are likely other projections that will work (or will be close enough). UTM, for example, is an excellent approximation if all of your polygons are clustered around a single meridian.</p> <p>I am not sure if any of this has anything to do with how Matlab's areaint function works.</p> http://stackoverflow.com/questions/184704/is-it-possible-to-detect-if-an-exception-occurred-before-i-entered-a-finally-bloc 4 Is it possible to detect if an exception occurred before I entered a finally block? James Schek 2008-10-08T20:22:05Z 2009-08-30T19:23:03Z <p>In Java, is there an elegant way to detect if an exception occured prior to running the finally block? When dealing with "close()" statements, it's common to need exception handling within the finally block. Ideally, we'd want to maintain both exceptions and propogate them up (as both of them may contain useful information). The only way I can think of to do this is to have a variable outside the try-catch-finally scope to save a reference to a thrown exception. Then propogate the "saved" exception up with any that occur in the finally block.</p> <p>Is there a more elegant way of doing this? Perhaps an API call that will reveal this?</p> <p>Here's some rough code of what I'm talking about:</p> <pre><code>Throwable t = null; try { stream.write(buffer); } catch(IOException e) { t = e; //Need to save this exception for finally throw e; } finally { try { stream.close(); //may throw exception } catch(IOException e) { //Is there something better than saving the exception from the exception block? if(t!=null) { //propogate the read exception as the "cause"--not great, but you see what I mean. throw new IOException("Could not close in finally block: " + e.getMessage(),t); } else { throw e; //just pass it up } }//end close } </code></pre> <p>Obivously, there are a number of other similar kludges that might involve saving the exception as an member variable, returning it from a method, etc... but I'm looking for something a bit more elegant.</p> <p>Maybe something like <code>Thread.getPendingException()</code> or something similar? For that matter, is there an elegant solution in other languages?</p> <p>This question actually spawned from comments in <a href="http://stackoverflow.com/questions/183499/is-there-a-preference-for-nested-trycatch-blocks#183572">another question</a> that raised an interesting question. </p> http://stackoverflow.com/questions/1286749/spatial-sql-most-suitable-datatype-for-a-square/1347920#1347920 2 Answer by James Schek for Spatial SQL: Most suitable datatype for a square? James Schek 2009-08-28T15:56:31Z 2009-08-28T16:05:12Z <p>Even if your data represents a rectangle or square, you will still need to use the ST_POLYGON type. However, when you perform a query against the data, you can use a first-order filters such as <a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9/index.jsp?topic=/com.ibm.db2.udb.spatial.doc/rsbp4142.html" rel="nofollow">ST_EnvIntersects</a>. </p> <p>Normally, a spatial database will compare the envelopes (i.e. a rectangle that contains the polygon) for an intersection. Then it performs the more expensive polygon-to-polygon intersection calculation. In this case, since your polygons are equal to the envelope, you can skip the second more expensive step.</p> <p>As far as data validation, you can add a database trigger that checks ST_EQUALS(ST_ENVELOPE(geom),geom) = 1.</p> http://stackoverflow.com/questions/1342900/about-lidar-las-files/1347754#1347754 0 Answer by James Schek for about LIDAR .las files... James Schek 2009-08-28T15:30:06Z 2009-08-28T15:30:06Z <p>From the 3D Analyst Toolbox, you can run <a href="http://resources.esri.com/help/9.3/ArcGISEngine/com%5Fcpp/Gp%5FToolRef/3d%5Fanalyst%5Ftools/point%5Ffile%5Finformation%5F3d%5Fanalyst%5F.htm" rel="nofollow">Point File Information</a>.</p> http://stackoverflow.com/questions/1341850/looking-for-open-source-tools/1347729#1347729 0 Answer by James Schek for looking for open source tools James Schek 2009-08-28T15:25:07Z 2009-08-28T15:25:07Z <p>This may help a bit. In ArcGIS, you can either use an actual TIN which is a file format, or you can use a Terrain which is better suited for high density point clouds such as LIDAR. It offers better performance over a TIN.</p> <p>The Terrain can be used where you need a TIN.</p> <p><a href="http://webhelp.esri.com/arcgisdesktop/9.3/tutorials/3d%5Fanalyst/3D%5F45.htm" rel="nofollow">Loading surface feature data points into a geodatabase</a></p> <p>Instead of the ASCII tool shown in the above guide, you will need to use the <a href="http://webhelp.esri.com/arcgisdesktop/9.3/index.cfm?id=1121&amp;pid=1118&amp;topicname=LAS%5FTo%5FMultipoint%5F%283D%5FAnalyst%29" rel="nofollow">LAS to Multiple</a> tool. </p> http://stackoverflow.com/questions/51002/java-desktop-application-framework/103855#103855 1 Answer by James Schek for Java Desktop application framework James Schek 2008-09-19T17:22:36Z 2009-08-20T22:25:41Z <p>I've done a little work with both, but only on relatively simple applications. Both seem to have roughly equal capabilities. I personally prefer the Netbeans platform as it makes more sense to me.</p> <p>You should also consider JSR-296, the Swing Application Framework. It provides a basic framework for building Swing Applications, managing application resources, state, etc, but without as much "baggage" as Netbeans and Eclipse. Netbeans IDE has a number of tools for building applications on the SAF. See <a href="https://appframework.dev.java.net/" rel="nofollow">https://appframework.dev.java.net/</a> for more info.</p> <p>Without knowing more about your application, it's hard to point you at the appropriate strengths/weaknesses of the two platforms.</p> http://stackoverflow.com/questions/1261076/programatic-way-to-do-linear-referencing-in-arcgis/1261176#1261176 1 Answer by James Schek for Programatic way to do linear referencing in ArcGIS James Schek 2009-08-11T15:35:49Z 2009-08-11T15:35:49Z <p>I'm not entirely certain what it is you want to do. If you want to get Linear Referencing values or manipulate them directly in a feature class that already has linear referencing defined, that's pretty straight forward.</p> <p>IFeatureClass fc = ....; IFeature feature = fc.GetFeature(...); <a href="http://resources.esri.com/help/9.3/ArcGISEngine/arcobjects/esriGeometry/IMSegmentation3.htm" rel="nofollow">IMSegmentation3</a> seg = (IMSegmentation3)feature; ... blah ...</p> <p>If you need to create a Feature class with linear referencing, you should start witht he "Geoprocessing" tools in the ArcToolbox. If the out-of-the-box tools can do most of what you need, this will minimize your coding.</p> <p>I would <em>strongly</em> recommend trying to figure what you need to do with ArcMap if at all possible... then backing out the ArcObjects.</p> <ol> <li><a href="http://resources.esri.com/help/9.3/ArcGISEngine/arcobjects/esriLocation/Location%5Foverview.htm#LinearRef" rel="nofollow">Linear Referencing API</a> </li> <li><a href="http://resources.esri.com/help/9.3/ArcGISengine/java/Gp%5FToolRef/linear%5Freferencing%5Ftoolbox/understanding%5Flinear%5Freferencing.htm" rel="nofollow">Linear Referencing Toolbox</a></li> <li><a href="http://resources.esri.com/help/9.3/ArcGISengine/java/Gp%5FToolRef/linear%5Freferencing%5Ftoolbox/understanding%5Flinear%5Freferencing.htm" rel="nofollow">Understanding Linear Referencing</a></li> </ol> http://stackoverflow.com/questions/1561555/c-creating-a-log-system/1561603#1561603 Comment by James Schek on C# Creating a log system James Schek 2009-11-30T20:16:02Z 2009-11-30T20:16:02Z Chainsaw + log4net = Awsome. http://stackoverflow.com/questions/1771117/why-doesnt-c-reimplement-c-standard-functions-with-c-elements-style/1771171#1771171 Comment by James Schek on Why doesn't C++ reimplement C standard functions with C++ elements/style? James Schek 2009-11-20T16:08:39Z 2009-11-20T16:08:39Z &quot;...Today, we think iterators are so 1990...&quot; I hate to break it to you, but many C++, C#, and Java developers are still living in the 80's. If I have to explain one more time why int i=0; for(i=0;...) is bad, I'm going to scream! http://stackoverflow.com/questions/1593999/how-to-manage-a-dictionary-of-lazily-created-objects-in-a-multithreaded-environme/1751045#1751045 Comment by James Schek on How to manage a dictionary of lazily created objects in a multithreaded environment in .NET? James Schek 2009-11-20T01:09:56Z 2009-11-20T01:09:56Z @Skirwan: that's a fiarly important constraint that needs to be added to the question. http://stackoverflow.com/questions/1715802/sql-server-spatial-datatypes/1716233#1716233 Comment by James Schek on SQL Server Spatial Datatypes James Schek 2009-11-17T21:38:31Z 2009-11-17T21:38:31Z You have to pay special attention to argument ordering in SQL Server. I believe the x,y ordering is different between geometry and geography (or it was during the beta releases). http://stackoverflow.com/questions/1742859/stdvectorreserve-performance-penalty/1742948#1742948 Comment by James Schek on std::vector::reserve performance penalty James Schek 2009-11-16T15:38:31Z 2009-11-16T15:38:31Z Every implementation of vector I've seen has a &quot;size&quot; variable so vec.size() is constant time. http://stackoverflow.com/questions/1701788/how-to-convert-string-to-arraylist Comment by James Schek on How to convert string[] to ArrayList? James Schek 2009-11-09T16:17:06Z 2009-11-09T16:17:06Z Why not just leave it as the Array (or more accurately, IEnumerable&lt;string&gt;) and use the LINQ Extensions? http://stackoverflow.com/questions/1702003/issue-with-zipped-streams-from-net-and-reading-them-from-java Comment by James Schek on Issue with Zipped Streams from .Net and reading them from Java James Schek 2009-11-09T16:15:20Z 2009-11-09T16:15:20Z @Stan, Please post your code. http://stackoverflow.com/questions/223649/developing-arcmap-extension-net-books/303286#303286 Comment by James Schek on Developing ArcMap extension .Net books? James Schek 2009-11-05T23:41:19Z 2009-11-05T23:41:19Z @emptyset Which workshop? One of the multiday classes or a 1-hour session at the User Conference? http://stackoverflow.com/questions/1669514/should-i-inherit-from-stdexception/1669612#1669612 Comment by James Schek on Should I inherit from std::exception? James Schek 2009-11-03T22:22:24Z 2009-11-03T22:22:24Z It's especially painful for Java developers where rethrow is done using &quot;throw e;&quot; http://stackoverflow.com/questions/1669514/should-i-inherit-from-stdexception/1669612#1669612 Comment by James Schek on Should I inherit from std::exception? James Schek 2009-11-03T19:34:16Z 2009-11-03T19:34:16Z I think the take away is that &quot;throw e;&quot; is evil, and &quot;throw;&quot; is ok. http://stackoverflow.com/questions/1520491/how-to-test-gui-for-color-blind-person Comment by James Schek on How to test GUI for color blind person? James Schek 2009-10-05T15:43:38Z 2009-10-05T15:43:38Z This is an important subject for all developers to consider. In the US, most businesses producing software are subject to Section 508 regulations. Even in industiries that have exemptions (i.e. military), there is still a lot of value in considering UI accessibility. http://stackoverflow.com/questions/1501338/what-advantages-can-i-get-from-learning-c-if-im-mainly-a-c-programmer/1501362#1501362 Comment by James Schek on What advantages can I get from learning C++ if I'm mainly a C# Programmer? James Schek 2009-10-01T15:11:49Z 2009-10-01T15:11:49Z + For the after thought. ANY langauge can be learned in a few months, but mastering a language takes years. Look around at the number of &quot;senior&quot; level developers who struggle with concepts such as generic, template, or declaritive programming which are key concepts in C# or C++. http://stackoverflow.com/questions/1498554/can-anyone-explain-to-mebeginner-in-plain-english-what-schema-means Comment by James Schek on Can anyone explain to me(beginner) in plain english what "Schema" means? James Schek 2009-09-30T18:56:09Z 2009-09-30T18:56:09Z @Zaki--A schema is a &quot;definition&quot; of sorts of data, such as XML file or database. In that regard, semantic is similar to schema, but they are not the same. http://stackoverflow.com/questions/1498554/can-anyone-explain-to-mebeginner-in-plain-english-what-schema-means Comment by James Schek on Can anyone explain to me(beginner) in plain english what "Schema" means? James Schek 2009-09-30T15:02:10Z 2009-09-30T15:02:10Z Somehow, this reminds me of the question &quot;what's the meaning of semantic&quot;? http://stackoverflow.com/questions/1494164/memory-corrupt-in-adding-string-to-vectorstring-loop/1494443#1494443 Comment by James Schek on Memory corrupt in adding string to vector<string> loop James Schek 2009-09-29T19:26:38Z 2009-09-29T19:26:38Z I thought with VS2008 it uses 0xCDCDCDCD for heap and 0xCCCCCCCC for stack?