Re: CF and GIS?

2011-03-17 Thread Bryan Stevenson
Thanks JohnI'll have a lookbut yes my requirements are pretty basic, so I was hoping there might be a UDF or some other custom doo-dad to help me get it done ;-) Cheers On Thu, 2011-03-17 at 14:22 -0400, John Allen wrote: > I have to do this in an application and used this UDF: > http:/

Re: CF and GIS?

2011-03-17 Thread John Allen
I have to do this in an application and used this UDF: http://www.cflib.org/udf/inPolygon I think it performs the task you described. On Wed, Mar 16, 2011 at 12:12 PM, Bryan Stevenson < br...@electricedgesystems.com> wrote: > > Hi All, > > Quite new to GIS, but not CF.. > > I'm wondering i

Re: CF and GIS? [spamtrap bayes][spamtrap heur]

2011-03-17 Thread Bryan Stevenson
great newsthanks again Paul! On Thu, 2011-03-17 at 09:11 +0700, Paul Hastings wrote: > On 3/17/2011 2:03 AM, Bryan Stevenson wrote: > > That saidprobably going to be either Oracle 10g or SQL Server 2008 > > (not yet my call) > > both have spatial extensions. > > > The requirements are

Re: CF and GIS? [spamtrap bayes][spamtrap heur]

2011-03-17 Thread Bryan Stevenson
Thanks for the tip Paul ;-) On Thu, 2011-03-17 at 10:32 +0700, Paul Hastings wrote: > On 3/17/2011 2:07 AM, Bryan Stevenson wrote: > > > I'd hope to have the shapes stored in whatever manner they need to be > > stored in (8 in total) the DB and my inputs would be the shape and the > > lat/long

Re: CF and GIS? [spamtrap bayes][spamtrap heur]

2011-03-16 Thread Paul Hastings
On 3/17/2011 2:07 AM, Bryan Stevenson wrote: > I'd hope to have the shapes stored in whatever manner they need to be > stored in (8 in total) the DB and my inputs would be the shape and the > lat/long of the pointwanting an output of in or out. just 8 spatial objects? *i* can't see that amou

Re: CF and GIS? [spamtrap bayes][spamtrap heur]

2011-03-16 Thread Paul Hastings
On 3/17/2011 2:03 AM, Bryan Stevenson wrote: > That saidprobably going to be either Oracle 10g or SQL Server 2008 > (not yet my call) both have spatial extensions. > The requirements are actually fairly clear.must be able to tell if a > point is inside or outside a given shape. The trou

Re: CF and GIS?

2011-03-16 Thread Bryan Stevenson
Thanks Jochem, This is still preliminary, but I assume these shapes are already defined in a GIS system (which one I don't know). I should be able to get the shape files (or data) that define these areas, but may not have access to the GIS system itself (so can't use it for comparison etc.). Yo

Re: CF and GIS?

2011-03-16 Thread Jochem van Dieten
On Wed, Mar 16, 2011 at 5:12 PM, Bryan Stevenson wrote: > I'm wondering if anyone has any advice on performing a task that > involves determining if a given lat/long is within a given oddly shaped > (not a simple rectangle) area/box? Where do the point and the polygon originate and in which way a

Re: CF and GIS? [spamtrap bayes][spamtrap heur]

2011-03-16 Thread Bryan Stevenson
Thanks Paul, lots of good info there! Just to be clear, there would not be any visualization or anything fancyjust checking to see if the point is in the box/shape or not - the end ;-) I'd hope to have the shapes stored in whatever manner they need to be stored in (8 in total) the DB and my

Re: CF and GIS? [spamtrap bayes][spamtrap heur]

2011-03-16 Thread Bryan Stevenson
Thanks Judah, I wasn't aware that there are now DBs that are spatially awaregood to know. That saidprobably going to be either Oracle 10g or SQL Server 2008 (not yet my call) The requirements are actually fairly clear.must be able to tell if a point is inside or outside a given shap

Re: CF and GIS? [spamtrap bayes][spamtrap heur]

2011-03-16 Thread Paul Hastings
On 3/17/2011 12:07 AM, Bryan Stevenson wrote: > Rob, you confirmed what I thought.this shouldn't be rocket science. no, but it can hurt like the dickens. > 1) No data structure defined as of yet > 2) May not have access to the GIS system just use postGIS/postgreSQL. has tools to load shape

Re: CF and GIS? [spamtrap bayes][spamtrap heur]

2011-03-16 Thread Judah McAuley
You might also take a look at the GIS capabilities that are now baked into sever DB systems. MS SQL 2008 and the newer versions of PostGres come to mind as having native support for geographic data. A lot of it will come down to figuring out your actual requirements, which seem to be rather fuzzy

Re: CF and GIS? [spamtrap bayes][spamtrap heur]

2011-03-16 Thread Bryan Stevenson
Thanks Rob/Paul, Rob, you confirmed what I thought.this shouldn't be rocket science. Paul...yes I'd certainly prefer to let the right tool do the job. This is an initial check to see what is available. I'm in no way married to any ideas about what tools would be involved. Currently, I can

Re: CF and GIS? [spamtrap bayes][spamtrap heur]

2011-03-16 Thread Paul Hastings
On 3/16/2011 11:12 PM, Bryan Stevenson wrote: > I'm wondering if anyone has any advice on performing a task that > involves determining if a given lat/long is within a given oddly shaped > (not a simple rectangle) area/box? that (point-polygon searches) is actually the GIS's job. what are you usi

Re: CF and GIS?

2011-03-16 Thread Rob Parkhill
Bryan, Well it really sounds like what you need to do is the number crunching. Are the coordinates going to be stored in a database? or read straight off of a shape file lets say? All you really need to do is incrementally check your bounds or your coordinate pairs to the location. You should

CF and GIS?

2011-03-16 Thread Bryan Stevenson
Hi All, Quite new to GIS, but not CF.. I'm wondering if anyone has any advice on performing a task that involves determining if a given lat/long is within a given oddly shaped (not a simple rectangle) area/box? I would assume the hard part is defining the boundaries of an irregular shaped b