Sarah Hoffmann
35fdb7af0f
more verbose error messages
2012-05-24 00:26:16 +02:00
Sarah Hoffmann
1e307392b2
rename ambiguous variables to make postgresql 8.4 happy
2012-05-24 00:25:15 +02:00
Sarah Hoffmann
410ce603f7
use Overpass API by default to download OSM objects
2012-05-23 23:32:12 +02:00
Sarah Hoffmann
e54bd028ee
make index work and remove more hard-coded DB names
2012-05-23 23:32:12 +02:00
Datendelphin
8be76da629
eliminate php warning, remove setting aPipes (isn't used)
2012-05-23 23:32:12 +02:00
Datendelphin
1461dc603e
make .osc files with osmosis
2012-05-23 23:32:11 +02:00
Brian Quinion
3af2a44a3c
Merge branch 'master' of github.com:twain47/Nominatim
2012-05-23 19:26:01 +02:00
Brian Quinion
4be160bd4b
revert to plain text dump for 8.4 compatibility (+ permissions fix)
2012-05-23 19:25:43 +02:00
Sarah Hoffmann
8204a8b13a
typo
2012-05-23 20:15:15 +03:00
Brian Quinion
c36e3d9c7e
can't have a unique index on placex - only on place
2012-05-22 20:25:18 +02:00
Brian Quinion
f1e381fdd4
fix broken field name / committed debug
2012-05-22 20:21:58 +02:00
Brian Quinion
d74cf03492
use the new country data files
2012-05-22 19:48:35 +02:00
Brian Quinion
77f646410e
deal with some indexing edge cases
2012-05-22 19:43:49 +02:00
Brian Quinion
85ab12c471
Merge pull request #9 from andreek/master
...
Postgis 2.0 compatibility
Seems to be compatible with all recent versions of postgis
2012-05-22 10:34:04 -07:00
Brian Quinion
8d221e2c82
DB Scheme changes: alter table placex add column calculated_country_code varchar(2);
...
function changes:
-----------------
Move to ST_PointOnSurface from ST_Centroid in various places to avoid looking up a point outside the polygon
Move to ST_Covers from ST_Contains to include points on admin boundaries
Re-order preference for get_country_code now our data is better. country_osm_grid is now the preffered source.
Fix code to calculate country code in placex_insert, rank_search test was too early
Add extra field to placex 'calculated_country_code' to improve structure of code
Move split_geometery function out of add_location into its own function
Rewrite split_geometery to be more efficient.
Change place_insert to do more updates and less delete/inserts (delete is slow)
Include wikipedia links in details.php ouput
Cleanup no longer used geometry validation (adding overhead)
Include debug statements in function.sql (--DEBUG: ) and add flag to setup.php to turn them on
setup.php:
----------
add flag --disable-token-precalc to speed up debuging
add flag --index-noanalyse to disable analysising DB at rank 4 and 26 (previously removed, but on my local DB it seems to be required)
add flag --enable-diff-updates (modifier to --create-functions) to turn on the code required for diff updates without having to modify functions.sql
add flag --enable-debug-statements (modifier to --create-functions) to turn on debug warning statements
update.php:
-----------
added flag --no-index to import osmosis changes without indexing them
extend the hack to allow import of JOSM generated osm files
country_grid.sql - reference copy of the sql used to generate the country_osm_grid table, needs cleanup
2012-05-22 16:27:42 +02:00
Andree Klattenhoff
444f485541
Suport postgis 2.0 for search
2012-05-22 14:04:37 +02:00
Brian Quinion
f17c5345ec
Merge branch 'master' of github.com:twain47/Nominatim
2012-05-15 03:06:12 +02:00
Sarah Hoffmann
7c4b68d2ea
move index over nameaddress_vector back to delayed index creation
...
No longer needed for linking places.
2012-05-13 11:38:50 +02:00
Sarah Hoffmann
fd448170c5
remove intermediate ANALYSE while indexing
...
Autovacuum does a much better job.
2012-05-13 10:50:08 +02:00
Sarah Hoffmann
6d5c101a9e
make sure nominatim.so is accessible for postgresql
...
Even if the user has a very restrictive umask in place.
2012-05-13 10:05:27 +02:00
Sarah Hoffmann
c32fa2172d
pre-create word list to avoid duplicates due to parallel indexing
2012-05-13 09:15:56 +02:00
Brian Quinion
0ab9c90708
Can't filter on rank_search before it has been assigned
2012-05-11 19:23:44 +02:00
Brian Quinion
b9a3e52a67
updated wikipedia article code to allow for mutliple languages and remove code duplication
2012-05-07 00:18:31 +01:00
Sarah Hoffmann
cc43bedd21
modifiers to encourage use of indices
2012-05-05 11:38:26 +02:00
Brian Quinion
4d0693ea69
don't have an address property in the return if we have not got address data
2012-05-04 00:59:26 +01:00
Brian Quinion
ee0afe8c64
catch utf8 encoding errors and at least stop them aborting processing
2012-05-04 00:58:26 +01:00
Brian Quinion
7164fd310d
Merge branch 'master' of github.com:twain47/Nominatim
2012-04-30 01:05:13 +01:00
Brian Quinion
1c0fa81d88
calculate importance from wikipedia
2012-04-30 01:05:06 +01:00
Brian Quinion
709ab1bb03
more name checks in point and poly mergeing, and put the index creation earlier in the process
2012-04-29 16:40:44 +01:00
Sarah Hoffmann
e3dab17dfe
add licence file
2012-04-27 22:19:55 +02:00
Sarah Hoffmann
820b075026
fix typos in mapicons
2012-04-26 23:23:27 +02:00
Sarah Hoffmann
ec9a4ac61b
make it run with 64bit and 32bit osm2pgsql
...
Needs tweaking on the osm2pgsql side, too: the osmid column
needs to have the same format as in osm2pgsql. That means
that the changes are still not compatible with existing installations.
2012-04-26 21:11:51 +02:00
Sarah Hoffmann
cb01226f29
change code to work with a 64-bit node size osm2pgsql
...
This breaks the 32-bit node size version.
2012-04-26 21:11:51 +02:00
Brian Quinion
b8db117bd0
Merge pull request #5 from mfn/improve_errmsg
...
Do not swallow PEAR error during setup in import-data.
2012-04-26 06:50:58 -07:00
Brian Quinion
210a899fc9
depreciate place=region due to common miss-use
2012-04-26 13:11:56 +01:00
Brian Quinion
f55e3c1ef8
link nodes and relations using name->'name' index lookup instead of search_name
2012-04-26 13:01:26 +01:00
mfn
fd3fcea539
Do not swallow PEAR error.
2012-04-26 13:30:49 +02:00
Brian Quinion
9b01ddd641
set osm2pgsql cache memory to a default based on memory in the machine
2012-04-26 01:35:06 +01:00
Sarah Hoffmann
7b430bc731
Merge branch 'continent' of https://github.com/datendelphin/Nominatim
2012-04-20 23:19:52 +02:00
Sarah Hoffmann
6522e531e4
add support for Irish townlands
...
To work properly, osm2pgsql needs to be updated to the latest version.
2012-04-20 22:13:03 +02:00
Datendelphin
5e6a9638a8
only calculate country for search ranks country and below
2012-04-20 16:17:13 +02:00
Sarah Hoffmann
aaca88d5a6
allow slashes in house numbers
2012-04-16 15:33:13 +02:00
Sarah Hoffmann
653c05329d
Format of replicate-sequence URL has changed
...
Additionally update/init import_status in the DB. If this is not
initialized here, subsequent updates of the status won't work.
2012-04-15 17:45:01 +02:00
Sarah Hoffmann
5f036d9923
ignore postcode boundaries without postcode
2012-04-14 09:27:10 +02:00
Sarah Hoffmann
1a9f05fd3f
missing brackets in default name assignment
2012-04-14 08:56:07 +02:00
Sarah Hoffmann
3f8fcd4055
add switch for osm2pgsql cache size
...
also increased the default to 15GB to accaommodate growing planet
2012-04-11 23:39:07 +02:00
Sarah Hoffmann
625b1cd17d
Merge branch 'mountain_pass' of https://github.com/datendelphin/Nominatim
2012-04-11 22:21:06 +02:00
Sarah Hoffmann
7ed4c28405
force UTF-8 database
2012-04-11 22:16:35 +02:00
Datendelphin
6aa42cb36a
ranking for mountain_pass
2012-04-06 18:34:45 +02:00
Brian Quinion
e62e75f1a7
Only link polygons on admin_centre is not already found a label AND if exactl search_rank match
2012-04-02 12:48:51 +01:00