├── .github └── dependabot.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── Services ├── OpenStreetMap.php └── OpenStreetMap │ ├── API │ └── V06.php │ ├── Changeset.php │ ├── Changesets.php │ ├── Comment.php │ ├── Comments.php │ ├── Config.php │ ├── Criterion.php │ ├── Exception.php │ ├── Helper │ ├── Capabilities.php │ ├── OAuth.php │ └── Xml.php │ ├── InvalidArgumentException.php │ ├── InvalidLanguageException.php │ ├── Node.php │ ├── Nodes.php │ ├── Nominatim.php │ ├── Note.php │ ├── Notes.php │ ├── Object.php │ ├── Objects.php │ ├── OpeningHours.php │ ├── OpeningHours.php.new │ ├── Passwordfile.php │ ├── Relation.php │ ├── Relations.php │ ├── RuntimeException.php │ ├── Transport.php │ ├── Transport │ ├── HTTP.php │ └── HTTPCached.php │ ├── User.php │ ├── Validator │ ├── Changeset.php │ ├── ConfigValue.php │ └── Language.php │ ├── Way.php │ └── Ways.php ├── composer.json ├── composer.lock ├── documentation └── USAGE.md ├── examples ├── _osm.osm ├── ballinacurragardens.osm ├── cahir.osm ├── credentials.dist ├── example10_user_info.php ├── example11_checkstatus.php ├── example12_notes.php ├── example13_reversegeocode.php ├── example14_user_info_extended.php ├── example15_search_with_wildcard.php ├── example1_cahir.php ├── example1_savetolocalfile.php ├── example2_loadandparselocaldata.php ├── example3_genericdemo.php ├── example4_getchangeset.php ├── example5_history.php ├── example6_closedway.php ├── example7_searchchangeset.php ├── example8.php ├── example9_add_tags.php ├── example9_add_tags_altered.php ├── fix_name.php ├── fix_typo.php ├── getandsaverelation.php ├── homelands.osm ├── osm.o.osm ├── osm.osm ├── p1.osm ├── pinevalley.osm ├── relation.1707362.xml ├── sv.php └── www │ ├── index.html │ ├── jquery-1.8.2.js │ ├── map.osm │ ├── osm.osm │ └── searchNear.php ├── package.php ├── package.xml ├── rector.php └── tests ├── .gitignore ├── AllTests.php ├── ChangesetTest.php ├── ConfigTest.php ├── CriterionTest.php ├── LanguageValidatorTest.php ├── MapquestReverseGeocodeTest.php ├── NodeTest.php ├── NominatimTest.php ├── NotesTest.php ├── OSMTest.php ├── OpeningHoursTest.php ├── OpeningHoursWithCommentTest.php ├── PearBug20205Test.php ├── PermissionsTest.php ├── RelationTest.php ├── RemoveTagsTest.php ├── TagsWithSameValueTest.php ├── UserTest.php ├── WayFullTest.php ├── WayTest.php ├── credentials.dist ├── files ├── osm.osm ├── pwd_1line ├── pwd_empty └── pwd_multi ├── phpunit.xml └── responses ├── 400 ├── 401 ├── 404 ├── 410 ├── 500 ├── PEARBug20205_moskau_en.xml ├── PEARBug20205_moskau_ru.xml ├── PEARBug20205_russia_en.xml ├── PEARBug20205_russia_fr.xml ├── area.xml ├── capabilities.xml ├── capabilities2.xml ├── capabilitiesNoStatus.xml ├── capabilities_invalid.xml ├── capabilities_jxapi.xml ├── capabilities_max.xml ├── capabilities_min.xml ├── changeset.xml ├── changeset_closed ├── changeset_id ├── changeset_search_timespan.xml ├── changesets_11324.xml ├── diff_1436433375_deleted.xml ├── diff_30357328_30357329.xml ├── diff_create_node.xml ├── get_notes.xml ├── mapquestReverseGeocodeChurchtown.xml ├── mapquestReverseGeocodeIrishTimes.xml ├── node.osm ├── node.xml ├── node_1436433375.xml ├── node_248081837.xml ├── node_597697114.xml ├── node_621953926.xml ├── node_621953928.xml ├── node_621953939_history.xml ├── node_history.xml ├── nodes_621953926_621953928_621953939.xml ├── nominatim_reverse_it.xml ├── nominatim_search_20205_1.xml ├── nominatim_search_20205_2.xml ├── nominatim_search_limerick.xml ├── nominatim_search_neeenaaa.xml ├── permissions.xml ├── permissionsUnauthorised.xml ├── relation.xml ├── relation_405053.xml ├── relation_changeset.xml ├── relations_917266_20645_2740.xml ├── search.html ├── search.json ├── search_ga.json ├── searchwaddrressdetailsnotset.json ├── searchwaddrressdetailsset.json ├── searchwaddrressdetailssoff.json ├── user.xml ├── user11324.xml ├── user_home_set.xml ├── user_no_image.xml ├── user_preferences.xml ├── way.xml ├── way_23010474.xml ├── way_30357328.xml ├── way_30357328_30357329.xml ├── way_30357329.xml ├── way_5850969.xml ├── way_5850969_relations.xml ├── way_75490756.xml ├── way_closed.xml ├── way_one_node.xml └── way_open.xml /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/README.md -------------------------------------------------------------------------------- /Services/OpenStreetMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/API/V06.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/API/V06.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Changeset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Changeset.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Changesets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Changesets.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Comment.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Comments.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Config.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Criterion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Criterion.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Exception.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Helper/Capabilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Helper/Capabilities.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Helper/OAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Helper/OAuth.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Helper/Xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Helper/Xml.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/InvalidArgumentException.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/InvalidLanguageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/InvalidLanguageException.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Node.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Nodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Nodes.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Nominatim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Nominatim.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Note.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Note.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Notes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Notes.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Object.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Objects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Objects.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/OpeningHours.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/OpeningHours.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/OpeningHours.php.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/OpeningHours.php.new -------------------------------------------------------------------------------- /Services/OpenStreetMap/Passwordfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Passwordfile.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Relation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Relation.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Relations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Relations.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/RuntimeException.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Transport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Transport.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Transport/HTTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Transport/HTTP.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Transport/HTTPCached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Transport/HTTPCached.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/User.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Validator/Changeset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Validator/Changeset.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Validator/ConfigValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Validator/ConfigValue.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Validator/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Validator/Language.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Way.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Way.php -------------------------------------------------------------------------------- /Services/OpenStreetMap/Ways.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/Services/OpenStreetMap/Ways.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/composer.lock -------------------------------------------------------------------------------- /documentation/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/documentation/USAGE.md -------------------------------------------------------------------------------- /examples/_osm.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/_osm.osm -------------------------------------------------------------------------------- /examples/ballinacurragardens.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/ballinacurragardens.osm -------------------------------------------------------------------------------- /examples/cahir.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/cahir.osm -------------------------------------------------------------------------------- /examples/credentials.dist: -------------------------------------------------------------------------------- 1 | #user:password 2 | fred@example.com:wilma4ever 3 | -------------------------------------------------------------------------------- /examples/example10_user_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/example10_user_info.php -------------------------------------------------------------------------------- /examples/example11_checkstatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/example11_checkstatus.php -------------------------------------------------------------------------------- /examples/example12_notes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/example12_notes.php -------------------------------------------------------------------------------- /examples/example13_reversegeocode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/example13_reversegeocode.php -------------------------------------------------------------------------------- /examples/example14_user_info_extended.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/example14_user_info_extended.php -------------------------------------------------------------------------------- /examples/example15_search_with_wildcard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/example15_search_with_wildcard.php -------------------------------------------------------------------------------- /examples/example1_cahir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/example1_cahir.php -------------------------------------------------------------------------------- /examples/example1_savetolocalfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/example1_savetolocalfile.php -------------------------------------------------------------------------------- /examples/example2_loadandparselocaldata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/example2_loadandparselocaldata.php -------------------------------------------------------------------------------- /examples/example3_genericdemo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/example3_genericdemo.php -------------------------------------------------------------------------------- /examples/example4_getchangeset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/example4_getchangeset.php -------------------------------------------------------------------------------- /examples/example5_history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/example5_history.php -------------------------------------------------------------------------------- /examples/example6_closedway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/example6_closedway.php -------------------------------------------------------------------------------- /examples/example7_searchchangeset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/example7_searchchangeset.php -------------------------------------------------------------------------------- /examples/example8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/example8.php -------------------------------------------------------------------------------- /examples/example9_add_tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/example9_add_tags.php -------------------------------------------------------------------------------- /examples/example9_add_tags_altered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/example9_add_tags_altered.php -------------------------------------------------------------------------------- /examples/fix_name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/fix_name.php -------------------------------------------------------------------------------- /examples/fix_typo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/fix_typo.php -------------------------------------------------------------------------------- /examples/getandsaverelation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/getandsaverelation.php -------------------------------------------------------------------------------- /examples/homelands.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/homelands.osm -------------------------------------------------------------------------------- /examples/osm.o.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/osm.o.osm -------------------------------------------------------------------------------- /examples/osm.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/osm.osm -------------------------------------------------------------------------------- /examples/p1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/p1.osm -------------------------------------------------------------------------------- /examples/pinevalley.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/pinevalley.osm -------------------------------------------------------------------------------- /examples/relation.1707362.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/relation.1707362.xml -------------------------------------------------------------------------------- /examples/sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/sv.php -------------------------------------------------------------------------------- /examples/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/www/index.html -------------------------------------------------------------------------------- /examples/www/jquery-1.8.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/www/jquery-1.8.2.js -------------------------------------------------------------------------------- /examples/www/map.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/www/map.osm -------------------------------------------------------------------------------- /examples/www/osm.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/www/osm.osm -------------------------------------------------------------------------------- /examples/www/searchNear.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/examples/www/searchNear.php -------------------------------------------------------------------------------- /package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/package.php -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/package.xml -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/rector.php -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | credentials 2 | -------------------------------------------------------------------------------- /tests/AllTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/AllTests.php -------------------------------------------------------------------------------- /tests/ChangesetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/ChangesetTest.php -------------------------------------------------------------------------------- /tests/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/ConfigTest.php -------------------------------------------------------------------------------- /tests/CriterionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/CriterionTest.php -------------------------------------------------------------------------------- /tests/LanguageValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/LanguageValidatorTest.php -------------------------------------------------------------------------------- /tests/MapquestReverseGeocodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/MapquestReverseGeocodeTest.php -------------------------------------------------------------------------------- /tests/NodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/NodeTest.php -------------------------------------------------------------------------------- /tests/NominatimTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/NominatimTest.php -------------------------------------------------------------------------------- /tests/NotesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/NotesTest.php -------------------------------------------------------------------------------- /tests/OSMTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/OSMTest.php -------------------------------------------------------------------------------- /tests/OpeningHoursTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/OpeningHoursTest.php -------------------------------------------------------------------------------- /tests/OpeningHoursWithCommentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/OpeningHoursWithCommentTest.php -------------------------------------------------------------------------------- /tests/PearBug20205Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/PearBug20205Test.php -------------------------------------------------------------------------------- /tests/PermissionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/PermissionsTest.php -------------------------------------------------------------------------------- /tests/RelationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/RelationTest.php -------------------------------------------------------------------------------- /tests/RemoveTagsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/RemoveTagsTest.php -------------------------------------------------------------------------------- /tests/TagsWithSameValueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/TagsWithSameValueTest.php -------------------------------------------------------------------------------- /tests/UserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/UserTest.php -------------------------------------------------------------------------------- /tests/WayFullTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/WayFullTest.php -------------------------------------------------------------------------------- /tests/WayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/WayTest.php -------------------------------------------------------------------------------- /tests/credentials.dist: -------------------------------------------------------------------------------- 1 | #user:password 2 | fred@example.com:wilma4ever 3 | -------------------------------------------------------------------------------- /tests/files/osm.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/files/osm.osm -------------------------------------------------------------------------------- /tests/files/pwd_1line: -------------------------------------------------------------------------------- 1 | fred@example.com:Wilma4evah 2 | -------------------------------------------------------------------------------- /tests/files/pwd_empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/pwd_multi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/files/pwd_multi -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/phpunit.xml -------------------------------------------------------------------------------- /tests/responses/400: -------------------------------------------------------------------------------- 1 | HTTP/1.1 400 Bad request 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/responses/401: -------------------------------------------------------------------------------- 1 | HTTP/1.1 401 Unauthorized 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/responses/404: -------------------------------------------------------------------------------- 1 | HTTP/1.1 404 Not found 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/responses/410: -------------------------------------------------------------------------------- 1 | HTTP/1.1 410 Gone 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/responses/500: -------------------------------------------------------------------------------- 1 | HTTP/1.1 500 Internal Server Error 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/responses/PEARBug20205_moskau_en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/PEARBug20205_moskau_en.xml -------------------------------------------------------------------------------- /tests/responses/PEARBug20205_moskau_ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/PEARBug20205_moskau_ru.xml -------------------------------------------------------------------------------- /tests/responses/PEARBug20205_russia_en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/PEARBug20205_russia_en.xml -------------------------------------------------------------------------------- /tests/responses/PEARBug20205_russia_fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/PEARBug20205_russia_fr.xml -------------------------------------------------------------------------------- /tests/responses/area.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/area.xml -------------------------------------------------------------------------------- /tests/responses/capabilities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/capabilities.xml -------------------------------------------------------------------------------- /tests/responses/capabilities2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/capabilities2.xml -------------------------------------------------------------------------------- /tests/responses/capabilitiesNoStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/capabilitiesNoStatus.xml -------------------------------------------------------------------------------- /tests/responses/capabilities_invalid.xml: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | 3 | -------------------------------------------------------------------------------- /tests/responses/capabilities_jxapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/capabilities_jxapi.xml -------------------------------------------------------------------------------- /tests/responses/capabilities_max.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/capabilities_max.xml -------------------------------------------------------------------------------- /tests/responses/capabilities_min.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/capabilities_min.xml -------------------------------------------------------------------------------- /tests/responses/changeset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/changeset.xml -------------------------------------------------------------------------------- /tests/responses/changeset_closed: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/responses/changeset_id: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | 3 | 56788 4 | -------------------------------------------------------------------------------- /tests/responses/changeset_search_timespan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/changeset_search_timespan.xml -------------------------------------------------------------------------------- /tests/responses/changesets_11324.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/changesets_11324.xml -------------------------------------------------------------------------------- /tests/responses/diff_1436433375_deleted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/diff_1436433375_deleted.xml -------------------------------------------------------------------------------- /tests/responses/diff_30357328_30357329.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/diff_30357328_30357329.xml -------------------------------------------------------------------------------- /tests/responses/diff_create_node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/diff_create_node.xml -------------------------------------------------------------------------------- /tests/responses/get_notes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/get_notes.xml -------------------------------------------------------------------------------- /tests/responses/mapquestReverseGeocodeChurchtown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/mapquestReverseGeocodeChurchtown.xml -------------------------------------------------------------------------------- /tests/responses/mapquestReverseGeocodeIrishTimes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/mapquestReverseGeocodeIrishTimes.xml -------------------------------------------------------------------------------- /tests/responses/node.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/node.osm -------------------------------------------------------------------------------- /tests/responses/node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/node.xml -------------------------------------------------------------------------------- /tests/responses/node_1436433375.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/node_1436433375.xml -------------------------------------------------------------------------------- /tests/responses/node_248081837.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/node_248081837.xml -------------------------------------------------------------------------------- /tests/responses/node_597697114.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/node_597697114.xml -------------------------------------------------------------------------------- /tests/responses/node_621953926.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/node_621953926.xml -------------------------------------------------------------------------------- /tests/responses/node_621953928.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/node_621953928.xml -------------------------------------------------------------------------------- /tests/responses/node_621953939_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/node_621953939_history.xml -------------------------------------------------------------------------------- /tests/responses/node_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/node_history.xml -------------------------------------------------------------------------------- /tests/responses/nodes_621953926_621953928_621953939.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/nodes_621953926_621953928_621953939.xml -------------------------------------------------------------------------------- /tests/responses/nominatim_reverse_it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/nominatim_reverse_it.xml -------------------------------------------------------------------------------- /tests/responses/nominatim_search_20205_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/nominatim_search_20205_1.xml -------------------------------------------------------------------------------- /tests/responses/nominatim_search_20205_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/nominatim_search_20205_2.xml -------------------------------------------------------------------------------- /tests/responses/nominatim_search_limerick.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/nominatim_search_limerick.xml -------------------------------------------------------------------------------- /tests/responses/nominatim_search_neeenaaa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/nominatim_search_neeenaaa.xml -------------------------------------------------------------------------------- /tests/responses/permissions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/permissions.xml -------------------------------------------------------------------------------- /tests/responses/permissionsUnauthorised.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/permissionsUnauthorised.xml -------------------------------------------------------------------------------- /tests/responses/relation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/relation.xml -------------------------------------------------------------------------------- /tests/responses/relation_405053.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/relation_405053.xml -------------------------------------------------------------------------------- /tests/responses/relation_changeset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/relation_changeset.xml -------------------------------------------------------------------------------- /tests/responses/relations_917266_20645_2740.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/relations_917266_20645_2740.xml -------------------------------------------------------------------------------- /tests/responses/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/search.html -------------------------------------------------------------------------------- /tests/responses/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/search.json -------------------------------------------------------------------------------- /tests/responses/search_ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/search_ga.json -------------------------------------------------------------------------------- /tests/responses/searchwaddrressdetailsnotset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/searchwaddrressdetailsnotset.json -------------------------------------------------------------------------------- /tests/responses/searchwaddrressdetailsset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/searchwaddrressdetailsset.json -------------------------------------------------------------------------------- /tests/responses/searchwaddrressdetailssoff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/searchwaddrressdetailssoff.json -------------------------------------------------------------------------------- /tests/responses/user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/user.xml -------------------------------------------------------------------------------- /tests/responses/user11324.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/user11324.xml -------------------------------------------------------------------------------- /tests/responses/user_home_set.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/user_home_set.xml -------------------------------------------------------------------------------- /tests/responses/user_no_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/user_no_image.xml -------------------------------------------------------------------------------- /tests/responses/user_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/user_preferences.xml -------------------------------------------------------------------------------- /tests/responses/way.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/way.xml -------------------------------------------------------------------------------- /tests/responses/way_23010474.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/way_23010474.xml -------------------------------------------------------------------------------- /tests/responses/way_30357328.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/way_30357328.xml -------------------------------------------------------------------------------- /tests/responses/way_30357328_30357329.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/way_30357328_30357329.xml -------------------------------------------------------------------------------- /tests/responses/way_30357329.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/way_30357329.xml -------------------------------------------------------------------------------- /tests/responses/way_5850969.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/way_5850969.xml -------------------------------------------------------------------------------- /tests/responses/way_5850969_relations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/way_5850969_relations.xml -------------------------------------------------------------------------------- /tests/responses/way_75490756.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/way_75490756.xml -------------------------------------------------------------------------------- /tests/responses/way_closed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/way_closed.xml -------------------------------------------------------------------------------- /tests/responses/way_one_node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/way_one_node.xml -------------------------------------------------------------------------------- /tests/responses/way_open.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Services_Openstreetmap/HEAD/tests/responses/way_open.xml --------------------------------------------------------------------------------