├── .github └── workflows │ └── release.yml ├── .gitignore ├── CHANGES.md ├── CONTRIBUTING.md ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── docs ├── arcgis.md ├── arcgis_chart_example.png ├── mapserver.md └── qgis.md ├── pyproject.toml ├── src └── bridgestyle │ ├── __init__.py │ ├── arcgis │ ├── __init__.py │ ├── constants.py │ ├── expressions.py │ ├── fromgeostyler.py │ ├── togeostyler.py │ └── wkt_geometries.py │ ├── geostyler │ ├── __init__.py │ └── custom_properties.py │ ├── mapboxgl │ ├── __init__.py │ ├── fromgeostyler.py │ └── togeostyler.py │ ├── mapserver │ ├── __init__.py │ ├── fromgeostyler.py │ └── togeostyler.py │ ├── qgis │ ├── __init__.py │ ├── expressions.py │ ├── fromgeostyler.py │ └── togeostyler.py │ ├── sld │ ├── __init__.py │ ├── fromgeostyler.py │ ├── parsecdata.py │ ├── togeostyler.py │ └── transformations.py │ ├── style2style.py │ └── version.py └── test ├── arcgistogeostyler.py ├── context.py ├── data ├── arcgis │ ├── Cartographic Line.lyrx │ ├── Cities.lyrx │ ├── Countries.lyrx │ ├── Hash Line.lyrx │ ├── Marker Line.lyrx │ └── test.lyrx ├── qgis │ ├── line │ │ ├── basic.geostyler │ │ ├── basic.qml │ │ ├── labeloffset.geostyler │ │ ├── labeloffset.qml │ │ └── testlayer.gpkg │ ├── points │ │ ├── categorized.qml │ │ ├── else_rule.qml │ │ ├── fontmarker.geostyler │ │ ├── fontmarker.qml │ │ ├── fontmarker2chars.geostyler │ │ ├── fontmarker2chars.qml │ │ ├── heatmap.qml │ │ ├── heatmap_color.qml │ │ ├── honeycomb.qml │ │ ├── label_buffer.qml │ │ ├── labels_offset.qml │ │ ├── map_units.qml │ │ ├── nosymbols.geostyler │ │ ├── nosymbols.qml │ │ ├── offset.geostyler │ │ ├── offset.qml │ │ ├── rotated_font_marker_and_circle.qml │ │ ├── rotated_svg.qml │ │ ├── rule_no_filter.qml │ │ ├── simplemarker.geostyler │ │ ├── simplemarker.qml │ │ ├── size_based_on_expression.qml │ │ ├── size_based_on_property.qml │ │ ├── testlayer.gpkg │ │ ├── transparentfill.geostyler │ │ └── transparentfill.qml │ └── single_polygon │ │ ├── geometry_generator_centroid.qml │ │ ├── outline_simple_line.qml │ │ ├── outline_simple_line_with_offset.qml │ │ ├── point_pattern_fill.qml │ │ ├── point_pattern_fill_svg.qml │ │ ├── simple.geostyler │ │ ├── simple.qml │ │ ├── simple_cross_hatch.qml │ │ ├── simple_dash_outline.geostyler │ │ ├── simple_dash_outline.qml │ │ ├── simple_empty_fill.geostyler │ │ ├── simple_empty_fill.qml │ │ ├── simple_hairstyle_width.geostyler │ │ ├── simple_hairstyle_width.qml │ │ ├── simple_horline_fill.geostyler │ │ ├── simple_horline_fill.qml │ │ ├── simple_noborder.geostyler │ │ ├── simple_noborder.qml │ │ ├── simple_nofill.geostyler │ │ ├── simple_nofill.qml │ │ ├── testlayer.gpkg │ │ └── two_simple_fill_symbol_layers.qml └── sample.geostyler └── qgistogeostyler.py /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/README.md -------------------------------------------------------------------------------- /docs/arcgis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/docs/arcgis.md -------------------------------------------------------------------------------- /docs/arcgis_chart_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/docs/arcgis_chart_example.png -------------------------------------------------------------------------------- /docs/mapserver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/docs/mapserver.md -------------------------------------------------------------------------------- /docs/qgis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/docs/qgis.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/bridgestyle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/__init__.py -------------------------------------------------------------------------------- /src/bridgestyle/arcgis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/arcgis/__init__.py -------------------------------------------------------------------------------- /src/bridgestyle/arcgis/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/arcgis/constants.py -------------------------------------------------------------------------------- /src/bridgestyle/arcgis/expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/arcgis/expressions.py -------------------------------------------------------------------------------- /src/bridgestyle/arcgis/fromgeostyler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/arcgis/fromgeostyler.py -------------------------------------------------------------------------------- /src/bridgestyle/arcgis/togeostyler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/arcgis/togeostyler.py -------------------------------------------------------------------------------- /src/bridgestyle/arcgis/wkt_geometries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/arcgis/wkt_geometries.py -------------------------------------------------------------------------------- /src/bridgestyle/geostyler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/geostyler/__init__.py -------------------------------------------------------------------------------- /src/bridgestyle/geostyler/custom_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/geostyler/custom_properties.py -------------------------------------------------------------------------------- /src/bridgestyle/mapboxgl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/mapboxgl/__init__.py -------------------------------------------------------------------------------- /src/bridgestyle/mapboxgl/fromgeostyler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/mapboxgl/fromgeostyler.py -------------------------------------------------------------------------------- /src/bridgestyle/mapboxgl/togeostyler.py: -------------------------------------------------------------------------------- 1 | def convert(style, options=None): 2 | pass # TODO 3 | -------------------------------------------------------------------------------- /src/bridgestyle/mapserver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/mapserver/__init__.py -------------------------------------------------------------------------------- /src/bridgestyle/mapserver/fromgeostyler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/mapserver/fromgeostyler.py -------------------------------------------------------------------------------- /src/bridgestyle/mapserver/togeostyler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/mapserver/togeostyler.py -------------------------------------------------------------------------------- /src/bridgestyle/qgis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/qgis/__init__.py -------------------------------------------------------------------------------- /src/bridgestyle/qgis/expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/qgis/expressions.py -------------------------------------------------------------------------------- /src/bridgestyle/qgis/fromgeostyler.py: -------------------------------------------------------------------------------- 1 | def convert(style, options=None): 2 | pass # TODO 3 | -------------------------------------------------------------------------------- /src/bridgestyle/qgis/togeostyler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/qgis/togeostyler.py -------------------------------------------------------------------------------- /src/bridgestyle/sld/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/sld/__init__.py -------------------------------------------------------------------------------- /src/bridgestyle/sld/fromgeostyler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/sld/fromgeostyler.py -------------------------------------------------------------------------------- /src/bridgestyle/sld/parsecdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/sld/parsecdata.py -------------------------------------------------------------------------------- /src/bridgestyle/sld/togeostyler.py: -------------------------------------------------------------------------------- 1 | def convert(geostyler, options=None): 2 | return {}, [] 3 | -------------------------------------------------------------------------------- /src/bridgestyle/sld/transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/sld/transformations.py -------------------------------------------------------------------------------- /src/bridgestyle/style2style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/src/bridgestyle/style2style.py -------------------------------------------------------------------------------- /src/bridgestyle/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1.6.dev0" 2 | -------------------------------------------------------------------------------- /test/arcgistogeostyler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/arcgistogeostyler.py -------------------------------------------------------------------------------- /test/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/context.py -------------------------------------------------------------------------------- /test/data/arcgis/Cartographic Line.lyrx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/arcgis/Cartographic Line.lyrx -------------------------------------------------------------------------------- /test/data/arcgis/Cities.lyrx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/arcgis/Cities.lyrx -------------------------------------------------------------------------------- /test/data/arcgis/Countries.lyrx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/arcgis/Countries.lyrx -------------------------------------------------------------------------------- /test/data/arcgis/Hash Line.lyrx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/arcgis/Hash Line.lyrx -------------------------------------------------------------------------------- /test/data/arcgis/Marker Line.lyrx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/arcgis/Marker Line.lyrx -------------------------------------------------------------------------------- /test/data/arcgis/test.lyrx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/arcgis/test.lyrx -------------------------------------------------------------------------------- /test/data/qgis/line/basic.geostyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/line/basic.geostyler -------------------------------------------------------------------------------- /test/data/qgis/line/basic.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/line/basic.qml -------------------------------------------------------------------------------- /test/data/qgis/line/labeloffset.geostyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/line/labeloffset.geostyler -------------------------------------------------------------------------------- /test/data/qgis/line/labeloffset.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/line/labeloffset.qml -------------------------------------------------------------------------------- /test/data/qgis/line/testlayer.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/line/testlayer.gpkg -------------------------------------------------------------------------------- /test/data/qgis/points/categorized.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/categorized.qml -------------------------------------------------------------------------------- /test/data/qgis/points/else_rule.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/else_rule.qml -------------------------------------------------------------------------------- /test/data/qgis/points/fontmarker.geostyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/fontmarker.geostyler -------------------------------------------------------------------------------- /test/data/qgis/points/fontmarker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/fontmarker.qml -------------------------------------------------------------------------------- /test/data/qgis/points/fontmarker2chars.geostyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/fontmarker2chars.geostyler -------------------------------------------------------------------------------- /test/data/qgis/points/fontmarker2chars.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/fontmarker2chars.qml -------------------------------------------------------------------------------- /test/data/qgis/points/heatmap.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/heatmap.qml -------------------------------------------------------------------------------- /test/data/qgis/points/heatmap_color.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/heatmap_color.qml -------------------------------------------------------------------------------- /test/data/qgis/points/honeycomb.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/honeycomb.qml -------------------------------------------------------------------------------- /test/data/qgis/points/label_buffer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/label_buffer.qml -------------------------------------------------------------------------------- /test/data/qgis/points/labels_offset.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/labels_offset.qml -------------------------------------------------------------------------------- /test/data/qgis/points/map_units.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/map_units.qml -------------------------------------------------------------------------------- /test/data/qgis/points/nosymbols.geostyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/nosymbols.geostyler -------------------------------------------------------------------------------- /test/data/qgis/points/nosymbols.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/nosymbols.qml -------------------------------------------------------------------------------- /test/data/qgis/points/offset.geostyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/offset.geostyler -------------------------------------------------------------------------------- /test/data/qgis/points/offset.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/offset.qml -------------------------------------------------------------------------------- /test/data/qgis/points/rotated_font_marker_and_circle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/rotated_font_marker_and_circle.qml -------------------------------------------------------------------------------- /test/data/qgis/points/rotated_svg.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/rotated_svg.qml -------------------------------------------------------------------------------- /test/data/qgis/points/rule_no_filter.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/rule_no_filter.qml -------------------------------------------------------------------------------- /test/data/qgis/points/simplemarker.geostyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/simplemarker.geostyler -------------------------------------------------------------------------------- /test/data/qgis/points/simplemarker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/simplemarker.qml -------------------------------------------------------------------------------- /test/data/qgis/points/size_based_on_expression.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/size_based_on_expression.qml -------------------------------------------------------------------------------- /test/data/qgis/points/size_based_on_property.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/size_based_on_property.qml -------------------------------------------------------------------------------- /test/data/qgis/points/testlayer.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/testlayer.gpkg -------------------------------------------------------------------------------- /test/data/qgis/points/transparentfill.geostyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/transparentfill.geostyler -------------------------------------------------------------------------------- /test/data/qgis/points/transparentfill.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/points/transparentfill.qml -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/geometry_generator_centroid.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/geometry_generator_centroid.qml -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/outline_simple_line.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/outline_simple_line.qml -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/outline_simple_line_with_offset.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/outline_simple_line_with_offset.qml -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/point_pattern_fill.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/point_pattern_fill.qml -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/point_pattern_fill_svg.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/point_pattern_fill_svg.qml -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/simple.geostyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/simple.geostyler -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/simple.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/simple.qml -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/simple_cross_hatch.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/simple_cross_hatch.qml -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/simple_dash_outline.geostyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/simple_dash_outline.geostyler -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/simple_dash_outline.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/simple_dash_outline.qml -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/simple_empty_fill.geostyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/simple_empty_fill.geostyler -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/simple_empty_fill.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/simple_empty_fill.qml -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/simple_hairstyle_width.geostyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/simple_hairstyle_width.geostyler -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/simple_hairstyle_width.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/simple_hairstyle_width.qml -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/simple_horline_fill.geostyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/simple_horline_fill.geostyler -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/simple_horline_fill.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/simple_horline_fill.qml -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/simple_noborder.geostyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/simple_noborder.geostyler -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/simple_noborder.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/simple_noborder.qml -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/simple_nofill.geostyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/simple_nofill.geostyler -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/simple_nofill.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/simple_nofill.qml -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/testlayer.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/testlayer.gpkg -------------------------------------------------------------------------------- /test/data/qgis/single_polygon/two_simple_fill_symbol_layers.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/qgis/single_polygon/two_simple_fill_symbol_layers.qml -------------------------------------------------------------------------------- /test/data/sample.geostyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/data/sample.geostyler -------------------------------------------------------------------------------- /test/qgistogeostyler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoCat/bridge-style/HEAD/test/qgistogeostyler.py --------------------------------------------------------------------------------