├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── ISSUE.md │ └── config.yml └── workflows │ ├── boundary.yaml │ ├── ci.yaml │ └── poly.yaml ├── .gitignore ├── CONTRIBUTING.md ├── INSTALL.md ├── LICENSE ├── README.md ├── analysers ├── Analyser.py ├── Analyser_Merge.py ├── Analyser_Merge_Dynamic.py ├── Analyser_Merge_Geocode_Addok_CSV.py ├── Analyser_Merge_Geocode_FR_City_CSV.py ├── Analyser_Merge_Network.py ├── Analyser_Merge_power_pole_FR_gracethd2.py ├── Analyser_Merge_power_pole_FR_gracethd3.py ├── Analyser_Merge_street_lamp_FR_eclext.py ├── Analyser_Osmosis.py ├── __init__.py ├── analyser_merge_advertising_board_FR_brest.py ├── analyser_merge_bicycle_parking_ES_madrid.py ├── analyser_merge_bicycle_parking_FR_brest.py ├── analyser_merge_bicycle_parking_FR_lyon.py ├── analyser_merge_bicycle_parking_FR_niort.py ├── analyser_merge_bicycle_parking_FR_paris.py ├── analyser_merge_bicycle_parking_FR_strasbourg.py ├── analyser_merge_bicycle_rental_FR_IDF.py ├── analyser_merge_bicycle_rental_FR_bm.py ├── analyser_merge_bridge_ES.py ├── analyser_merge_carpool_FR.py ├── analyser_merge_cemetery_FR.py ├── analyser_merge_charging_station_FR.py ├── analyser_merge_college_FR.py ├── analyser_merge_cycle_parking_FR_bm.py ├── analyser_merge_defibrillators_FR.py ├── analyser_merge_defibrillators_FR_aedmap.py ├── analyser_merge_defibrillators_FR_hautesalpes.py ├── analyser_merge_defibrillators_FR_issylesmoulineaux.py ├── analyser_merge_defibrillators_FR_lorient.py ├── analyser_merge_defibrillators_FR_paris.py ├── analyser_merge_defibrillators_FR_saintmalo.py ├── analyser_merge_defibrillators_FR_toulouse.py ├── analyser_merge_emergency_points_LU.py ├── analyser_merge_forest_compartment_FR.py ├── analyser_merge_fuel_FR.py ├── analyser_merge_fuel_IT.py ├── analyser_merge_geodesie.py ├── analyser_merge_geodesie_support_FR.py ├── analyser_merge_healthcare_FR_finess.py ├── analyser_merge_heritage_FR_merimee.py ├── analyser_merge_hydrants_FR.py ├── analyser_merge_hydrants_FR_SDIS_21.py ├── analyser_merge_hydrants_FR_SDIS_39.py ├── analyser_merge_hydrants_FR_SDIS_71.py ├── analyser_merge_library_FR_aquitaine.py ├── analyser_merge_man_made_FR.py ├── analyser_merge_milestone_FR.py ├── analyser_merge_museum_FR.py ├── analyser_merge_natural_FR.py ├── analyser_merge_parapharmacy_IT.py ├── analyser_merge_parking_FR_BNLS.py ├── analyser_merge_parking_FR_IDF.py ├── analyser_merge_parking_FR_bm.py ├── analyser_merge_pharmacy_IT.py ├── analyser_merge_pitch_FR.py ├── analyser_merge_poi_FR.py ├── analyser_merge_police_FR_gn.py ├── analyser_merge_police_FR_pn.py ├── analyser_merge_post_box_FR.py ├── analyser_merge_postal_code_FR.py ├── analyser_merge_poste_FR.py ├── analyser_merge_power_branch_FR.py ├── analyser_merge_power_line_FR.py ├── analyser_merge_power_plant_FR.py ├── analyser_merge_power_pole_FR_gracethd2_vendee.py ├── analyser_merge_power_pole_FR_gracethd3_bretagne.py ├── analyser_merge_power_pole_FR_gracethd3_dordogne.py ├── analyser_merge_power_pole_FR_gracethd3_jura.py ├── analyser_merge_power_pole_FR_spec_enedis.py ├── analyser_merge_power_pole_FR_spec_fibre5962.py ├── analyser_merge_power_pole_FR_spec_sde18.py ├── analyser_merge_power_pole_FR_spec_sdey.py ├── analyser_merge_power_substation_FR.py ├── analyser_merge_power_substation_minor_FR.py ├── analyser_merge_power_tower_FR.py ├── analyser_merge_public_equipment_FR_angers_toilets.py ├── analyser_merge_public_equipment_FR_bordeaux_toilets.py ├── analyser_merge_public_equipment_FR_lehavre_toilets.py ├── analyser_merge_public_equipment_FR_lyon_toilets.py ├── analyser_merge_public_equipment_FR_montpellier_toilets.py ├── analyser_merge_public_equipment_FR_nantes_toilets.py ├── analyser_merge_public_equipment_FR_rennes_toilets.py ├── analyser_merge_public_equipment_FR_toulouse_toilets.py ├── analyser_merge_public_services_FR.py ├── analyser_merge_public_transport_FR_bibus.py ├── analyser_merge_public_transport_FR_idfm.py ├── analyser_merge_public_transport_FR_rla.py ├── analyser_merge_public_transport_FR_sibra.py ├── analyser_merge_public_transport_FR_stan.py ├── analyser_merge_public_transport_FR_star.py ├── analyser_merge_public_transport_FR_tbm.py ├── analyser_merge_public_transport_FR_transgironde.py ├── analyser_merge_public_transport_FR_zestbus.py ├── analyser_merge_radio_support_FR.py ├── analyser_merge_railway_level_crossing_FR.py ├── analyser_merge_railway_railstation_FR.py ├── analyser_merge_recycling_FR_ampm.py ├── analyser_merge_recycling_FR_bm.py ├── analyser_merge_recycling_FR_csma.py ├── analyser_merge_recycling_FR_nm_glass.py ├── analyser_merge_recycling_FR_sitcom40.py ├── analyser_merge_reservoir_FR.py ├── analyser_merge_restriction_FR_92.py ├── analyser_merge_restriction_motorway_FR.py ├── analyser_merge_road_ES.py ├── analyser_merge_road_FR.py ├── analyser_merge_school_FR.py ├── analyser_merge_shop_FR.py ├── analyser_merge_sport_FR_aquitaine_equestrian.py ├── analyser_merge_street_lamp_FR_haute-savoie_syane.py ├── analyser_merge_street_objects.py ├── analyser_merge_tourism_FR.py ├── analyser_merge_tourism_FR_aquitaine_camp_caravan.py ├── analyser_merge_tourism_FR_aquitaine_museum.py ├── analyser_merge_traffic_signs.py ├── analyser_merge_waste_disposal_FR_csma.py ├── analyser_merge_wastewater_plant_FR.py ├── analyser_merge_water_FR.py ├── analyser_merge_water_drinking_ES_madrid.py ├── analyser_merge_winery_FR_aquitaine.py ├── analyser_osmosis_addr_interpolation.py ├── analyser_osmosis_boundary_administrative.py ├── analyser_osmosis_boundary_hole.py ├── analyser_osmosis_boundary_intersect.py ├── analyser_osmosis_boundary_relation.py ├── analyser_osmosis_building_geodesie_FR.py ├── analyser_osmosis_building_in_polygon.py ├── analyser_osmosis_building_overlaps.py ├── analyser_osmosis_building_shapes.py ├── analyser_osmosis_camp_pitch_out_of_camp_site.py ├── analyser_osmosis_cycleway_track.py ├── analyser_osmosis_double_tagging.py ├── analyser_osmosis_duplicated_geotag.py ├── analyser_osmosis_fantoir.py ├── analyser_osmosis_highway_almost_junction.py ├── analyser_osmosis_highway_area_access.py ├── analyser_osmosis_highway_bad_intersection.py ├── analyser_osmosis_highway_broken_level_continuity.py ├── analyser_osmosis_highway_cul-de-sac_level.py ├── analyser_osmosis_highway_deadend.py ├── analyser_osmosis_highway_features.py ├── analyser_osmosis_highway_floating_islands.py ├── analyser_osmosis_highway_link.py ├── analyser_osmosis_highway_long_crossing.py ├── analyser_osmosis_highway_motorway.py ├── analyser_osmosis_highway_name_close.py ├── analyser_osmosis_highway_noexit.py ├── analyser_osmosis_highway_traffic_signals.py ├── analyser_osmosis_highway_tunnel_bridge.py ├── analyser_osmosis_highway_turn_lanes.py ├── analyser_osmosis_highway_vs_building.py ├── analyser_osmosis_highway_without_ref.py ├── analyser_osmosis_highway_zone.py ├── analyser_osmosis_indoor.py ├── analyser_osmosis_natural_swimming-pool.py ├── analyser_osmosis_node_like_way.py ├── analyser_osmosis_orphan_nodes_cluster.py ├── analyser_osmosis_parking_highway.py ├── analyser_osmosis_polygon.py ├── analyser_osmosis_polygon_intersects.py ├── analyser_osmosis_polygon_overlaps.py ├── analyser_osmosis_polygon_small.py ├── analyser_osmosis_powerline.py ├── analyser_osmosis_relation_associatedStreet.py ├── analyser_osmosis_relation_cyclic.py ├── analyser_osmosis_relation_duplicate_member.py ├── analyser_osmosis_relation_enforcement.py ├── analyser_osmosis_relation_large.py ├── analyser_osmosis_relation_multipolygon.py ├── analyser_osmosis_relation_open.py ├── analyser_osmosis_relation_public_transport.py ├── analyser_osmosis_relation_restriction.py ├── analyser_osmosis_relation_route_access.py ├── analyser_osmosis_roundabout.py ├── analyser_osmosis_roundabout_level.py ├── analyser_osmosis_roundabout_reverse.py ├── analyser_osmosis_soundex.py ├── analyser_osmosis_tag_typo.py ├── analyser_osmosis_useless.py ├── analyser_osmosis_water.py ├── analyser_osmosis_waterway.py ├── analyser_osmosis_way_angle.py ├── analyser_osmosis_way_approximate.py ├── analyser_osmosis_wikipedia.py ├── analyser_sax.py ├── contrib │ └── analyse-bano.sh └── disabled │ ├── __init__.py │ ├── analyser_admin_level.py │ ├── analyser_duplicate_node.py │ ├── analyser_gis_boundary_intersect.py │ ├── analyser_gis_building_overlaps.py │ ├── analyser_gis_polygon.py │ ├── analyser_gis_roundabout.py │ ├── analyser_merge_bicycle_parking_FR_bordeaux.py │ ├── analyser_merge_bicycle_parking_FR_capp.py │ ├── analyser_merge_bicycle_rental_FR_capp.py │ ├── analyser_merge_cadastre_FR.py │ ├── analyser_merge_car_rental_FR_paris.py │ ├── analyser_merge_defibrillators_FR_basrhin.py │ ├── analyser_merge_defibrillators_FR_cugnaux.py │ ├── analyser_merge_defibrillators_FR_gers.py │ ├── analyser_merge_defibrillators_FR_montfort.py │ ├── analyser_merge_highway_ref_FR.py │ ├── analyser_merge_hydrant_point_CH_lausanne.py │ ├── analyser_merge_parking_FR_capp.py │ ├── analyser_merge_public_transport_BE_wallonia.py │ ├── analyser_merge_public_transport_FR_cg71.py │ ├── analyser_merge_public_transport_FR_envibus.py │ ├── analyser_merge_public_transport_FR_ratp.py │ ├── analyser_merge_public_transport_FR_rpb.py │ ├── analyser_merge_public_transport_FR_sillages.py │ ├── analyser_merge_public_transport_FR_zou_06.py │ ├── analyser_merge_public_transport_IN_kerala_bus.py │ ├── analyser_merge_recycling_FR_capp_clothes.py │ ├── analyser_merge_recycling_FR_capp_glass.py │ ├── analyser_merge_recycling_FR_sitcom.py │ ├── analyser_merge_restaurant_FR_aquitaine.py │ ├── analyser_merge_restaurant_FR_cg71.py │ ├── analyser_merge_street_number.py │ ├── analyser_merge_street_number_arles.py │ ├── analyser_merge_street_number_bordeaux.py │ ├── analyser_merge_street_number_lyon.py │ ├── analyser_merge_street_number_montpellier.py │ ├── analyser_merge_street_number_nantes.py │ ├── analyser_merge_street_number_rennes.py │ ├── analyser_merge_street_number_toulouse.py │ ├── analyser_merge_street_objects2.py │ ├── analyser_merge_tmc_point_FR.py │ ├── analyser_merge_tourism_FR_aquitaine_information.py │ ├── analyser_merge_wikipedia.py │ ├── analyser_merge_wikipedia_FR.py │ ├── analyser_merge_wikipedia_insee_FR.py │ ├── analyser_osmbin_open_relations.py │ ├── analyser_osmosis_building_3nodes.py │ ├── analyser_osmosis_mini_farm.py │ ├── analyser_osmosis_missing_parent_tag.py │ ├── analyser_osmosis_stats.py │ └── mapillary-street-tags.mapping.json ├── conftest.py ├── cron-launcher ├── dictionaries ├── Lang_fr │ ├── BddCommunes │ ├── BddDepartements │ ├── UpdateBddCommunes │ ├── UpdateBddDepartement │ └── cuisine.csv └── fr │ ├── CorrJessie │ ├── DicoJessie │ ├── ResultCommonWords │ ├── UpdateFromJessie │ └── reaccentue.pz ├── doc ├── 0-Index.md ├── 1-Plugin.ipynb ├── 2-PluginMapCSS.md ├── 2_0-PluginMapCSS-minimal.ipynb ├── 3-SQL-basics.md ├── 3_0-SQL-minimal.ipynb ├── 4-Merge.md └── README.md ├── docker ├── Dockerfile ├── README.md ├── docker-compose-dev.yml ├── docker-compose-frontend.yml ├── docker-compose-readonly.yml ├── docker-compose.yml ├── postgis-init.sh ├── postgres-readonly.sh ├── public-jupyter.sh └── work │ ├── .jupyter │ ├── jupyter_notebook_config.py │ └── migrated │ ├── .local │ └── placeholder ├── launcher ├── local-launcher ├── mapcss ├── MapCSS.g4 ├── MapCSSListenerL.py ├── README.md ├── __init__.py ├── generated │ ├── MapCSS.interp │ ├── MapCSS.tokens │ ├── MapCSSLexer.interp │ ├── MapCSSLexer.py │ ├── MapCSSLexer.tokens │ ├── MapCSSListener.py │ ├── MapCSSParser.py │ └── __init__.py ├── item_map.py ├── mapcss2mapcss.py ├── mapcss2osmose.py ├── mapcss_lib.py ├── mock_rules │ ├── area_neq_no.mapcss │ ├── setting_drivingside_eq_left.mapcss │ ├── setting_drivingside_neq_left.mapcss │ ├── type_eq_multipolygon.mapcss │ └── type_neq_multipolygon.mapcss └── update.py ├── merge_data ├── PAV_CSMA.csv.bz2 ├── address_france_montpellier.csv.bz2 ├── address_france_toulouse.csv.bz2 ├── fuel_FR.rb ├── geodesie.csv.bz2 ├── geodesie_site.csv.bz2 ├── geodesie_support_FR.mapping.csv ├── healthcare_FR_finess.mapping.json ├── mapillary-street-objects.mapping.json ├── mapillary-traffic-signs.mapping.json ├── pitch_FR.mapping.csv ├── restriction_motorway_FR.csv.bz2 ├── shop_FR.mapping.json └── tourism_FR.mapping.json ├── modules ├── DictCursorUnicode.py ├── IssuesFile.py ├── IssuesFileCsv.py ├── IssuesFileGeoJson.py ├── IssuesFileOsmose.py ├── IssuesFile_PolygonFilter.py ├── OsmBin.py ├── OsmGis.py ├── OsmOsis.py ├── OsmOsisManager.py ├── OsmPbf.py ├── OsmPbf_libosmbf.py ├── OsmReader.py ├── OsmSax.py ├── OsmSaxAlea.py ├── OsmState.py ├── OsmoseLog.py ├── OsmoseTranslation.py ├── PointInPolygon.py ├── Polygon.py ├── SourceVersion.py ├── Stablehash.py ├── __init__.py ├── config.py ├── confusables.py ├── confusables_data.py ├── download.py ├── downloader.py ├── interval_tree.py ├── italian_strings.py ├── jupyter.py ├── languages.py ├── lockfile.py ├── mapcss_lib.py ├── osm_pbf_parser │ ├── Makefile │ ├── README.md │ ├── __init__.py │ ├── osm_pbf_parser.cc │ ├── osm_pbf_parser.pyi │ ├── osm_pbf_parser_test.py │ └── osmpbfreader.h ├── py3.py └── reaccentue.py ├── mypy.ini ├── osmconvert ├── Makefile ├── osmconvert └── osmconvert.c ├── osmose_config.py ├── osmose_config_password-example.py ├── osmose_config_password.py ├── osmose_run.py ├── osmosis ├── ActionFromTimestamp.sql ├── ActionsAllCreated.sql ├── CreateFunctions.sql ├── CreateGeometryForWays.sql ├── CreateMergeAnalyserCache.sql ├── CreateMetainfo.sql ├── CreateTagsIndex.sql ├── CreateTouched.sql ├── ImportDatabase_Nodes.sql ├── ImportDatabase_Prepare.sql ├── ImportDatabase_RelationMembers.sql ├── ImportDatabase_Relations.sql ├── ImportDatabase_Users.sql ├── ImportDatabase_WayNodes.sql ├── ImportDatabase_Ways.sql ├── osmosis-0.48.3-36-gada1b6f5-SNAPSHOT │ ├── bin │ │ ├── osmosis │ │ ├── osmosis-extract-apidb-0.6 │ │ ├── osmosis-extract-mysql-0.6 │ │ └── osmosis.bat │ ├── changes.txt │ ├── config │ │ └── plexus.conf │ ├── copying.txt │ ├── lib │ │ └── default │ │ │ ├── checker-qual-3.12.0.jar │ │ │ ├── commons-codec-1.15.jar │ │ │ ├── commons-compress-1.21.jar │ │ │ ├── commons-csv-1.9.0.jar │ │ │ ├── commons-dbcp-1.4.jar │ │ │ ├── commons-io-2.11.0.jar │ │ │ ├── commons-logging-1.0.4.jar │ │ │ ├── commons-pool-1.5.4.jar │ │ │ ├── error_prone_annotations-2.11.0.jar │ │ │ ├── failureaccess-1.0.1.jar │ │ │ ├── guava-31.1-jre.jar │ │ │ ├── j2objc-annotations-1.3.jar │ │ │ ├── jpf-1.5.jar │ │ │ ├── jsr305-3.0.2.jar │ │ │ ├── listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar │ │ │ ├── mysql-connector-java-8.0.29.jar │ │ │ ├── netty-3.10.6.Final.jar │ │ │ ├── osmosis-apidb-0.48.3-36-gada1b6f5-SNAPSHOT.jar │ │ │ ├── osmosis-areafilter-0.48.3-36-gada1b6f5-SNAPSHOT.jar │ │ │ ├── osmosis-core-0.48.3-36-gada1b6f5-SNAPSHOT.jar │ │ │ ├── osmosis-dataset-0.48.3-36-gada1b6f5-SNAPSHOT.jar │ │ │ ├── osmosis-extract-0.48.3-36-gada1b6f5-SNAPSHOT.jar │ │ │ ├── osmosis-hstore-jdbc-0.48.3-36-gada1b6f5-SNAPSHOT.jar │ │ │ ├── osmosis-pbf-0.48.3-36-gada1b6f5-SNAPSHOT.jar │ │ │ ├── osmosis-pbf2-0.48.3-36-gada1b6f5-SNAPSHOT.jar │ │ │ ├── osmosis-pgsimple-0.48.3-36-gada1b6f5-SNAPSHOT.jar │ │ │ ├── osmosis-pgsnapshot-0.48.3-36-gada1b6f5-SNAPSHOT.jar │ │ │ ├── osmosis-replication-0.48.3-36-gada1b6f5-SNAPSHOT.jar │ │ │ ├── osmosis-replication-http-0.48.3-36-gada1b6f5-SNAPSHOT.jar │ │ │ ├── osmosis-set-0.48.3-36-gada1b6f5-SNAPSHOT.jar │ │ │ ├── osmosis-tagfilter-0.48.3-36-gada1b6f5-SNAPSHOT.jar │ │ │ ├── osmosis-tagtransform-0.48.3-36-gada1b6f5-SNAPSHOT.jar │ │ │ ├── osmosis-xml-0.48.3-36-gada1b6f5-SNAPSHOT.jar │ │ │ ├── osmpbf-1.5.0.jar │ │ │ ├── plexus-classworlds-2.6.0.jar │ │ │ ├── postgis-geometry-2021.1.0.jar │ │ │ ├── postgis-jdbc-2021.1.0.jar │ │ │ ├── postgresql-42.3.5.jar │ │ │ ├── protobuf-java-3.20.1.jar │ │ │ ├── slf4j-api-1.7.32.jar │ │ │ ├── spring-beans-5.3.20.jar │ │ │ ├── spring-core-5.3.20.jar │ │ │ ├── spring-jcl-5.3.20.jar │ │ │ ├── spring-jdbc-5.3.20.jar │ │ │ ├── spring-tx-5.3.20.jar │ │ │ ├── stax2-api-4.2.1.jar │ │ │ ├── woodstox-core-6.2.8.jar │ │ │ ├── xercesImpl-2.12.2.jar │ │ │ └── xml-apis-1.4.01.jar │ ├── readme.txt │ └── script │ │ ├── contrib │ │ ├── CreateGeometryForWays.sql │ │ ├── apidb_0.6.sql │ │ ├── apidb_0.6_osmosis_xid_indexing.sql │ │ ├── dump_apidb.sh │ │ └── replicate_osm_file.sh │ │ ├── fix_line_endings.sh │ │ ├── munin │ │ ├── README │ │ ├── osm_replication.conf │ │ └── osm_replication_lag │ │ ├── pgsimple_load_0.6.sql │ │ ├── pgsimple_schema_0.6.sql │ │ ├── pgsimple_schema_0.6_action.sql │ │ ├── pgsimple_schema_0.6_bbox.sql │ │ ├── pgsimple_schema_0.6_linestring.sql │ │ ├── pgsnapshot_and_pgsimple.txt │ │ ├── pgsnapshot_load_0.6.sql │ │ ├── pgsnapshot_schema_0.6.sql │ │ ├── pgsnapshot_schema_0.6_action.sql │ │ ├── pgsnapshot_schema_0.6_bbox.sql │ │ ├── pgsnapshot_schema_0.6_changes.sql │ │ ├── pgsnapshot_schema_0.6_linestring.sql │ │ ├── pgsnapshot_schema_0.6_upgrade_4-5.sql │ │ └── pgsnapshot_schema_0.6_upgrade_5-6.sql ├── pgsimple_schema_0.6_action_drop.sql └── pgsnapshot_schema_0.6.sql ├── plugins ├── Addr_Interpolation.py ├── Administrative_INSEE_Name.py ├── Administrative_TooManyWays.py ├── Bicycle.py ├── Bicycle.validator.mapcss ├── Capacity.py ├── Colour.py ├── Colour.validator.mapcss ├── ConditionalRestrictions.py ├── Construction.py ├── Construction2.py ├── Construction2.validator.mapcss ├── Covid19.py ├── Covid19.validator.mapcss ├── Cuisine_Guess.py ├── Date.py ├── Ele_MontainPass_Peak.py ├── Highway_Lanes.py ├── Highway_Parking_Lane.py ├── Highway_Sides.py ├── Historic_Wayside_cross_without_material.py ├── Josm_Charge.py ├── Josm_DutchSpecific.py ├── Josm_FranceSpecificRules.py ├── Josm_ItalySpecific.py ├── Josm_Rules_Brazilian_Specific.py ├── Josm_Seamark.py ├── Josm_SuspiciousSwimming_Pool.py ├── Josm_addresses.py ├── Josm_combinations.py ├── Josm_de_openrailwaymap.py ├── Josm_deprecated.py ├── Josm_geometry.py ├── Josm_highway.py ├── Josm_multiple.py ├── Josm_numeric.py ├── Josm_openrailwaymap.py ├── Josm_relation.py ├── Josm_religion.py ├── Josm_ru_housenumber.py ├── Josm_territories.py ├── Josm_transport.py ├── Josm_unnecessary.py ├── Josm_wikipedia.py ├── Name_Cadastre_FR.py ├── Name_Cadastre_FR.validator.mapcss ├── Name_Dictionary.py ├── Name_Dictionary_Lang_fr.py ├── Name_Dictionary_Lang_xx.py ├── Name_Initials.py ├── Name_Local.py ├── Name_Local_JP.py ├── Name_MisspelledWordByRegex.py ├── Name_MisspelledWordByRegex_Lang_es.py ├── Name_MisspelledWordByRegex_Lang_fa.py ├── Name_MisspelledWordByRegex_Lang_fa.validator.mapcss ├── Name_MisspelledWordByRegex_Lang_fr.py ├── Name_Multilingual.py ├── Name_Multiple.py ├── Name_PoorlyWrittenWayType.py ├── Name_PoorlyWrittenWayType_Lang_ca.py ├── Name_PoorlyWrittenWayType_Lang_es.py ├── Name_PoorlyWrittenWayType_Lang_fr.py ├── Name_Punctuation.py ├── Name_Quotation.py ├── Name_Saint_FR.py ├── Name_Script.py ├── Name_ShouldBeHousenumber.py ├── Name_Spaces.py ├── Name_Toponymy_FR.py ├── Name_UpperCase.py ├── Name_UpperCaseNumber.py ├── Number.py ├── Phone.py ├── Phone2.py ├── Phone2.validator.mapcss ├── Plugin.py ├── PluginMapCSS.py ├── Power.py ├── Power.validator.mapcss ├── Source.py ├── Source_FR.py ├── Structural.py ├── Structural.validator.mapcss ├── Structural_DuplicateNodes.py ├── Structural_Multipolygon.py ├── Structural_Useless_Relation.py ├── Structural_Waterway.py ├── Structural_WayOneNode.py ├── TagFix_Access.py ├── TagFix_Area.py ├── TagFix_BadKey.py ├── TagFix_BadValue.py ├── TagFix_Brand.py ├── TagFix_Deprecated.py ├── TagFix_Destination.py ├── TagFix_Destination.validator.mapcss ├── TagFix_DuplicateValue.py ├── TagFix_Housenumber.py ├── TagFix_IntervalConditional.py ├── TagFix_Maxspeed.py ├── TagFix_Maxspeed_AT.py ├── TagFix_MultipleTag.py ├── TagFix_MultipleTag2.py ├── TagFix_MultipleTag2.validator.mapcss ├── TagFix_MultipleTag_FR.py ├── TagFix_MultipleTag_Lang_es.py ├── TagFix_MultipleTag_Lang_fr.py ├── TagFix_MultipleValue.py ├── TagFix_Note_Lang_fr.py ├── TagFix_Opening_Hours.py ├── TagFix_Pharmacy.py ├── TagFix_Postcode.py ├── TagFix_Role.py ├── TagFix_Tree.py ├── TagFix_Tree_Lang_fr.py ├── TagFix_Vatin.py ├── TagFix_Wikidata.py ├── TagFix_Wikipedia.py ├── TagFix_ZawgyiBurmese.py ├── TagRemove_FR.py ├── TagRemove_Fixme.py ├── TagRemove_Incompatibles.py ├── TagRemove_Layer.py ├── TagRemove_NameIsRef_FR.py ├── TagRemove_Naptan.py ├── TagRemove_OpenSeaMap.py ├── TagRemove_Roundabout.py ├── TagRemove_Roundabout_Ref.py ├── TagWatchFrViPofm.py ├── Website.py ├── __init__.py ├── disabled │ ├── ODbL_migration.py │ ├── Structural_Restriction.py │ ├── Structural_Restriction2.py │ ├── Structural_UnclosedArea.py │ ├── TagFix_Brand.py │ ├── TagMissing_LookLike.py │ └── Wiki.py ├── indoor.py ├── indoor.validator.mapcss ├── modules │ ├── Cuisine_Guess_lib.py │ ├── __init__.py │ ├── name_suggestion_index.py │ ├── units.py │ └── wikiReader.py ├── notprefix.py ├── notprefix.validator.mapcss └── tests │ ├── Josm_deprecated_test.py │ ├── Test_mapcss_item_file.py │ ├── test_mapcss_parsing_evaluation.py │ ├── test_mapcss_parsing_evaluation.validator.mapcss │ └── wikireader_test.py ├── po ├── .tx │ └── config ├── Makefile ├── ar.po ├── ca.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── en_devel.po ├── es.po ├── et.po ├── eu.po ├── fa.po ├── fi.po ├── fr.po ├── gl.po ├── he.po ├── hu.po ├── it.po ├── ja.po ├── josm │ ├── README │ ├── ar.po │ ├── ca.po │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── el.po │ ├── es.po │ ├── eu.po │ ├── fa.po │ ├── fi.po │ ├── fr.po │ ├── gl.po │ ├── he.po │ ├── hu.po │ ├── it.po │ ├── ja.po │ ├── ko.po │ ├── lt.po │ ├── nb_NO.po │ ├── nl.po │ ├── pl.po │ ├── pt.po │ ├── pt_BR.po │ ├── ro.po │ ├── ru.po │ ├── sv.po │ ├── uk.po │ ├── vi.po │ ├── zh_CN.po │ └── zh_TW.po ├── ko.po ├── lt.po ├── nb_NO.po ├── nl.po ├── osmose-backend.pot ├── pl.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── sv.po ├── transport_mapcss │ ├── ar.po │ ├── cs.po │ ├── de.po │ ├── el.po │ ├── es.po │ ├── eu.po │ ├── fa.po │ ├── fr.po │ ├── gl.po │ ├── hu.po │ ├── it.po │ ├── ja.po │ ├── nl.po │ ├── pl.po │ ├── pt_BR.po │ ├── ru.po │ ├── sv.po │ ├── uk.po │ ├── vi.po │ ├── zh_CN.po │ └── zh_TW.po ├── uk.po ├── vi.po ├── zh_CN.po └── zh_TW.po ├── pylama.ini ├── pytest.ini ├── requirements-dev.txt ├── requirements.txt ├── tests ├── gibraltar.osm.pbf ├── osmbin_open_relations.osm ├── osmosis.test.osm ├── osmosis_building_in_polygon.osm ├── osmosis_camp_pitch_outside_site.osm ├── osmosis_double_tagging.osm ├── osmosis_highway_access_barrier.osm ├── osmosis_highway_almost_junction.osm ├── osmosis_highway_deadend.osm ├── osmosis_highway_link.osm ├── osmosis_highway_tunnel_bridge.osm ├── osmosis_highway_vs_building.osm ├── osmosis_noexit.test.osm ├── osmosis_parking_highway.osm ├── osmosis_polygon_intersects.osm ├── osmosis_polygon_small.osm ├── osmosis_powerline.test.osm ├── osmosis_relation_cyclic.osm ├── osmosis_relation_duplicate_member.osm ├── osmosis_roundabout.test.osm ├── osmosis_roundabout_level.osm ├── osmosis_roundabout_reverse.test.osm ├── results │ ├── osmosis_noexit.test.xml │ ├── osmosis_roundabout_reverse.test.left.osm │ ├── osmosis_roundabout_reverse.test.right.osm │ ├── sax.test.FR.xml │ ├── sax.test.Lang_fr.xml │ ├── sax.test.Lang_fr_nl.xml │ ├── sax.test.xml │ ├── sax.test_resume.xml │ ├── sax.test_resume_empty.xml │ └── sax.test_resume_full.xml ├── saint_barthelemy.osc.gz ├── saint_barthelemy.osm.bz2 ├── saint_barthelemy.osm.gz ├── saint_barthelemy.osm.pbf ├── saint_barthelemy.state.txt ├── state1.txt ├── state2.txt └── state3.txt └── tools ├── README.md ├── analyse-log.py ├── check-boundary-polygon.py ├── clean-merge-tables ├── clean-old-jobs ├── confusables.rb ├── docker-entrypoint.sh ├── generate-cover.sh ├── logs-buildbot.py ├── manual_review_merge_pitch_FR.py ├── pyflakes.sh ├── pytest.sh ├── requirements.sh ├── slave_kill_osmose_python.sh └── test-polygons.py /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .mypy_cache 3 | docker/work 4 | venv 5 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ISSUE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/.github/ISSUE_TEMPLATE/ISSUE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | --- 2 | blank_issues_enabled: true 3 | -------------------------------------------------------------------------------- /.github/workflows/boundary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/.github/workflows/boundary.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/poly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/.github/workflows/poly.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/README.md -------------------------------------------------------------------------------- /analysers/Analyser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/Analyser.py -------------------------------------------------------------------------------- /analysers/Analyser_Merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/Analyser_Merge.py -------------------------------------------------------------------------------- /analysers/Analyser_Merge_Dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/Analyser_Merge_Dynamic.py -------------------------------------------------------------------------------- /analysers/Analyser_Merge_Geocode_Addok_CSV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/Analyser_Merge_Geocode_Addok_CSV.py -------------------------------------------------------------------------------- /analysers/Analyser_Merge_Geocode_FR_City_CSV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/Analyser_Merge_Geocode_FR_City_CSV.py -------------------------------------------------------------------------------- /analysers/Analyser_Merge_Network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/Analyser_Merge_Network.py -------------------------------------------------------------------------------- /analysers/Analyser_Merge_power_pole_FR_gracethd2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/Analyser_Merge_power_pole_FR_gracethd2.py -------------------------------------------------------------------------------- /analysers/Analyser_Merge_power_pole_FR_gracethd3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/Analyser_Merge_power_pole_FR_gracethd3.py -------------------------------------------------------------------------------- /analysers/Analyser_Merge_street_lamp_FR_eclext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/Analyser_Merge_street_lamp_FR_eclext.py -------------------------------------------------------------------------------- /analysers/Analyser_Osmosis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/Analyser_Osmosis.py -------------------------------------------------------------------------------- /analysers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysers/analyser_merge_advertising_board_FR_brest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_advertising_board_FR_brest.py -------------------------------------------------------------------------------- /analysers/analyser_merge_bicycle_parking_ES_madrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_bicycle_parking_ES_madrid.py -------------------------------------------------------------------------------- /analysers/analyser_merge_bicycle_parking_FR_brest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_bicycle_parking_FR_brest.py -------------------------------------------------------------------------------- /analysers/analyser_merge_bicycle_parking_FR_lyon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_bicycle_parking_FR_lyon.py -------------------------------------------------------------------------------- /analysers/analyser_merge_bicycle_parking_FR_niort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_bicycle_parking_FR_niort.py -------------------------------------------------------------------------------- /analysers/analyser_merge_bicycle_parking_FR_paris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_bicycle_parking_FR_paris.py -------------------------------------------------------------------------------- /analysers/analyser_merge_bicycle_parking_FR_strasbourg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_bicycle_parking_FR_strasbourg.py -------------------------------------------------------------------------------- /analysers/analyser_merge_bicycle_rental_FR_IDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_bicycle_rental_FR_IDF.py -------------------------------------------------------------------------------- /analysers/analyser_merge_bicycle_rental_FR_bm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_bicycle_rental_FR_bm.py -------------------------------------------------------------------------------- /analysers/analyser_merge_bridge_ES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_bridge_ES.py -------------------------------------------------------------------------------- /analysers/analyser_merge_carpool_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_carpool_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_cemetery_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_cemetery_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_charging_station_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_charging_station_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_college_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_college_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_cycle_parking_FR_bm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_cycle_parking_FR_bm.py -------------------------------------------------------------------------------- /analysers/analyser_merge_defibrillators_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_defibrillators_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_defibrillators_FR_aedmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_defibrillators_FR_aedmap.py -------------------------------------------------------------------------------- /analysers/analyser_merge_defibrillators_FR_hautesalpes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_defibrillators_FR_hautesalpes.py -------------------------------------------------------------------------------- /analysers/analyser_merge_defibrillators_FR_issylesmoulineaux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_defibrillators_FR_issylesmoulineaux.py -------------------------------------------------------------------------------- /analysers/analyser_merge_defibrillators_FR_lorient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_defibrillators_FR_lorient.py -------------------------------------------------------------------------------- /analysers/analyser_merge_defibrillators_FR_paris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_defibrillators_FR_paris.py -------------------------------------------------------------------------------- /analysers/analyser_merge_defibrillators_FR_saintmalo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_defibrillators_FR_saintmalo.py -------------------------------------------------------------------------------- /analysers/analyser_merge_defibrillators_FR_toulouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_defibrillators_FR_toulouse.py -------------------------------------------------------------------------------- /analysers/analyser_merge_emergency_points_LU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_emergency_points_LU.py -------------------------------------------------------------------------------- /analysers/analyser_merge_forest_compartment_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_forest_compartment_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_fuel_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_fuel_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_fuel_IT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_fuel_IT.py -------------------------------------------------------------------------------- /analysers/analyser_merge_geodesie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_geodesie.py -------------------------------------------------------------------------------- /analysers/analyser_merge_geodesie_support_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_geodesie_support_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_healthcare_FR_finess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_healthcare_FR_finess.py -------------------------------------------------------------------------------- /analysers/analyser_merge_heritage_FR_merimee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_heritage_FR_merimee.py -------------------------------------------------------------------------------- /analysers/analyser_merge_hydrants_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_hydrants_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_hydrants_FR_SDIS_21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_hydrants_FR_SDIS_21.py -------------------------------------------------------------------------------- /analysers/analyser_merge_hydrants_FR_SDIS_39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_hydrants_FR_SDIS_39.py -------------------------------------------------------------------------------- /analysers/analyser_merge_hydrants_FR_SDIS_71.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_hydrants_FR_SDIS_71.py -------------------------------------------------------------------------------- /analysers/analyser_merge_library_FR_aquitaine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_library_FR_aquitaine.py -------------------------------------------------------------------------------- /analysers/analyser_merge_man_made_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_man_made_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_milestone_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_milestone_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_museum_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_museum_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_natural_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_natural_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_parapharmacy_IT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_parapharmacy_IT.py -------------------------------------------------------------------------------- /analysers/analyser_merge_parking_FR_BNLS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_parking_FR_BNLS.py -------------------------------------------------------------------------------- /analysers/analyser_merge_parking_FR_IDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_parking_FR_IDF.py -------------------------------------------------------------------------------- /analysers/analyser_merge_parking_FR_bm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_parking_FR_bm.py -------------------------------------------------------------------------------- /analysers/analyser_merge_pharmacy_IT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_pharmacy_IT.py -------------------------------------------------------------------------------- /analysers/analyser_merge_pitch_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_pitch_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_poi_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_poi_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_police_FR_gn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_police_FR_gn.py -------------------------------------------------------------------------------- /analysers/analyser_merge_police_FR_pn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_police_FR_pn.py -------------------------------------------------------------------------------- /analysers/analyser_merge_post_box_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_post_box_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_postal_code_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_postal_code_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_poste_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_poste_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_power_branch_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_power_branch_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_power_line_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_power_line_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_power_plant_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_power_plant_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_power_pole_FR_gracethd2_vendee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_power_pole_FR_gracethd2_vendee.py -------------------------------------------------------------------------------- /analysers/analyser_merge_power_pole_FR_gracethd3_bretagne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_power_pole_FR_gracethd3_bretagne.py -------------------------------------------------------------------------------- /analysers/analyser_merge_power_pole_FR_gracethd3_dordogne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_power_pole_FR_gracethd3_dordogne.py -------------------------------------------------------------------------------- /analysers/analyser_merge_power_pole_FR_gracethd3_jura.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_power_pole_FR_gracethd3_jura.py -------------------------------------------------------------------------------- /analysers/analyser_merge_power_pole_FR_spec_enedis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_power_pole_FR_spec_enedis.py -------------------------------------------------------------------------------- /analysers/analyser_merge_power_pole_FR_spec_fibre5962.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_power_pole_FR_spec_fibre5962.py -------------------------------------------------------------------------------- /analysers/analyser_merge_power_pole_FR_spec_sde18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_power_pole_FR_spec_sde18.py -------------------------------------------------------------------------------- /analysers/analyser_merge_power_pole_FR_spec_sdey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_power_pole_FR_spec_sdey.py -------------------------------------------------------------------------------- /analysers/analyser_merge_power_substation_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_power_substation_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_power_substation_minor_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_power_substation_minor_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_power_tower_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_power_tower_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_public_equipment_FR_angers_toilets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_public_equipment_FR_angers_toilets.py -------------------------------------------------------------------------------- /analysers/analyser_merge_public_equipment_FR_bordeaux_toilets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_public_equipment_FR_bordeaux_toilets.py -------------------------------------------------------------------------------- /analysers/analyser_merge_public_equipment_FR_lehavre_toilets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_public_equipment_FR_lehavre_toilets.py -------------------------------------------------------------------------------- /analysers/analyser_merge_public_equipment_FR_lyon_toilets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_public_equipment_FR_lyon_toilets.py -------------------------------------------------------------------------------- /analysers/analyser_merge_public_equipment_FR_montpellier_toilets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_public_equipment_FR_montpellier_toilets.py -------------------------------------------------------------------------------- /analysers/analyser_merge_public_equipment_FR_nantes_toilets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_public_equipment_FR_nantes_toilets.py -------------------------------------------------------------------------------- /analysers/analyser_merge_public_equipment_FR_rennes_toilets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_public_equipment_FR_rennes_toilets.py -------------------------------------------------------------------------------- /analysers/analyser_merge_public_equipment_FR_toulouse_toilets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_public_equipment_FR_toulouse_toilets.py -------------------------------------------------------------------------------- /analysers/analyser_merge_public_services_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_public_services_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_public_transport_FR_bibus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_public_transport_FR_bibus.py -------------------------------------------------------------------------------- /analysers/analyser_merge_public_transport_FR_idfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_public_transport_FR_idfm.py -------------------------------------------------------------------------------- /analysers/analyser_merge_public_transport_FR_rla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_public_transport_FR_rla.py -------------------------------------------------------------------------------- /analysers/analyser_merge_public_transport_FR_sibra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_public_transport_FR_sibra.py -------------------------------------------------------------------------------- /analysers/analyser_merge_public_transport_FR_stan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_public_transport_FR_stan.py -------------------------------------------------------------------------------- /analysers/analyser_merge_public_transport_FR_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_public_transport_FR_star.py -------------------------------------------------------------------------------- /analysers/analyser_merge_public_transport_FR_tbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_public_transport_FR_tbm.py -------------------------------------------------------------------------------- /analysers/analyser_merge_public_transport_FR_transgironde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_public_transport_FR_transgironde.py -------------------------------------------------------------------------------- /analysers/analyser_merge_public_transport_FR_zestbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_public_transport_FR_zestbus.py -------------------------------------------------------------------------------- /analysers/analyser_merge_radio_support_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_radio_support_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_railway_level_crossing_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_railway_level_crossing_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_railway_railstation_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_railway_railstation_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_recycling_FR_ampm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_recycling_FR_ampm.py -------------------------------------------------------------------------------- /analysers/analyser_merge_recycling_FR_bm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_recycling_FR_bm.py -------------------------------------------------------------------------------- /analysers/analyser_merge_recycling_FR_csma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_recycling_FR_csma.py -------------------------------------------------------------------------------- /analysers/analyser_merge_recycling_FR_nm_glass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_recycling_FR_nm_glass.py -------------------------------------------------------------------------------- /analysers/analyser_merge_recycling_FR_sitcom40.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_recycling_FR_sitcom40.py -------------------------------------------------------------------------------- /analysers/analyser_merge_reservoir_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_reservoir_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_restriction_FR_92.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_restriction_FR_92.py -------------------------------------------------------------------------------- /analysers/analyser_merge_restriction_motorway_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_restriction_motorway_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_road_ES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_road_ES.py -------------------------------------------------------------------------------- /analysers/analyser_merge_road_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_road_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_school_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_school_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_shop_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_shop_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_sport_FR_aquitaine_equestrian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_sport_FR_aquitaine_equestrian.py -------------------------------------------------------------------------------- /analysers/analyser_merge_street_lamp_FR_haute-savoie_syane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_street_lamp_FR_haute-savoie_syane.py -------------------------------------------------------------------------------- /analysers/analyser_merge_street_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_street_objects.py -------------------------------------------------------------------------------- /analysers/analyser_merge_tourism_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_tourism_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_tourism_FR_aquitaine_camp_caravan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_tourism_FR_aquitaine_camp_caravan.py -------------------------------------------------------------------------------- /analysers/analyser_merge_tourism_FR_aquitaine_museum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_tourism_FR_aquitaine_museum.py -------------------------------------------------------------------------------- /analysers/analyser_merge_traffic_signs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_traffic_signs.py -------------------------------------------------------------------------------- /analysers/analyser_merge_waste_disposal_FR_csma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_waste_disposal_FR_csma.py -------------------------------------------------------------------------------- /analysers/analyser_merge_wastewater_plant_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_wastewater_plant_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_water_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_water_FR.py -------------------------------------------------------------------------------- /analysers/analyser_merge_water_drinking_ES_madrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_water_drinking_ES_madrid.py -------------------------------------------------------------------------------- /analysers/analyser_merge_winery_FR_aquitaine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_merge_winery_FR_aquitaine.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_addr_interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_addr_interpolation.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_boundary_administrative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_boundary_administrative.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_boundary_hole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_boundary_hole.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_boundary_intersect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_boundary_intersect.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_boundary_relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_boundary_relation.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_building_geodesie_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_building_geodesie_FR.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_building_in_polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_building_in_polygon.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_building_overlaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_building_overlaps.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_building_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_building_shapes.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_camp_pitch_out_of_camp_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_camp_pitch_out_of_camp_site.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_cycleway_track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_cycleway_track.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_double_tagging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_double_tagging.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_duplicated_geotag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_duplicated_geotag.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_fantoir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_fantoir.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_highway_almost_junction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_highway_almost_junction.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_highway_area_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_highway_area_access.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_highway_bad_intersection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_highway_bad_intersection.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_highway_broken_level_continuity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_highway_broken_level_continuity.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_highway_cul-de-sac_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_highway_cul-de-sac_level.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_highway_deadend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_highway_deadend.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_highway_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_highway_features.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_highway_floating_islands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_highway_floating_islands.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_highway_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_highway_link.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_highway_long_crossing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_highway_long_crossing.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_highway_motorway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_highway_motorway.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_highway_name_close.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_highway_name_close.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_highway_noexit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_highway_noexit.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_highway_traffic_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_highway_traffic_signals.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_highway_tunnel_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_highway_tunnel_bridge.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_highway_turn_lanes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_highway_turn_lanes.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_highway_vs_building.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_highway_vs_building.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_highway_without_ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_highway_without_ref.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_highway_zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_highway_zone.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_indoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_indoor.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_natural_swimming-pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_natural_swimming-pool.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_node_like_way.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_node_like_way.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_orphan_nodes_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_orphan_nodes_cluster.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_parking_highway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_parking_highway.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_polygon.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_polygon_intersects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_polygon_intersects.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_polygon_overlaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_polygon_overlaps.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_polygon_small.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_polygon_small.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_powerline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_powerline.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_relation_associatedStreet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_relation_associatedStreet.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_relation_cyclic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_relation_cyclic.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_relation_duplicate_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_relation_duplicate_member.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_relation_enforcement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_relation_enforcement.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_relation_large.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_relation_large.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_relation_multipolygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_relation_multipolygon.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_relation_open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_relation_open.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_relation_public_transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_relation_public_transport.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_relation_restriction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_relation_restriction.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_relation_route_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_relation_route_access.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_roundabout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_roundabout.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_roundabout_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_roundabout_level.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_roundabout_reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_roundabout_reverse.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_soundex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_soundex.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_tag_typo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_tag_typo.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_useless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_useless.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_water.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_water.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_waterway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_waterway.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_way_angle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_way_angle.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_way_approximate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_way_approximate.py -------------------------------------------------------------------------------- /analysers/analyser_osmosis_wikipedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_osmosis_wikipedia.py -------------------------------------------------------------------------------- /analysers/analyser_sax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/analyser_sax.py -------------------------------------------------------------------------------- /analysers/contrib/analyse-bano.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/contrib/analyse-bano.sh -------------------------------------------------------------------------------- /analysers/disabled/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /analysers/disabled/analyser_admin_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_admin_level.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_duplicate_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_duplicate_node.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_gis_boundary_intersect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_gis_boundary_intersect.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_gis_building_overlaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_gis_building_overlaps.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_gis_polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_gis_polygon.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_gis_roundabout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_gis_roundabout.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_bicycle_parking_FR_bordeaux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_bicycle_parking_FR_bordeaux.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_bicycle_parking_FR_capp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_bicycle_parking_FR_capp.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_bicycle_rental_FR_capp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_bicycle_rental_FR_capp.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_cadastre_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_cadastre_FR.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_car_rental_FR_paris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_car_rental_FR_paris.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_defibrillators_FR_basrhin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_defibrillators_FR_basrhin.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_defibrillators_FR_cugnaux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_defibrillators_FR_cugnaux.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_defibrillators_FR_gers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_defibrillators_FR_gers.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_defibrillators_FR_montfort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_defibrillators_FR_montfort.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_highway_ref_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_highway_ref_FR.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_hydrant_point_CH_lausanne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_hydrant_point_CH_lausanne.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_parking_FR_capp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_parking_FR_capp.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_public_transport_BE_wallonia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_public_transport_BE_wallonia.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_public_transport_FR_cg71.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_public_transport_FR_cg71.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_public_transport_FR_envibus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_public_transport_FR_envibus.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_public_transport_FR_ratp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_public_transport_FR_ratp.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_public_transport_FR_rpb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_public_transport_FR_rpb.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_public_transport_FR_sillages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_public_transport_FR_sillages.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_public_transport_FR_zou_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_public_transport_FR_zou_06.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_public_transport_IN_kerala_bus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_public_transport_IN_kerala_bus.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_recycling_FR_capp_clothes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_recycling_FR_capp_clothes.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_recycling_FR_capp_glass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_recycling_FR_capp_glass.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_recycling_FR_sitcom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_recycling_FR_sitcom.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_restaurant_FR_aquitaine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_restaurant_FR_aquitaine.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_restaurant_FR_cg71.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_restaurant_FR_cg71.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_street_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_street_number.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_street_number_arles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_street_number_arles.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_street_number_bordeaux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_street_number_bordeaux.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_street_number_lyon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_street_number_lyon.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_street_number_montpellier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_street_number_montpellier.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_street_number_nantes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_street_number_nantes.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_street_number_rennes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_street_number_rennes.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_street_number_toulouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_street_number_toulouse.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_street_objects2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_street_objects2.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_tmc_point_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_tmc_point_FR.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_tourism_FR_aquitaine_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_tourism_FR_aquitaine_information.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_wikipedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_wikipedia.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_wikipedia_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_wikipedia_FR.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_merge_wikipedia_insee_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_merge_wikipedia_insee_FR.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_osmbin_open_relations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_osmbin_open_relations.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_osmosis_building_3nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_osmosis_building_3nodes.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_osmosis_mini_farm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_osmosis_mini_farm.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_osmosis_missing_parent_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_osmosis_missing_parent_tag.py -------------------------------------------------------------------------------- /analysers/disabled/analyser_osmosis_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/analyser_osmosis_stats.py -------------------------------------------------------------------------------- /analysers/disabled/mapillary-street-tags.mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/analysers/disabled/mapillary-street-tags.mapping.json -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/conftest.py -------------------------------------------------------------------------------- /cron-launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/cron-launcher -------------------------------------------------------------------------------- /dictionaries/Lang_fr/BddCommunes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/dictionaries/Lang_fr/BddCommunes -------------------------------------------------------------------------------- /dictionaries/Lang_fr/BddDepartements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/dictionaries/Lang_fr/BddDepartements -------------------------------------------------------------------------------- /dictionaries/Lang_fr/UpdateBddCommunes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/dictionaries/Lang_fr/UpdateBddCommunes -------------------------------------------------------------------------------- /dictionaries/Lang_fr/UpdateBddDepartement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/dictionaries/Lang_fr/UpdateBddDepartement -------------------------------------------------------------------------------- /dictionaries/Lang_fr/cuisine.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/dictionaries/Lang_fr/cuisine.csv -------------------------------------------------------------------------------- /dictionaries/fr/CorrJessie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/dictionaries/fr/CorrJessie -------------------------------------------------------------------------------- /dictionaries/fr/DicoJessie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/dictionaries/fr/DicoJessie -------------------------------------------------------------------------------- /dictionaries/fr/ResultCommonWords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/dictionaries/fr/ResultCommonWords -------------------------------------------------------------------------------- /dictionaries/fr/UpdateFromJessie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/dictionaries/fr/UpdateFromJessie -------------------------------------------------------------------------------- /dictionaries/fr/reaccentue.pz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/dictionaries/fr/reaccentue.pz -------------------------------------------------------------------------------- /doc/0-Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/doc/0-Index.md -------------------------------------------------------------------------------- /doc/1-Plugin.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/doc/1-Plugin.ipynb -------------------------------------------------------------------------------- /doc/2-PluginMapCSS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/doc/2-PluginMapCSS.md -------------------------------------------------------------------------------- /doc/2_0-PluginMapCSS-minimal.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/doc/2_0-PluginMapCSS-minimal.ipynb -------------------------------------------------------------------------------- /doc/3-SQL-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/doc/3-SQL-basics.md -------------------------------------------------------------------------------- /doc/3_0-SQL-minimal.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/doc/3_0-SQL-minimal.ipynb -------------------------------------------------------------------------------- /doc/4-Merge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/doc/4-Merge.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/doc/README.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/docker-compose-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/docker/docker-compose-dev.yml -------------------------------------------------------------------------------- /docker/docker-compose-frontend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/docker/docker-compose-frontend.yml -------------------------------------------------------------------------------- /docker/docker-compose-readonly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/docker/docker-compose-readonly.yml -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/postgis-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/docker/postgis-init.sh -------------------------------------------------------------------------------- /docker/postgres-readonly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/docker/postgres-readonly.sh -------------------------------------------------------------------------------- /docker/public-jupyter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/docker/public-jupyter.sh -------------------------------------------------------------------------------- /docker/work/.jupyter/jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/docker/work/.jupyter/jupyter_notebook_config.py -------------------------------------------------------------------------------- /docker/work/.jupyter/migrated: -------------------------------------------------------------------------------- 1 | 2020-11-01T15:41:33.395742 -------------------------------------------------------------------------------- /docker/work/.local: -------------------------------------------------------------------------------- 1 | /tmp -------------------------------------------------------------------------------- /docker/work/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/launcher -------------------------------------------------------------------------------- /local-launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/local-launcher -------------------------------------------------------------------------------- /mapcss/MapCSS.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/mapcss/MapCSS.g4 -------------------------------------------------------------------------------- /mapcss/MapCSSListenerL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/mapcss/MapCSSListenerL.py -------------------------------------------------------------------------------- /mapcss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/mapcss/README.md -------------------------------------------------------------------------------- /mapcss/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapcss/generated/MapCSS.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/mapcss/generated/MapCSS.interp -------------------------------------------------------------------------------- /mapcss/generated/MapCSS.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/mapcss/generated/MapCSS.tokens -------------------------------------------------------------------------------- /mapcss/generated/MapCSSLexer.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/mapcss/generated/MapCSSLexer.interp -------------------------------------------------------------------------------- /mapcss/generated/MapCSSLexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/mapcss/generated/MapCSSLexer.py -------------------------------------------------------------------------------- /mapcss/generated/MapCSSLexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/mapcss/generated/MapCSSLexer.tokens -------------------------------------------------------------------------------- /mapcss/generated/MapCSSListener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/mapcss/generated/MapCSSListener.py -------------------------------------------------------------------------------- /mapcss/generated/MapCSSParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/mapcss/generated/MapCSSParser.py -------------------------------------------------------------------------------- /mapcss/generated/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mapcss/item_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/mapcss/item_map.py -------------------------------------------------------------------------------- /mapcss/mapcss2mapcss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/mapcss/mapcss2mapcss.py -------------------------------------------------------------------------------- /mapcss/mapcss2osmose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/mapcss/mapcss2osmose.py -------------------------------------------------------------------------------- /mapcss/mapcss_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/mapcss/mapcss_lib.py -------------------------------------------------------------------------------- /mapcss/mock_rules/area_neq_no.mapcss: -------------------------------------------------------------------------------- 1 | *[area!=no] {} 2 | -------------------------------------------------------------------------------- /mapcss/mock_rules/setting_drivingside_eq_left.mapcss: -------------------------------------------------------------------------------- 1 | *[setting("driving_side")="left"] {} 2 | -------------------------------------------------------------------------------- /mapcss/mock_rules/setting_drivingside_neq_left.mapcss: -------------------------------------------------------------------------------- 1 | *[setting("driving_side")!="left"] {} 2 | -------------------------------------------------------------------------------- /mapcss/mock_rules/type_eq_multipolygon.mapcss: -------------------------------------------------------------------------------- 1 | *[type=multipolygon] {} 2 | -------------------------------------------------------------------------------- /mapcss/mock_rules/type_neq_multipolygon.mapcss: -------------------------------------------------------------------------------- 1 | *[type!=multipolygon] {} 2 | -------------------------------------------------------------------------------- /mapcss/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/mapcss/update.py -------------------------------------------------------------------------------- /merge_data/PAV_CSMA.csv.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/merge_data/PAV_CSMA.csv.bz2 -------------------------------------------------------------------------------- /merge_data/address_france_montpellier.csv.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/merge_data/address_france_montpellier.csv.bz2 -------------------------------------------------------------------------------- /merge_data/address_france_toulouse.csv.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/merge_data/address_france_toulouse.csv.bz2 -------------------------------------------------------------------------------- /merge_data/fuel_FR.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/merge_data/fuel_FR.rb -------------------------------------------------------------------------------- /merge_data/geodesie.csv.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/merge_data/geodesie.csv.bz2 -------------------------------------------------------------------------------- /merge_data/geodesie_site.csv.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/merge_data/geodesie_site.csv.bz2 -------------------------------------------------------------------------------- /merge_data/geodesie_support_FR.mapping.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/merge_data/geodesie_support_FR.mapping.csv -------------------------------------------------------------------------------- /merge_data/healthcare_FR_finess.mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/merge_data/healthcare_FR_finess.mapping.json -------------------------------------------------------------------------------- /merge_data/mapillary-street-objects.mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/merge_data/mapillary-street-objects.mapping.json -------------------------------------------------------------------------------- /merge_data/mapillary-traffic-signs.mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/merge_data/mapillary-traffic-signs.mapping.json -------------------------------------------------------------------------------- /merge_data/pitch_FR.mapping.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/merge_data/pitch_FR.mapping.csv -------------------------------------------------------------------------------- /merge_data/restriction_motorway_FR.csv.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/merge_data/restriction_motorway_FR.csv.bz2 -------------------------------------------------------------------------------- /merge_data/shop_FR.mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/merge_data/shop_FR.mapping.json -------------------------------------------------------------------------------- /merge_data/tourism_FR.mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/merge_data/tourism_FR.mapping.json -------------------------------------------------------------------------------- /modules/DictCursorUnicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/DictCursorUnicode.py -------------------------------------------------------------------------------- /modules/IssuesFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/IssuesFile.py -------------------------------------------------------------------------------- /modules/IssuesFileCsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/IssuesFileCsv.py -------------------------------------------------------------------------------- /modules/IssuesFileGeoJson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/IssuesFileGeoJson.py -------------------------------------------------------------------------------- /modules/IssuesFileOsmose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/IssuesFileOsmose.py -------------------------------------------------------------------------------- /modules/IssuesFile_PolygonFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/IssuesFile_PolygonFilter.py -------------------------------------------------------------------------------- /modules/OsmBin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/OsmBin.py -------------------------------------------------------------------------------- /modules/OsmGis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/OsmGis.py -------------------------------------------------------------------------------- /modules/OsmOsis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/OsmOsis.py -------------------------------------------------------------------------------- /modules/OsmOsisManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/OsmOsisManager.py -------------------------------------------------------------------------------- /modules/OsmPbf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/OsmPbf.py -------------------------------------------------------------------------------- /modules/OsmPbf_libosmbf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/OsmPbf_libosmbf.py -------------------------------------------------------------------------------- /modules/OsmReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/OsmReader.py -------------------------------------------------------------------------------- /modules/OsmSax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/OsmSax.py -------------------------------------------------------------------------------- /modules/OsmSaxAlea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/OsmSaxAlea.py -------------------------------------------------------------------------------- /modules/OsmState.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/OsmState.py -------------------------------------------------------------------------------- /modules/OsmoseLog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/OsmoseLog.py -------------------------------------------------------------------------------- /modules/OsmoseTranslation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/OsmoseTranslation.py -------------------------------------------------------------------------------- /modules/PointInPolygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/PointInPolygon.py -------------------------------------------------------------------------------- /modules/Polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/Polygon.py -------------------------------------------------------------------------------- /modules/SourceVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/SourceVersion.py -------------------------------------------------------------------------------- /modules/Stablehash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/Stablehash.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/config.py -------------------------------------------------------------------------------- /modules/confusables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/confusables.py -------------------------------------------------------------------------------- /modules/confusables_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/confusables_data.py -------------------------------------------------------------------------------- /modules/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/download.py -------------------------------------------------------------------------------- /modules/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/downloader.py -------------------------------------------------------------------------------- /modules/interval_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/interval_tree.py -------------------------------------------------------------------------------- /modules/italian_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/italian_strings.py -------------------------------------------------------------------------------- /modules/jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/jupyter.py -------------------------------------------------------------------------------- /modules/languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/languages.py -------------------------------------------------------------------------------- /modules/lockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/lockfile.py -------------------------------------------------------------------------------- /modules/mapcss_lib.py: -------------------------------------------------------------------------------- 1 | ../mapcss/mapcss_lib.py -------------------------------------------------------------------------------- /modules/osm_pbf_parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/osm_pbf_parser/Makefile -------------------------------------------------------------------------------- /modules/osm_pbf_parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/osm_pbf_parser/README.md -------------------------------------------------------------------------------- /modules/osm_pbf_parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/osm_pbf_parser/osm_pbf_parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/osm_pbf_parser/osm_pbf_parser.cc -------------------------------------------------------------------------------- /modules/osm_pbf_parser/osm_pbf_parser.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/osm_pbf_parser/osm_pbf_parser.pyi -------------------------------------------------------------------------------- /modules/osm_pbf_parser/osm_pbf_parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/osm_pbf_parser/osm_pbf_parser_test.py -------------------------------------------------------------------------------- /modules/osm_pbf_parser/osmpbfreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/osm_pbf_parser/osmpbfreader.h -------------------------------------------------------------------------------- /modules/py3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/py3.py -------------------------------------------------------------------------------- /modules/reaccentue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/modules/reaccentue.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/mypy.ini -------------------------------------------------------------------------------- /osmconvert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmconvert/Makefile -------------------------------------------------------------------------------- /osmconvert/osmconvert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmconvert/osmconvert -------------------------------------------------------------------------------- /osmconvert/osmconvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmconvert/osmconvert.c -------------------------------------------------------------------------------- /osmose_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmose_config.py -------------------------------------------------------------------------------- /osmose_config_password-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmose_config_password-example.py -------------------------------------------------------------------------------- /osmose_config_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmose_config_password.py -------------------------------------------------------------------------------- /osmose_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmose_run.py -------------------------------------------------------------------------------- /osmosis/ActionFromTimestamp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/ActionFromTimestamp.sql -------------------------------------------------------------------------------- /osmosis/ActionsAllCreated.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/ActionsAllCreated.sql -------------------------------------------------------------------------------- /osmosis/CreateFunctions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/CreateFunctions.sql -------------------------------------------------------------------------------- /osmosis/CreateGeometryForWays.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/CreateGeometryForWays.sql -------------------------------------------------------------------------------- /osmosis/CreateMergeAnalyserCache.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/CreateMergeAnalyserCache.sql -------------------------------------------------------------------------------- /osmosis/CreateMetainfo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/CreateMetainfo.sql -------------------------------------------------------------------------------- /osmosis/CreateTagsIndex.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/CreateTagsIndex.sql -------------------------------------------------------------------------------- /osmosis/CreateTouched.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/CreateTouched.sql -------------------------------------------------------------------------------- /osmosis/ImportDatabase_Nodes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/ImportDatabase_Nodes.sql -------------------------------------------------------------------------------- /osmosis/ImportDatabase_Prepare.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/ImportDatabase_Prepare.sql -------------------------------------------------------------------------------- /osmosis/ImportDatabase_RelationMembers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/ImportDatabase_RelationMembers.sql -------------------------------------------------------------------------------- /osmosis/ImportDatabase_Relations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/ImportDatabase_Relations.sql -------------------------------------------------------------------------------- /osmosis/ImportDatabase_Users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/ImportDatabase_Users.sql -------------------------------------------------------------------------------- /osmosis/ImportDatabase_WayNodes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/ImportDatabase_WayNodes.sql -------------------------------------------------------------------------------- /osmosis/ImportDatabase_Ways.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/ImportDatabase_Ways.sql -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/bin/osmosis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/bin/osmosis -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/bin/osmosis-extract-apidb-0.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/bin/osmosis-extract-apidb-0.6 -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/bin/osmosis-extract-mysql-0.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/bin/osmosis-extract-mysql-0.6 -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/bin/osmosis.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/bin/osmosis.bat -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/changes.txt -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/config/plexus.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/config/plexus.conf -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/copying.txt -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/checker-qual-3.12.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/checker-qual-3.12.0.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/commons-codec-1.15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/commons-codec-1.15.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/commons-compress-1.21.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/commons-compress-1.21.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/commons-csv-1.9.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/commons-csv-1.9.0.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/commons-dbcp-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/commons-dbcp-1.4.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/commons-io-2.11.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/commons-io-2.11.0.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/commons-logging-1.0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/commons-logging-1.0.4.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/commons-pool-1.5.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/commons-pool-1.5.4.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/error_prone_annotations-2.11.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/error_prone_annotations-2.11.0.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/failureaccess-1.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/failureaccess-1.0.1.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/guava-31.1-jre.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/guava-31.1-jre.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/j2objc-annotations-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/j2objc-annotations-1.3.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/jpf-1.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/jpf-1.5.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/jsr305-3.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/jsr305-3.0.2.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/mysql-connector-java-8.0.29.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/mysql-connector-java-8.0.29.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/netty-3.10.6.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/netty-3.10.6.Final.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-apidb-0.48.3-36-gada1b6f5-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-apidb-0.48.3-36-gada1b6f5-SNAPSHOT.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-areafilter-0.48.3-36-gada1b6f5-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-areafilter-0.48.3-36-gada1b6f5-SNAPSHOT.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-core-0.48.3-36-gada1b6f5-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-core-0.48.3-36-gada1b6f5-SNAPSHOT.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-dataset-0.48.3-36-gada1b6f5-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-dataset-0.48.3-36-gada1b6f5-SNAPSHOT.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-extract-0.48.3-36-gada1b6f5-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-extract-0.48.3-36-gada1b6f5-SNAPSHOT.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-hstore-jdbc-0.48.3-36-gada1b6f5-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-hstore-jdbc-0.48.3-36-gada1b6f5-SNAPSHOT.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-pbf-0.48.3-36-gada1b6f5-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-pbf-0.48.3-36-gada1b6f5-SNAPSHOT.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-pbf2-0.48.3-36-gada1b6f5-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-pbf2-0.48.3-36-gada1b6f5-SNAPSHOT.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-pgsimple-0.48.3-36-gada1b6f5-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-pgsimple-0.48.3-36-gada1b6f5-SNAPSHOT.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-pgsnapshot-0.48.3-36-gada1b6f5-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-pgsnapshot-0.48.3-36-gada1b6f5-SNAPSHOT.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-replication-0.48.3-36-gada1b6f5-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-replication-0.48.3-36-gada1b6f5-SNAPSHOT.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-replication-http-0.48.3-36-gada1b6f5-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-replication-http-0.48.3-36-gada1b6f5-SNAPSHOT.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-set-0.48.3-36-gada1b6f5-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-set-0.48.3-36-gada1b6f5-SNAPSHOT.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-tagfilter-0.48.3-36-gada1b6f5-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-tagfilter-0.48.3-36-gada1b6f5-SNAPSHOT.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-tagtransform-0.48.3-36-gada1b6f5-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-tagtransform-0.48.3-36-gada1b6f5-SNAPSHOT.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-xml-0.48.3-36-gada1b6f5-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmosis-xml-0.48.3-36-gada1b6f5-SNAPSHOT.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmpbf-1.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/osmpbf-1.5.0.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/plexus-classworlds-2.6.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/plexus-classworlds-2.6.0.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/postgis-geometry-2021.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/postgis-geometry-2021.1.0.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/postgis-jdbc-2021.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/postgis-jdbc-2021.1.0.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/postgresql-42.3.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/postgresql-42.3.5.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/protobuf-java-3.20.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/protobuf-java-3.20.1.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/slf4j-api-1.7.32.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/slf4j-api-1.7.32.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/spring-beans-5.3.20.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/spring-beans-5.3.20.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/spring-core-5.3.20.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/spring-core-5.3.20.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/spring-jcl-5.3.20.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/spring-jcl-5.3.20.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/spring-jdbc-5.3.20.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/spring-jdbc-5.3.20.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/spring-tx-5.3.20.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/spring-tx-5.3.20.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/stax2-api-4.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/stax2-api-4.2.1.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/woodstox-core-6.2.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/woodstox-core-6.2.8.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/xercesImpl-2.12.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/xercesImpl-2.12.2.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/xml-apis-1.4.01.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/lib/default/xml-apis-1.4.01.jar -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/readme.txt -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/contrib/CreateGeometryForWays.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/contrib/CreateGeometryForWays.sql -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/contrib/apidb_0.6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/contrib/apidb_0.6.sql -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/contrib/apidb_0.6_osmosis_xid_indexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/contrib/apidb_0.6_osmosis_xid_indexing.sql -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/contrib/dump_apidb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/contrib/dump_apidb.sh -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/contrib/replicate_osm_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/contrib/replicate_osm_file.sh -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/fix_line_endings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/fix_line_endings.sh -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/munin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/munin/README -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/munin/osm_replication.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/munin/osm_replication.conf -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/munin/osm_replication_lag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/munin/osm_replication_lag -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsimple_load_0.6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsimple_load_0.6.sql -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsimple_schema_0.6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsimple_schema_0.6.sql -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsimple_schema_0.6_action.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsimple_schema_0.6_action.sql -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsimple_schema_0.6_bbox.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsimple_schema_0.6_bbox.sql -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsimple_schema_0.6_linestring.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsimple_schema_0.6_linestring.sql -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsnapshot_and_pgsimple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsnapshot_and_pgsimple.txt -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsnapshot_load_0.6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsnapshot_load_0.6.sql -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsnapshot_schema_0.6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsnapshot_schema_0.6.sql -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsnapshot_schema_0.6_action.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsnapshot_schema_0.6_action.sql -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsnapshot_schema_0.6_bbox.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsnapshot_schema_0.6_bbox.sql -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsnapshot_schema_0.6_changes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsnapshot_schema_0.6_changes.sql -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsnapshot_schema_0.6_linestring.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsnapshot_schema_0.6_linestring.sql -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsnapshot_schema_0.6_upgrade_4-5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsnapshot_schema_0.6_upgrade_4-5.sql -------------------------------------------------------------------------------- /osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsnapshot_schema_0.6_upgrade_5-6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/osmosis-0.48.3-36-gada1b6f5-SNAPSHOT/script/pgsnapshot_schema_0.6_upgrade_5-6.sql -------------------------------------------------------------------------------- /osmosis/pgsimple_schema_0.6_action_drop.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS actions; 2 | -------------------------------------------------------------------------------- /osmosis/pgsnapshot_schema_0.6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/osmosis/pgsnapshot_schema_0.6.sql -------------------------------------------------------------------------------- /plugins/Addr_Interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Addr_Interpolation.py -------------------------------------------------------------------------------- /plugins/Administrative_INSEE_Name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Administrative_INSEE_Name.py -------------------------------------------------------------------------------- /plugins/Administrative_TooManyWays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Administrative_TooManyWays.py -------------------------------------------------------------------------------- /plugins/Bicycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Bicycle.py -------------------------------------------------------------------------------- /plugins/Bicycle.validator.mapcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Bicycle.validator.mapcss -------------------------------------------------------------------------------- /plugins/Capacity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Capacity.py -------------------------------------------------------------------------------- /plugins/Colour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Colour.py -------------------------------------------------------------------------------- /plugins/Colour.validator.mapcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Colour.validator.mapcss -------------------------------------------------------------------------------- /plugins/ConditionalRestrictions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/ConditionalRestrictions.py -------------------------------------------------------------------------------- /plugins/Construction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Construction.py -------------------------------------------------------------------------------- /plugins/Construction2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Construction2.py -------------------------------------------------------------------------------- /plugins/Construction2.validator.mapcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Construction2.validator.mapcss -------------------------------------------------------------------------------- /plugins/Covid19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Covid19.py -------------------------------------------------------------------------------- /plugins/Covid19.validator.mapcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Covid19.validator.mapcss -------------------------------------------------------------------------------- /plugins/Cuisine_Guess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Cuisine_Guess.py -------------------------------------------------------------------------------- /plugins/Date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Date.py -------------------------------------------------------------------------------- /plugins/Ele_MontainPass_Peak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Ele_MontainPass_Peak.py -------------------------------------------------------------------------------- /plugins/Highway_Lanes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Highway_Lanes.py -------------------------------------------------------------------------------- /plugins/Highway_Parking_Lane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Highway_Parking_Lane.py -------------------------------------------------------------------------------- /plugins/Highway_Sides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Highway_Sides.py -------------------------------------------------------------------------------- /plugins/Historic_Wayside_cross_without_material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Historic_Wayside_cross_without_material.py -------------------------------------------------------------------------------- /plugins/Josm_Charge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_Charge.py -------------------------------------------------------------------------------- /plugins/Josm_DutchSpecific.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_DutchSpecific.py -------------------------------------------------------------------------------- /plugins/Josm_FranceSpecificRules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_FranceSpecificRules.py -------------------------------------------------------------------------------- /plugins/Josm_ItalySpecific.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_ItalySpecific.py -------------------------------------------------------------------------------- /plugins/Josm_Rules_Brazilian_Specific.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_Rules_Brazilian_Specific.py -------------------------------------------------------------------------------- /plugins/Josm_Seamark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_Seamark.py -------------------------------------------------------------------------------- /plugins/Josm_SuspiciousSwimming_Pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_SuspiciousSwimming_Pool.py -------------------------------------------------------------------------------- /plugins/Josm_addresses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_addresses.py -------------------------------------------------------------------------------- /plugins/Josm_combinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_combinations.py -------------------------------------------------------------------------------- /plugins/Josm_de_openrailwaymap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_de_openrailwaymap.py -------------------------------------------------------------------------------- /plugins/Josm_deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_deprecated.py -------------------------------------------------------------------------------- /plugins/Josm_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_geometry.py -------------------------------------------------------------------------------- /plugins/Josm_highway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_highway.py -------------------------------------------------------------------------------- /plugins/Josm_multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_multiple.py -------------------------------------------------------------------------------- /plugins/Josm_numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_numeric.py -------------------------------------------------------------------------------- /plugins/Josm_openrailwaymap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_openrailwaymap.py -------------------------------------------------------------------------------- /plugins/Josm_relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_relation.py -------------------------------------------------------------------------------- /plugins/Josm_religion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_religion.py -------------------------------------------------------------------------------- /plugins/Josm_ru_housenumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_ru_housenumber.py -------------------------------------------------------------------------------- /plugins/Josm_territories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_territories.py -------------------------------------------------------------------------------- /plugins/Josm_transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_transport.py -------------------------------------------------------------------------------- /plugins/Josm_unnecessary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_unnecessary.py -------------------------------------------------------------------------------- /plugins/Josm_wikipedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Josm_wikipedia.py -------------------------------------------------------------------------------- /plugins/Name_Cadastre_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_Cadastre_FR.py -------------------------------------------------------------------------------- /plugins/Name_Cadastre_FR.validator.mapcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_Cadastre_FR.validator.mapcss -------------------------------------------------------------------------------- /plugins/Name_Dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_Dictionary.py -------------------------------------------------------------------------------- /plugins/Name_Dictionary_Lang_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_Dictionary_Lang_fr.py -------------------------------------------------------------------------------- /plugins/Name_Dictionary_Lang_xx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_Dictionary_Lang_xx.py -------------------------------------------------------------------------------- /plugins/Name_Initials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_Initials.py -------------------------------------------------------------------------------- /plugins/Name_Local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_Local.py -------------------------------------------------------------------------------- /plugins/Name_Local_JP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_Local_JP.py -------------------------------------------------------------------------------- /plugins/Name_MisspelledWordByRegex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_MisspelledWordByRegex.py -------------------------------------------------------------------------------- /plugins/Name_MisspelledWordByRegex_Lang_es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_MisspelledWordByRegex_Lang_es.py -------------------------------------------------------------------------------- /plugins/Name_MisspelledWordByRegex_Lang_fa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_MisspelledWordByRegex_Lang_fa.py -------------------------------------------------------------------------------- /plugins/Name_MisspelledWordByRegex_Lang_fa.validator.mapcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_MisspelledWordByRegex_Lang_fa.validator.mapcss -------------------------------------------------------------------------------- /plugins/Name_MisspelledWordByRegex_Lang_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_MisspelledWordByRegex_Lang_fr.py -------------------------------------------------------------------------------- /plugins/Name_Multilingual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_Multilingual.py -------------------------------------------------------------------------------- /plugins/Name_Multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_Multiple.py -------------------------------------------------------------------------------- /plugins/Name_PoorlyWrittenWayType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_PoorlyWrittenWayType.py -------------------------------------------------------------------------------- /plugins/Name_PoorlyWrittenWayType_Lang_ca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_PoorlyWrittenWayType_Lang_ca.py -------------------------------------------------------------------------------- /plugins/Name_PoorlyWrittenWayType_Lang_es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_PoorlyWrittenWayType_Lang_es.py -------------------------------------------------------------------------------- /plugins/Name_PoorlyWrittenWayType_Lang_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_PoorlyWrittenWayType_Lang_fr.py -------------------------------------------------------------------------------- /plugins/Name_Punctuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_Punctuation.py -------------------------------------------------------------------------------- /plugins/Name_Quotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_Quotation.py -------------------------------------------------------------------------------- /plugins/Name_Saint_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_Saint_FR.py -------------------------------------------------------------------------------- /plugins/Name_Script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_Script.py -------------------------------------------------------------------------------- /plugins/Name_ShouldBeHousenumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_ShouldBeHousenumber.py -------------------------------------------------------------------------------- /plugins/Name_Spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_Spaces.py -------------------------------------------------------------------------------- /plugins/Name_Toponymy_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_Toponymy_FR.py -------------------------------------------------------------------------------- /plugins/Name_UpperCase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_UpperCase.py -------------------------------------------------------------------------------- /plugins/Name_UpperCaseNumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Name_UpperCaseNumber.py -------------------------------------------------------------------------------- /plugins/Number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Number.py -------------------------------------------------------------------------------- /plugins/Phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Phone.py -------------------------------------------------------------------------------- /plugins/Phone2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Phone2.py -------------------------------------------------------------------------------- /plugins/Phone2.validator.mapcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Phone2.validator.mapcss -------------------------------------------------------------------------------- /plugins/Plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Plugin.py -------------------------------------------------------------------------------- /plugins/PluginMapCSS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/PluginMapCSS.py -------------------------------------------------------------------------------- /plugins/Power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Power.py -------------------------------------------------------------------------------- /plugins/Power.validator.mapcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Power.validator.mapcss -------------------------------------------------------------------------------- /plugins/Source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Source.py -------------------------------------------------------------------------------- /plugins/Source_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Source_FR.py -------------------------------------------------------------------------------- /plugins/Structural.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Structural.py -------------------------------------------------------------------------------- /plugins/Structural.validator.mapcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Structural.validator.mapcss -------------------------------------------------------------------------------- /plugins/Structural_DuplicateNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Structural_DuplicateNodes.py -------------------------------------------------------------------------------- /plugins/Structural_Multipolygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Structural_Multipolygon.py -------------------------------------------------------------------------------- /plugins/Structural_Useless_Relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Structural_Useless_Relation.py -------------------------------------------------------------------------------- /plugins/Structural_Waterway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Structural_Waterway.py -------------------------------------------------------------------------------- /plugins/Structural_WayOneNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Structural_WayOneNode.py -------------------------------------------------------------------------------- /plugins/TagFix_Access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_Access.py -------------------------------------------------------------------------------- /plugins/TagFix_Area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_Area.py -------------------------------------------------------------------------------- /plugins/TagFix_BadKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_BadKey.py -------------------------------------------------------------------------------- /plugins/TagFix_BadValue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_BadValue.py -------------------------------------------------------------------------------- /plugins/TagFix_Brand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_Brand.py -------------------------------------------------------------------------------- /plugins/TagFix_Deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_Deprecated.py -------------------------------------------------------------------------------- /plugins/TagFix_Destination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_Destination.py -------------------------------------------------------------------------------- /plugins/TagFix_Destination.validator.mapcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_Destination.validator.mapcss -------------------------------------------------------------------------------- /plugins/TagFix_DuplicateValue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_DuplicateValue.py -------------------------------------------------------------------------------- /plugins/TagFix_Housenumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_Housenumber.py -------------------------------------------------------------------------------- /plugins/TagFix_IntervalConditional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_IntervalConditional.py -------------------------------------------------------------------------------- /plugins/TagFix_Maxspeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_Maxspeed.py -------------------------------------------------------------------------------- /plugins/TagFix_Maxspeed_AT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_Maxspeed_AT.py -------------------------------------------------------------------------------- /plugins/TagFix_MultipleTag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_MultipleTag.py -------------------------------------------------------------------------------- /plugins/TagFix_MultipleTag2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_MultipleTag2.py -------------------------------------------------------------------------------- /plugins/TagFix_MultipleTag2.validator.mapcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_MultipleTag2.validator.mapcss -------------------------------------------------------------------------------- /plugins/TagFix_MultipleTag_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_MultipleTag_FR.py -------------------------------------------------------------------------------- /plugins/TagFix_MultipleTag_Lang_es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_MultipleTag_Lang_es.py -------------------------------------------------------------------------------- /plugins/TagFix_MultipleTag_Lang_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_MultipleTag_Lang_fr.py -------------------------------------------------------------------------------- /plugins/TagFix_MultipleValue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_MultipleValue.py -------------------------------------------------------------------------------- /plugins/TagFix_Note_Lang_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_Note_Lang_fr.py -------------------------------------------------------------------------------- /plugins/TagFix_Opening_Hours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_Opening_Hours.py -------------------------------------------------------------------------------- /plugins/TagFix_Pharmacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_Pharmacy.py -------------------------------------------------------------------------------- /plugins/TagFix_Postcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_Postcode.py -------------------------------------------------------------------------------- /plugins/TagFix_Role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_Role.py -------------------------------------------------------------------------------- /plugins/TagFix_Tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_Tree.py -------------------------------------------------------------------------------- /plugins/TagFix_Tree_Lang_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_Tree_Lang_fr.py -------------------------------------------------------------------------------- /plugins/TagFix_Vatin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_Vatin.py -------------------------------------------------------------------------------- /plugins/TagFix_Wikidata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_Wikidata.py -------------------------------------------------------------------------------- /plugins/TagFix_Wikipedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_Wikipedia.py -------------------------------------------------------------------------------- /plugins/TagFix_ZawgyiBurmese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagFix_ZawgyiBurmese.py -------------------------------------------------------------------------------- /plugins/TagRemove_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagRemove_FR.py -------------------------------------------------------------------------------- /plugins/TagRemove_Fixme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagRemove_Fixme.py -------------------------------------------------------------------------------- /plugins/TagRemove_Incompatibles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagRemove_Incompatibles.py -------------------------------------------------------------------------------- /plugins/TagRemove_Layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagRemove_Layer.py -------------------------------------------------------------------------------- /plugins/TagRemove_NameIsRef_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagRemove_NameIsRef_FR.py -------------------------------------------------------------------------------- /plugins/TagRemove_Naptan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagRemove_Naptan.py -------------------------------------------------------------------------------- /plugins/TagRemove_OpenSeaMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagRemove_OpenSeaMap.py -------------------------------------------------------------------------------- /plugins/TagRemove_Roundabout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagRemove_Roundabout.py -------------------------------------------------------------------------------- /plugins/TagRemove_Roundabout_Ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagRemove_Roundabout_Ref.py -------------------------------------------------------------------------------- /plugins/TagWatchFrViPofm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/TagWatchFrViPofm.py -------------------------------------------------------------------------------- /plugins/Website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/Website.py -------------------------------------------------------------------------------- /plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/__init__.py -------------------------------------------------------------------------------- /plugins/disabled/ODbL_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/disabled/ODbL_migration.py -------------------------------------------------------------------------------- /plugins/disabled/Structural_Restriction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/disabled/Structural_Restriction.py -------------------------------------------------------------------------------- /plugins/disabled/Structural_Restriction2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/disabled/Structural_Restriction2.py -------------------------------------------------------------------------------- /plugins/disabled/Structural_UnclosedArea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/disabled/Structural_UnclosedArea.py -------------------------------------------------------------------------------- /plugins/disabled/TagFix_Brand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/disabled/TagFix_Brand.py -------------------------------------------------------------------------------- /plugins/disabled/TagMissing_LookLike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/disabled/TagMissing_LookLike.py -------------------------------------------------------------------------------- /plugins/disabled/Wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/disabled/Wiki.py -------------------------------------------------------------------------------- /plugins/indoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/indoor.py -------------------------------------------------------------------------------- /plugins/indoor.validator.mapcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/indoor.validator.mapcss -------------------------------------------------------------------------------- /plugins/modules/Cuisine_Guess_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/modules/Cuisine_Guess_lib.py -------------------------------------------------------------------------------- /plugins/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/modules/name_suggestion_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/modules/name_suggestion_index.py -------------------------------------------------------------------------------- /plugins/modules/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/modules/units.py -------------------------------------------------------------------------------- /plugins/modules/wikiReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/modules/wikiReader.py -------------------------------------------------------------------------------- /plugins/notprefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/notprefix.py -------------------------------------------------------------------------------- /plugins/notprefix.validator.mapcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/notprefix.validator.mapcss -------------------------------------------------------------------------------- /plugins/tests/Josm_deprecated_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/tests/Josm_deprecated_test.py -------------------------------------------------------------------------------- /plugins/tests/Test_mapcss_item_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/tests/Test_mapcss_item_file.py -------------------------------------------------------------------------------- /plugins/tests/test_mapcss_parsing_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/tests/test_mapcss_parsing_evaluation.py -------------------------------------------------------------------------------- /plugins/tests/test_mapcss_parsing_evaluation.validator.mapcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/tests/test_mapcss_parsing_evaluation.validator.mapcss -------------------------------------------------------------------------------- /plugins/tests/wikireader_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/plugins/tests/wikireader_test.py -------------------------------------------------------------------------------- /po/.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/.tx/config -------------------------------------------------------------------------------- /po/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/Makefile -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en_devel.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/en_devel.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/es.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/et.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/fa.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/josm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/README -------------------------------------------------------------------------------- /po/josm/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/ar.po -------------------------------------------------------------------------------- /po/josm/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/ca.po -------------------------------------------------------------------------------- /po/josm/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/cs.po -------------------------------------------------------------------------------- /po/josm/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/da.po -------------------------------------------------------------------------------- /po/josm/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/de.po -------------------------------------------------------------------------------- /po/josm/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/el.po -------------------------------------------------------------------------------- /po/josm/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/es.po -------------------------------------------------------------------------------- /po/josm/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/eu.po -------------------------------------------------------------------------------- /po/josm/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/fa.po -------------------------------------------------------------------------------- /po/josm/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/fi.po -------------------------------------------------------------------------------- /po/josm/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/fr.po -------------------------------------------------------------------------------- /po/josm/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/gl.po -------------------------------------------------------------------------------- /po/josm/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/he.po -------------------------------------------------------------------------------- /po/josm/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/hu.po -------------------------------------------------------------------------------- /po/josm/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/it.po -------------------------------------------------------------------------------- /po/josm/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/ja.po -------------------------------------------------------------------------------- /po/josm/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/ko.po -------------------------------------------------------------------------------- /po/josm/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/lt.po -------------------------------------------------------------------------------- /po/josm/nb_NO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/nb_NO.po -------------------------------------------------------------------------------- /po/josm/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/nl.po -------------------------------------------------------------------------------- /po/josm/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/pl.po -------------------------------------------------------------------------------- /po/josm/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/pt.po -------------------------------------------------------------------------------- /po/josm/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/pt_BR.po -------------------------------------------------------------------------------- /po/josm/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/ro.po -------------------------------------------------------------------------------- /po/josm/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/ru.po -------------------------------------------------------------------------------- /po/josm/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/sv.po -------------------------------------------------------------------------------- /po/josm/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/uk.po -------------------------------------------------------------------------------- /po/josm/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/vi.po -------------------------------------------------------------------------------- /po/josm/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/zh_CN.po -------------------------------------------------------------------------------- /po/josm/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/josm/zh_TW.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/nb_NO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/nb_NO.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/osmose-backend.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/osmose-backend.pot -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/transport_mapcss/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/ar.po -------------------------------------------------------------------------------- /po/transport_mapcss/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/cs.po -------------------------------------------------------------------------------- /po/transport_mapcss/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/de.po -------------------------------------------------------------------------------- /po/transport_mapcss/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/el.po -------------------------------------------------------------------------------- /po/transport_mapcss/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/es.po -------------------------------------------------------------------------------- /po/transport_mapcss/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/eu.po -------------------------------------------------------------------------------- /po/transport_mapcss/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/fa.po -------------------------------------------------------------------------------- /po/transport_mapcss/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/fr.po -------------------------------------------------------------------------------- /po/transport_mapcss/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/gl.po -------------------------------------------------------------------------------- /po/transport_mapcss/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/hu.po -------------------------------------------------------------------------------- /po/transport_mapcss/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/it.po -------------------------------------------------------------------------------- /po/transport_mapcss/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/ja.po -------------------------------------------------------------------------------- /po/transport_mapcss/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/nl.po -------------------------------------------------------------------------------- /po/transport_mapcss/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/pl.po -------------------------------------------------------------------------------- /po/transport_mapcss/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/pt_BR.po -------------------------------------------------------------------------------- /po/transport_mapcss/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/ru.po -------------------------------------------------------------------------------- /po/transport_mapcss/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/sv.po -------------------------------------------------------------------------------- /po/transport_mapcss/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/uk.po -------------------------------------------------------------------------------- /po/transport_mapcss/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/vi.po -------------------------------------------------------------------------------- /po/transport_mapcss/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/zh_CN.po -------------------------------------------------------------------------------- /po/transport_mapcss/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/transport_mapcss/zh_TW.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /pylama.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/pylama.ini -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/gibraltar.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/gibraltar.osm.pbf -------------------------------------------------------------------------------- /tests/osmbin_open_relations.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmbin_open_relations.osm -------------------------------------------------------------------------------- /tests/osmosis.test.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmosis.test.osm -------------------------------------------------------------------------------- /tests/osmosis_building_in_polygon.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmosis_building_in_polygon.osm -------------------------------------------------------------------------------- /tests/osmosis_camp_pitch_outside_site.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmosis_camp_pitch_outside_site.osm -------------------------------------------------------------------------------- /tests/osmosis_double_tagging.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmosis_double_tagging.osm -------------------------------------------------------------------------------- /tests/osmosis_highway_access_barrier.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmosis_highway_access_barrier.osm -------------------------------------------------------------------------------- /tests/osmosis_highway_almost_junction.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmosis_highway_almost_junction.osm -------------------------------------------------------------------------------- /tests/osmosis_highway_deadend.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmosis_highway_deadend.osm -------------------------------------------------------------------------------- /tests/osmosis_highway_link.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmosis_highway_link.osm -------------------------------------------------------------------------------- /tests/osmosis_highway_tunnel_bridge.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmosis_highway_tunnel_bridge.osm -------------------------------------------------------------------------------- /tests/osmosis_highway_vs_building.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmosis_highway_vs_building.osm -------------------------------------------------------------------------------- /tests/osmosis_noexit.test.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmosis_noexit.test.osm -------------------------------------------------------------------------------- /tests/osmosis_parking_highway.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmosis_parking_highway.osm -------------------------------------------------------------------------------- /tests/osmosis_polygon_intersects.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmosis_polygon_intersects.osm -------------------------------------------------------------------------------- /tests/osmosis_polygon_small.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmosis_polygon_small.osm -------------------------------------------------------------------------------- /tests/osmosis_powerline.test.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmosis_powerline.test.osm -------------------------------------------------------------------------------- /tests/osmosis_relation_cyclic.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmosis_relation_cyclic.osm -------------------------------------------------------------------------------- /tests/osmosis_relation_duplicate_member.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmosis_relation_duplicate_member.osm -------------------------------------------------------------------------------- /tests/osmosis_roundabout.test.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmosis_roundabout.test.osm -------------------------------------------------------------------------------- /tests/osmosis_roundabout_level.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmosis_roundabout_level.osm -------------------------------------------------------------------------------- /tests/osmosis_roundabout_reverse.test.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/osmosis_roundabout_reverse.test.osm -------------------------------------------------------------------------------- /tests/results/osmosis_noexit.test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/results/osmosis_noexit.test.xml -------------------------------------------------------------------------------- /tests/results/osmosis_roundabout_reverse.test.left.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/results/osmosis_roundabout_reverse.test.left.osm -------------------------------------------------------------------------------- /tests/results/osmosis_roundabout_reverse.test.right.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/results/osmosis_roundabout_reverse.test.right.osm -------------------------------------------------------------------------------- /tests/results/sax.test.FR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/results/sax.test.FR.xml -------------------------------------------------------------------------------- /tests/results/sax.test.Lang_fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/results/sax.test.Lang_fr.xml -------------------------------------------------------------------------------- /tests/results/sax.test.Lang_fr_nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/results/sax.test.Lang_fr_nl.xml -------------------------------------------------------------------------------- /tests/results/sax.test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/results/sax.test.xml -------------------------------------------------------------------------------- /tests/results/sax.test_resume.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/results/sax.test_resume.xml -------------------------------------------------------------------------------- /tests/results/sax.test_resume_empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/results/sax.test_resume_empty.xml -------------------------------------------------------------------------------- /tests/results/sax.test_resume_full.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/results/sax.test_resume_full.xml -------------------------------------------------------------------------------- /tests/saint_barthelemy.osc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/saint_barthelemy.osc.gz -------------------------------------------------------------------------------- /tests/saint_barthelemy.osm.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/saint_barthelemy.osm.bz2 -------------------------------------------------------------------------------- /tests/saint_barthelemy.osm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/saint_barthelemy.osm.gz -------------------------------------------------------------------------------- /tests/saint_barthelemy.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/saint_barthelemy.osm.pbf -------------------------------------------------------------------------------- /tests/saint_barthelemy.state.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/saint_barthelemy.state.txt -------------------------------------------------------------------------------- /tests/state1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/state1.txt -------------------------------------------------------------------------------- /tests/state2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/state2.txt -------------------------------------------------------------------------------- /tests/state3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tests/state3.txt -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/analyse-log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tools/analyse-log.py -------------------------------------------------------------------------------- /tools/check-boundary-polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tools/check-boundary-polygon.py -------------------------------------------------------------------------------- /tools/clean-merge-tables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tools/clean-merge-tables -------------------------------------------------------------------------------- /tools/clean-old-jobs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tools/clean-old-jobs -------------------------------------------------------------------------------- /tools/confusables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tools/confusables.rb -------------------------------------------------------------------------------- /tools/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tools/docker-entrypoint.sh -------------------------------------------------------------------------------- /tools/generate-cover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tools/generate-cover.sh -------------------------------------------------------------------------------- /tools/logs-buildbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tools/logs-buildbot.py -------------------------------------------------------------------------------- /tools/manual_review_merge_pitch_FR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tools/manual_review_merge_pitch_FR.py -------------------------------------------------------------------------------- /tools/pyflakes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tools/pyflakes.sh -------------------------------------------------------------------------------- /tools/pytest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tools/pytest.sh -------------------------------------------------------------------------------- /tools/requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tools/requirements.sh -------------------------------------------------------------------------------- /tools/slave_kill_osmose_python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tools/slave_kill_osmose_python.sh -------------------------------------------------------------------------------- /tools/test-polygons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmose-qa/osmose-backend/HEAD/tools/test-polygons.py --------------------------------------------------------------------------------