You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by iv...@apache.org on 2020/02/19 15:03:44 UTC

[lucene-solr] branch master updated (001a35c -> d48bafb)

This is an automated email from the ASF dual-hosted git repository.

ivera pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git.


    from 001a35c  SOLR-14263: stripping .adoc to fix build.
     add d48bafb  LUCENE-8707: Add LatLonShape and XYShape distance query (#587)

No new revisions were added by this update.

Summary of changes:
 lucene/CHANGES.txt                                 |   4 +-
 .../org/apache/lucene/document/LatLonShape.java    |   7 +
 .../java/org/apache/lucene/document/XYShape.java   |   6 +
 .../apache/lucene/geo/{Point.java => Circle.java}  |  57 ++-
 .../src/java/org/apache/lucene/geo/Circle2D.java   | 463 +++++++++++++++++++++
 .../lucene/geo/{XYPoint.java => XYCircle.java}     |  54 ++-
 .../lucene/document/BaseLatLonShapeTestCase.java   |  16 +
 .../apache/lucene/document/BaseShapeTestCase.java  | 106 ++++-
 .../lucene/document/BaseXYShapeTestCase.java       |  16 +
 .../apache/lucene/document/TestLatLonShape.java    |  52 ++-
 .../org/apache/lucene/document/TestXYShape.java    |  43 ++
 .../test/org/apache/lucene/geo/ShapeTestUtil.java  |   8 +
 .../src/test/org/apache/lucene/geo/TestCircle.java |  70 ++++
 .../test/org/apache/lucene/geo/TestCircle2D.java   | 134 ++++++
 .../test/org/apache/lucene/geo/TestXYCircle.java   |  93 +++++
 .../java/org/apache/lucene/geo/GeoTestUtil.java    |   7 +
 16 files changed, 1091 insertions(+), 45 deletions(-)
 copy lucene/core/src/java/org/apache/lucene/geo/{Point.java => Circle.java} (52%)
 create mode 100644 lucene/core/src/java/org/apache/lucene/geo/Circle2D.java
 copy lucene/core/src/java/org/apache/lucene/geo/{XYPoint.java => XYCircle.java} (57%)
 create mode 100644 lucene/core/src/test/org/apache/lucene/geo/TestCircle.java
 create mode 100644 lucene/core/src/test/org/apache/lucene/geo/TestCircle2D.java
 create mode 100644 lucene/core/src/test/org/apache/lucene/geo/TestXYCircle.java