Re: [Neo4j] How often are Spatial snapshots published?

2011-07-22 Thread Peter Neubauer
Nolan,
saftest is to build it yourself from GITHub, I will check the
deployment. Is that ok for now?

/peter

On Fri, Jul 22, 2011 at 3:57 AM, Nolan Darilek no...@thewordnerd.info wrote:
 I'm looking at the Spatial sources from Git, and am seeing lots of
 versions of SpatialTopologyUtils.findClosestEdges that don't appear to
 be in the snapshot I'm downloading. For instance,

     public static ArrayListPointResult findClosestEdges(Point point,
             Layer layer) {


 doesn't appear to be in the snapshot build I have--that or my local
 cache is borken.

 Are these snapshots rebuilt regularly?

 Thanks.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] How often are Spatial snapshots published?

2011-07-22 Thread Anders Nawroth
Hi!

The deployment seems to be broken at the moment, I'll look into that ASAP.

/anders

2011-07-22 09:28, Peter Neubauer skrev:
 Nolan,
 saftest is to build it yourself from GITHub, I will check the
 deployment. Is that ok for now?

 /peter

 On Fri, Jul 22, 2011 at 3:57 AM, Nolan Darilekno...@thewordnerd.info  wrote:
 I'm looking at the Spatial sources from Git, and am seeing lots of
 versions of SpatialTopologyUtils.findClosestEdges that don't appear to
 be in the snapshot I'm downloading. For instance,

  public static ArrayListPointResult  findClosestEdges(Point point,
  Layer layer) {


 doesn't appear to be in the snapshot build I have--that or my local
 cache is borken.

 Are these snapshots rebuilt regularly?

 Thanks.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] How often are Spatial snapshots published?

2011-07-22 Thread Craig Taverner
Interesting that if you look at the github 'blame' for that file (see
https://github.com/neo4j/neo4j-spatial/blame/master/src/main/java/org/neo4j/gis/spatial/SpatialTopologyUtils.java),
you find that all the findClosestEdges methods where added in October 2010.
So if Nolan has a version older than that, then something weird is going on.
He must have the very first version from September 2010, which is not
compatible with any recent Neo4, Geotools or uDig.

When I look at m2.neo4j.org I can see that the latest 0.6-SNAPSHOT is from
May. So we do have a problem, but not one that takes us back to last
September.

Nolan, perhaps your pom.xml refers to an older neo4j-spatial? You should use
0.6-SNAPSHOT. And we will change that again soon (to 0.7) since we are
making changes to the geoprocessing and indexing.

On Fri, Jul 22, 2011 at 10:04 AM, Anders Nawroth
and...@neotechnology.comwrote:

 Hi!

 The deployment seems to be broken at the moment, I'll look into that ASAP.

 /anders

 2011-07-22 09:28, Peter Neubauer skrev:
  Nolan,
  saftest is to build it yourself from GITHub, I will check the
  deployment. Is that ok for now?
 
  /peter
 
  On Fri, Jul 22, 2011 at 3:57 AM, Nolan Darilekno...@thewordnerd.info
  wrote:
  I'm looking at the Spatial sources from Git, and am seeing lots of
  versions of SpatialTopologyUtils.findClosestEdges that don't appear to
  be in the snapshot I'm downloading. For instance,
 
   public static ArrayListPointResult  findClosestEdges(Point point,
   Layer layer) {
 
 
  doesn't appear to be in the snapshot build I have--that or my local
  cache is borken.
 
  Are these snapshots rebuilt regularly?
 
  Thanks.
  ___
  Neo4j mailing list
  User@lists.neo4j.org
  https://lists.neo4j.org/mailman/listinfo/user
 
  ___
  Neo4j mailing list
  User@lists.neo4j.org
  https://lists.neo4j.org/mailman/listinfo/user
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] How often are Spatial snapshots published?

2011-07-22 Thread Nolan Darilek
Not sure what's up, but I went ahead and built from Git. All's well now.

On 07/22/2011 02:28 AM, Peter Neubauer wrote:
 Nolan,
 saftest is to build it yourself from GITHub, I will check the
 deployment. Is that ok for now?

 /peter

 On Fri, Jul 22, 2011 at 3:57 AM, Nolan Darilekno...@thewordnerd.info  wrote:
 I'm looking at the Spatial sources from Git, and am seeing lots of
 versions of SpatialTopologyUtils.findClosestEdges that don't appear to
 be in the snapshot I'm downloading. For instance,

  public static ArrayListPointResult  findClosestEdges(Point point,
  Layer layer) {


 doesn't appear to be in the snapshot build I have--that or my local
 cache is borken.

 Are these snapshots rebuilt regularly?

 Thanks.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] How often are Spatial snapshots published?

2011-07-22 Thread Anders Nawroth
Hi!

 Are these snapshots rebuilt regularly?

Now they are, again:
http://m2.neo4j.org/snapshots/org/neo4j/neo4j-spatial/0.6-SNAPSHOT/


/anders


 Thanks.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] How often are Spatial snapshots published?

2011-07-22 Thread Peter Neubauer
Nice,
thanks Anders! And, we want to make a 0.6 release ASAP before merging
in all the new good stuff.

Cheers,

/peter neubauer

GTalk:      neubauer.peter
Skype       peter.neubauer
Phone       +46 704 106975
LinkedIn   http://www.linkedin.com/in/neubauer
Twitter      http://twitter.com/peterneubauer

http://www.neo4j.org               - Your high performance graph database.
http://startupbootcamp.org/    - Öresund - Innovation happens HERE.
http://www.thoughtmade.com - Scandinavia's coolest Bring-a-Thing party.



On Fri, Jul 22, 2011 at 11:33 PM, Anders Nawroth
and...@neotechnology.com wrote:
 Hi!

 Are these snapshots rebuilt regularly?

 Now they are, again:
 http://m2.neo4j.org/snapshots/org/neo4j/neo4j-spatial/0.6-SNAPSHOT/


 /anders


 Thanks.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] How often are Spatial snapshots published?

2011-07-22 Thread Nolan Darilek
Awesome! Thanks a bunch.

On 07/22/2011 04:33 PM, Anders Nawroth wrote:
 Hi!

 Are these snapshots rebuilt regularly?
 Now they are, again:
 http://m2.neo4j.org/snapshots/org/neo4j/neo4j-spatial/0.6-SNAPSHOT/


 /anders

 Thanks.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


[Neo4j] How often are Spatial snapshots published?

2011-07-21 Thread Nolan Darilek
I'm looking at the Spatial sources from Git, and am seeing lots of 
versions of SpatialTopologyUtils.findClosestEdges that don't appear to 
be in the snapshot I'm downloading. For instance,

 public static ArrayListPointResult findClosestEdges(Point point,
 Layer layer) {


doesn't appear to be in the snapshot build I have--that or my local 
cache is borken.

Are these snapshots rebuilt regularly?

Thanks.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user