Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
christophlingg committed Mar 6, 2015
1 parent 96bd7e4 commit 0e9ff7b
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 37 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ photon requires java, at least version 6.

get photon
```bash
wget http://photon.komoot.de/data/photon-0.2.1.jar
wget http://photon.komoot.de/data/photon-0.2.2.jar
```

download search index (31G gb compressed, 56.3 gb uncompressed, worldwide coverage, languages: English, German, French and Italian)
Expand All @@ -36,12 +36,12 @@ pbzip2 -cd | tar x

start photon
```bash
java -jar photon-0.2.1.jar
java -jar photon-0.2.2.jar
```

Check the URL `http://localhost:2322/api?q=berlin` to see if photon is running without problems. You may want to use our [leaflet plugin](https://github.com/komoot/leaflet.photon) to see the results on a map.

discover more of photon's feature with its usage `java -jar photon-0.2.1.jar -h`.
discover more of photon's feature with its usage `java -jar photon-0.2.2.jar -h`.
Expand All @@ -50,7 +50,7 @@ If you need search data in other languages or restricted to a country you will n
Once you have your [nominatim](https://github.com/twain47/Nominatim) database ready, you can import the data to photon:
```bash
java -jar photon-0.2.1.jar -nominatim-import -host localhost -port 5432 -database nominatim -user nominatim -password ... -languages es,fr
java -jar photon-0.2.2.jar -nominatim-import -host localhost -port 5432 -database nominatim -user nominatim -password ... -languages es,fr
```
The import of worldwide data set will take some hours/days, ssd disk are recommended to accelerate nominatim queries.
Expand All @@ -65,7 +65,7 @@ export NOMINATIM_DIR=/home/nominatim/...
### Search API
#### Start Photon
```bash
java -jar photon-0.2.1.jar
java -jar photon-0.2.2.jar
```
#### Search
Expand Down
64 changes: 32 additions & 32 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>de.komoot.photon</groupId>
<artifactId>photon</artifactId>
<version>0.2.2-SNAPSHOT</version>
<version>0.2.3-SNAPSHOT</version>

<dependencies>
<dependency>
Expand Down Expand Up @@ -98,31 +98,31 @@
<artifactId>postgis-jdbc-jts</artifactId>
<version>1.1.5</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.10.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<version>1.6.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito</artifactId>
<version>1.6.1</version>
<scope>test</scope>
</dependency>
<dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.10.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<version>1.6.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito</artifactId>
<version>1.6.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>17.0</version>
Expand All @@ -142,12 +142,12 @@
<artifactId>json</artifactId>
<version>20140107</version>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.9.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.9.2</version>
<scope>test</scope>
</dependency>

</dependencies>

Expand Down

0 comments on commit 0e9ff7b

Please sign in to comment.