http://localhost:8080/yacysearch_location.kml?query=berlin&maximumTime=2000&maximumRecords=100 This will open any application that can consume kml data (which will probably be google earth) on your computer and displays the search result as positions on a map git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6865 6c8d7289-2bf4-0310-a012-ef5d649a1542pull/1/head
parent
f23cbd2dab
commit
789c6b26ce
@ -0,0 +1,98 @@
|
||||
// yacysearch_location.java
|
||||
// -----------------------
|
||||
// (C) 2010 by Michael Peter Christen; mc@yacy.net
|
||||
// first published 09.05.2010 in Frankfurt, Germany on http://yacy.net
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation; either version 2 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
import java.util.concurrent.BlockingQueue;
|
||||
|
||||
import net.yacy.document.content.RSSMessage;
|
||||
import net.yacy.document.geolocalization.Location;
|
||||
import de.anomic.data.LibraryProvider;
|
||||
import de.anomic.http.server.HeaderFramework;
|
||||
import de.anomic.http.server.RequestHeader;
|
||||
import de.anomic.server.serverObjects;
|
||||
import de.anomic.server.serverSwitch;
|
||||
import de.anomic.yacy.yacyClient;
|
||||
|
||||
public class yacysearch_location {
|
||||
|
||||
public static serverObjects respond(final RequestHeader header, final serverObjects post, final serverSwitch env) {
|
||||
//final Switchboard sb = (Switchboard) env;
|
||||
final serverObjects prop = new serverObjects();
|
||||
|
||||
prop.put("kml", 0);
|
||||
if (post == null) return prop;
|
||||
|
||||
if (header.get(HeaderFramework.CONNECTION_PROP_EXT, "").equals("kml") || header.get(HeaderFramework.CONNECTION_PROP_EXT, "").equals("xml")) {
|
||||
// generate a kml output page
|
||||
prop.put("kml", 1);
|
||||
String query = post.get("query", "");
|
||||
long maximumTime = post.getLong("maximumTime", 1000);
|
||||
int maximumRecords = post.getInt("maximumRecords", 100);
|
||||
//i.e. http://localhost:8080/yacysearch_location.kml?query=berlin&maximumTime=2000&maximumRecords=100
|
||||
|
||||
// get a queue of search results
|
||||
BlockingQueue<RSSMessage> results = yacyClient.search(null, query, false, false, maximumTime, Integer.MAX_VALUE);
|
||||
|
||||
// take the results and compute some locations
|
||||
RSSMessage message;
|
||||
int placemarkCounter = 0;
|
||||
try {
|
||||
loop: while ((message = results.take()) != RSSMessage.POISON) {
|
||||
// find all associated locations
|
||||
Set<Location> locations = new HashSet<Location>();
|
||||
String words = message.getTitle() + " " + message.getCopyright() + " " + message.getAuthor();
|
||||
String subject = "";
|
||||
for (String s: message.getSubject()) subject += " " + s;
|
||||
words += subject;
|
||||
for (String word: words.split(" ")) if (word.length() >= 3) locations.addAll(LibraryProvider.geoDB.find(word, true, true, false, false, false));
|
||||
|
||||
if (locations.size() > 0) {
|
||||
String locnames = "";
|
||||
for (Location location: locations) locnames += ", " + location.getName();
|
||||
locnames = locnames.substring(2);
|
||||
// write for all locations a point to this message
|
||||
prop.put("kml_placemark_" + placemarkCounter + "_location", locnames);
|
||||
prop.put("kml_placemark_" + placemarkCounter + "_name", message.getTitle());
|
||||
prop.put("kml_placemark_" + placemarkCounter + "_author", message.getAuthor());
|
||||
prop.put("kml_placemark_" + placemarkCounter + "_copyright", message.getCopyright());
|
||||
prop.put("kml_placemark_" + placemarkCounter + "_subject", subject.trim());
|
||||
prop.put("kml_placemark_" + placemarkCounter + "_description", message.getDescription());
|
||||
prop.put("kml_placemark_" + placemarkCounter + "_date", message.getPubDate());
|
||||
prop.put("kml_placemark_" + placemarkCounter + "_url", message.getLink());
|
||||
int pc = 0;
|
||||
for (Location location: locations) {
|
||||
prop.put("kml_placemark_" + placemarkCounter + "_point_" + pc + "_name", location.getName());
|
||||
prop.put("kml_placemark_" + placemarkCounter + "_point_" + pc + "_lon", location.lon());
|
||||
prop.put("kml_placemark_" + placemarkCounter + "_point_" + pc + "_lat", location.lat());
|
||||
pc++;
|
||||
}
|
||||
prop.put("kml_placemark_" + placemarkCounter + "_point", pc);
|
||||
placemarkCounter++;
|
||||
if (placemarkCounter >= maximumRecords) break loop;
|
||||
}
|
||||
}
|
||||
prop.put("kml_placemark", placemarkCounter);
|
||||
} catch (InterruptedException e) {}
|
||||
}
|
||||
// return rewrite properties
|
||||
return prop;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
#(kml)#::<?xml version="1.0" encoding="UTF-8"?>
|
||||
<kml xmlns="http://www.opengis.net/kml/2.2">
|
||||
<Document>
|
||||
#{placemark}#
|
||||
<Placemark>
|
||||
<name>#[name]#</name>
|
||||
<description><![CDATA[<p>Location: #[location]#</p><p>Author: #[author]#</p><p>Publisher: #[copyright]#</p><p>Subject: #[subject]#</p><p>Abstract: #[description]#</p><p>Source: <a href="#[url]#">#[url]#</a></p>]]></description>
|
||||
#{point}#
|
||||
<Point>
|
||||
<name>#[name]#</name>
|
||||
<coordinates>#[lon]#,#[lat]#</coordinates>
|
||||
</Point>
|
||||
#{/point}#
|
||||
<TimeStamp>
|
||||
<when>#[date]#</when>
|
||||
</TimeStamp>
|
||||
</Placemark>
|
||||
#{/placemark}#
|
||||
</Document>
|
||||
</kml>#(/kml)#
|
@ -0,0 +1,20 @@
|
||||
#(kml)#::<?xml version="1.0" encoding="UTF-8"?>
|
||||
<kml xmlns="http://www.opengis.net/kml/2.2">
|
||||
<Document>
|
||||
#{placemark}#
|
||||
<Placemark>
|
||||
<name>#[name]#</name>
|
||||
<description><![CDATA[<p>Location: #[location]#</p><p>Author: #[author]#</p><p>Publisher: #[copyright]#</p><p>Subject: #[subject]#</p><p>Abstract: #[description]#</p><p>Source: <a href="#[url]#">#[url]#</a></p>]]></description>
|
||||
#{point}#
|
||||
<Point>
|
||||
<name>#[name]#</name>
|
||||
<coordinates>#[lon]#,#[lat]#</coordinates>
|
||||
</Point>
|
||||
#{/point}#
|
||||
<TimeStamp>
|
||||
<when>#[date]#</when>
|
||||
</TimeStamp>
|
||||
</Placemark>
|
||||
#{/placemark}#
|
||||
</Document>
|
||||
</kml>#(/kml)#
|
Loading…
Reference in new issue