-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closed way now assumes geom type Area if schema allows it (#2734)
* failing tests identifying defects refs #2693 * Update README.md * Cleanup XXX, XXX2, XXX3 etc attributes (#2684) * Initial changes refs: #2683 * Test fixes. refs: #2683 * Test fix refs: #2683 * Append to dataset now appends (#2698) * Added flags to dataset opening refs: #2697 * Debugging added. refs: #2697 * Added a test refs: #2697 * Fixed copyright. refs: #2697 * add an area geometry situation for power tag refs #2683 * add test and post processor for riverbank refs #2693 * Fixed AK030 refs: #2693 * wip area translation fixes * test runway * comment out last tds->osm step * Updated the element converter to assign closed areas the polygon attribute * add F_CODE aliases, make waterway=riverbank only area, log attrs and geomType * set test with failing F_CODE/WCC combo for river * add aliases for all FCODES in schema * remove debug logging * enable passing tests * Created unit tests for ElementConverter and found some issues with OsmSchema::allowsFor() * add more translation tests, disable logging * don't translate timestamp to source:datetime for translation server * Schema changes for geometries (#2740) * Removed geometry from schema that don't describe geometries and updated OsmSchema::allowsFor() code to ignore empty geometries * Updated schema checker and copyright. * Add REST endpoint to describe current session user (#2724) * Add REST endpoint to describe current session user refs #2590 * add method for retrieving currently authenticated user * cleanup other user URIs * Add REST endpoint to describe current session user refs #2590 * simplify user serialization * make some URIs Content-Type aware for xml/json serialization * /user/<id> * /user/name/<name> * add deprecated annoation to getSaveUser * adjust use resource testing http status codes * copyright * Add REST endpoint to describe current session user refs #2590 * make OSM_API_DB public * fix bug that caused intermittent UI test failures * update auth proxy http parser to fix error HPE_UNEXPECTED_CONTENT_LENGTH * request/request#2761 * https://github.com/creationix/http-parser-js * Remove renderdb creation and node-mapnik-server refs #2700 * update ui-test dom qualifier * remove inadvertent addition * advance hoot-ui commit hash * Add REST endpoint to describe current session user refs #2590 * advance hoot-ui commit hash * randomize test user's user_id to prevent possible conflicts with widely used -1 * Submodule hoot-ui a687db8...100a980 (commits not present) * Update VAGRANT.md * Add node conversion to GeometryConverter to fix cropping crash (#2738) * Add string comps and val aggs to info command (#2737) * add string comparison and value aggregator class descriptions to the info command * add manual match count to score-matches output (#2739) * Removed more schema geometries from non-geometric tags * Update copyright
- Loading branch information
1 parent
74a0194
commit bd1b0bb
Showing
41 changed files
with
1,095 additions
and
657 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,8 @@ | ||
[ | ||
{ | ||
"dataType": "text", | ||
"geometries": [ | ||
"node", | ||
"way", | ||
"relation" | ||
], | ||
"influence": 1, | ||
"name": "REF1", | ||
"objectType": "tag" | ||
} | ||
] | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,8 @@ | ||
[ | ||
{ | ||
"dataType": "text", | ||
"geometries": [ | ||
"node", | ||
"way", | ||
"relation" | ||
], | ||
"influence": 1, | ||
"name": "REF2", | ||
"objectType": "tag" | ||
} | ||
] | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
[ | ||
{ | ||
"dataType": "text", | ||
"geometries": [ | ||
"node", | ||
"way", | ||
"relation" | ||
], | ||
"name": "colour", | ||
"objectType": "tag" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
[ | ||
{ | ||
"dataType": "real", | ||
"geometries": [ | ||
"node", | ||
"way", | ||
"relation" | ||
], | ||
"name": "ele", | ||
"objectType": "tag" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
[ | ||
{ | ||
"dataType": "text", | ||
"geometries": [ | ||
"node", | ||
"way", | ||
"relation" | ||
], | ||
"name": "email", | ||
"objectType": "tag" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
[ | ||
{ | ||
"dataType": "real", | ||
"geometries": [ | ||
"node", | ||
"way", | ||
"relation" | ||
], | ||
"name": "gauge", | ||
"objectType": "tag" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
[ | ||
{ | ||
"dataType": "real", | ||
"geometries": [ | ||
"node", | ||
"way", | ||
"relation" | ||
], | ||
"name": "height", | ||
"objectType": "tag" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
[ | ||
{ | ||
"dataType": "int", | ||
"geometries": [ | ||
"node", | ||
"way", | ||
"relation" | ||
], | ||
"name": "lanes", | ||
"objectType": "tag" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
[ | ||
{ | ||
"dataType": "real", | ||
"geometries": [ | ||
"node", | ||
"way", | ||
"relation" | ||
], | ||
"name": "maxspeed", | ||
"objectType": "tag" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
[ | ||
{ | ||
"dataType": "text", | ||
"geometries": [ | ||
"node", | ||
"way" | ||
], | ||
"name": "opening_hours", | ||
"objectType": "tag" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
[ | ||
{ | ||
"dataType": "text", | ||
"geometries": [ | ||
"node", | ||
"way", | ||
"relation" | ||
], | ||
"name": "url", | ||
"objectType": "tag" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
[ | ||
{ | ||
"dataType": "text", | ||
"geometries": [ | ||
"node", | ||
"way", | ||
"relation" | ||
], | ||
"name": "website", | ||
"objectType": "tag" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
[ | ||
{ | ||
"dataType": "real", | ||
"geometries": [ | ||
"node", | ||
"way", | ||
"relation" | ||
], | ||
"name": "width", | ||
"objectType": "tag" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.