Merge branch 'master' into openid

Conflicts:
	app/controllers/user_controller.rb
	app/views/user/terms.html.erb
	test/fixtures/users.yml
This commit is contained in:
Tom Hughes 2011-05-21 12:14:56 +01:00
commit 832b96b75a
299 changed files with 19654 additions and 6456 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

Before After
Before After

3349
public/images/osm_logo.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 160 KiB

BIN
public/images/sotm.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View file

@ -149,7 +149,7 @@ function addObjectToMap(url, zoom, callback) {
layer.loadGML();
}
function addBoxToMap(boxbounds) {
function addBoxToMap(boxbounds, id, outline) {
if (!vectors) {
// Be aware that IE requires Vector layers be initialised on page load, and not under deferred script conditions
vectors = new OpenLayers.Layer.Vector("Boxes", {
@ -157,12 +157,20 @@ function addBoxToMap(boxbounds) {
});
map.addLayer(vectors);
}
var geometry = boxbounds.toGeometry().transform(epsg4326, map.getProjectionObject());
var geometry;
if (outline) {
vertices = boxbounds.toGeometry().getVertices();
vertices.push(new OpenLayers.Geometry.Point(vertices[0].x, vertices[0].y));
geometry = new OpenLayers.Geometry.LineString(vertices).transform(epsg4326, map.getProjectionObject());
} else {
geometry = boxbounds.toGeometry().transform(epsg4326, map.getProjectionObject());
}
var box = new OpenLayers.Feature.Vector(geometry, {}, {
strokeWidth: 2,
strokeColor: '#ee9900',
fillOpacity: 0
});
box.fid = id;
vectors.addFeatures(box);
@ -243,6 +251,8 @@ function setMapLayers(layerConfig) {
if (c == "B") {
map.setBaseLayer(layers[i]);
} else {
map.layers[i].setVisibility(false);
}
}
} else {
@ -252,7 +262,7 @@ function setMapLayers(layerConfig) {
if (map.layers[i].isBaseLayer) {
map.setBaseLayer(map.layers[i]);
} else {
map.layers[i].setVisibility(true);
map.layers[i].setVisibility(true);
}
} else {
map.layers[i].setVisibility(false);

View file

@ -729,7 +729,7 @@ var failure;if(config.failure){failure=(config.scope)?OpenLayers.Function.bind(c
complete(request);if(!request.status||(request.status>=200&&request.status<300)){this.events.triggerEvent("success",options);if(success){success(request);}}
if(request.status&&(request.status<200||request.status>=300)){this.events.triggerEvent("failure",options);if(failure){failure(request);}}},GET:function(config){config=OpenLayers.Util.extend(config,{method:"GET"});return OpenLayers.Request.issue(config);},POST:function(config){config=OpenLayers.Util.extend(config,{method:"POST"});config.headers=config.headers?config.headers:{};if(!("CONTENT-TYPE"in OpenLayers.Util.upperCaseObject(config.headers))){config.headers["Content-Type"]="application/xml";}
return OpenLayers.Request.issue(config);},PUT:function(config){config=OpenLayers.Util.extend(config,{method:"PUT"});config.headers=config.headers?config.headers:{};if(!("CONTENT-TYPE"in OpenLayers.Util.upperCaseObject(config.headers))){config.headers["Content-Type"]="application/xml";}
return OpenLayers.Request.issue(config);},DELETE:function(config){config=OpenLayers.Util.extend(config,{method:"DELETE"});return OpenLayers.Request.issue(config);},HEAD:function(config){config=OpenLayers.Util.extend(config,{method:"HEAD"});return OpenLayers.Request.issue(config);},OPTIONS:function(config){config=OpenLayers.Util.extend(config,{method:"OPTIONS"});return OpenLayers.Request.issue(config);}};OpenLayers.Tile.Image=OpenLayers.Class(OpenLayers.Tile,{url:null,imgDiv:null,frame:null,layerAlphaHack:null,isBackBuffer:false,lastRatio:1,isFirstDraw:true,backBufferTile:null,initialize:function(layer,position,bounds,url,size){OpenLayers.Tile.prototype.initialize.apply(this,arguments);this.url=url;this.frame=document.createElement('div');this.frame.style.overflow='hidden';this.frame.style.position='absolute';this.layerAlphaHack=this.layer.alpha&&OpenLayers.Util.alphaHack();},destroy:function(){if(this.imgDiv!=null){if(this.layerAlphaHack){OpenLayers.Event.stopObservingElement(this.imgDiv.childNodes[0]);}
return OpenLayers.Request.issue(config);},DELETE:function(config){config=OpenLayers.Util.extend(config,{method:"DELETE"});return OpenLayers.Request.issue(config);},HEAD:function(config){config=OpenLayers.Util.extend(config,{method:"HEAD"});return OpenLayers.Request.issue(config);},OPTIONS:function(config){config=OpenLayers.Util.extend(config,{method:"OPTIONS"});return OpenLayers.Request.issue(config);}};OpenLayers.Tile.Image=OpenLayers.Class(OpenLayers.Tile,{url:null,imgDiv:null,frame:null,layerAlphaHack:null,isBackBuffer:false,isFirstDraw:true,backBufferTile:null,initialize:function(layer,position,bounds,url,size){OpenLayers.Tile.prototype.initialize.apply(this,arguments);this.url=url;this.frame=document.createElement('div');this.frame.style.overflow='hidden';this.frame.style.position='absolute';this.layerAlphaHack=this.layer.alpha&&OpenLayers.Util.alphaHack();},destroy:function(){if(this.imgDiv!=null){if(this.layerAlphaHack){OpenLayers.Event.stopObservingElement(this.imgDiv.childNodes[0]);}
OpenLayers.Event.stopObservingElement(this.imgDiv);if(this.imgDiv.parentNode==this.frame){this.frame.removeChild(this.imgDiv);this.imgDiv.map=null;}
this.imgDiv.urls=null;this.imgDiv.src=OpenLayers.Util.getImagesLocation()+"blank.gif";}
this.imgDiv=null;if((this.frame!=null)&&(this.frame.parentNode==this.layer.div)){this.layer.div.removeChild(this.frame);}
@ -750,9 +750,8 @@ this.imgDiv.className='olTileImage';this.frame.style.zIndex=this.isBackBuffer?0:
this.imgDiv.map=this.layer.map;var onload=function(){if(this.isLoading){this.isLoading=false;this.events.triggerEvent("loadend");}};if(this.layerAlphaHack){OpenLayers.Event.observe(this.imgDiv.childNodes[0],'load',OpenLayers.Function.bind(onload,this));}else{OpenLayers.Event.observe(this.imgDiv,'load',OpenLayers.Function.bind(onload,this));}
var onerror=function(){if(this.imgDiv._attempts>OpenLayers.IMAGE_RELOAD_ATTEMPTS){onload.call(this);}};OpenLayers.Event.observe(this.imgDiv,"error",OpenLayers.Function.bind(onerror,this));},checkImgURL:function(){if(this.layer){var loaded=this.layerAlphaHack?this.imgDiv.firstChild.src:this.imgDiv.src;if(!OpenLayers.Util.isEquivalentUrl(loaded,this.url)){this.hide();}}},startTransition:function(){if(!this.backBufferTile||!this.backBufferTile.imgDiv){return;}
var ratio=1;if(this.backBufferTile.resolution){ratio=this.backBufferTile.resolution/this.layer.getResolution();}
if(ratio!=this.lastRatio){if(this.layer.transitionEffect=='resize'){var upperLeft=new OpenLayers.LonLat(this.backBufferTile.bounds.left,this.backBufferTile.bounds.top);var size=new OpenLayers.Size(this.backBufferTile.size.w*ratio,this.backBufferTile.size.h*ratio);var px=this.layer.map.getLayerPxFromLonLat(upperLeft);OpenLayers.Util.modifyDOMElement(this.backBufferTile.frame,null,px,size);var imageSize=this.backBufferTile.imageSize;imageSize=new OpenLayers.Size(imageSize.w*ratio,imageSize.h*ratio);var imageOffset=this.backBufferTile.imageOffset;if(imageOffset){imageOffset=new OpenLayers.Pixel(imageOffset.x*ratio,imageOffset.y*ratio);}
OpenLayers.Util.modifyDOMElement(this.backBufferTile.imgDiv,null,imageOffset,imageSize);this.backBufferTile.show();}}else{if(this.layer.singleTile){this.backBufferTile.show();}else{this.backBufferTile.hide();}}
this.lastRatio=ratio;},show:function(){this.frame.style.display='';if(OpenLayers.Util.indexOf(this.layer.SUPPORTED_TRANSITIONS,this.layer.transitionEffect)!=-1){if(navigator.userAgent.toLowerCase().indexOf("gecko")!=-1){this.frame.scrollLeft=this.frame.scrollLeft;}}},hide:function(){this.frame.style.display='none';},CLASS_NAME:"OpenLayers.Tile.Image"});OpenLayers.Tile.Image.useBlankTile=(OpenLayers.Util.getBrowserName()=="safari"||OpenLayers.Util.getBrowserName()=="opera");OpenLayers.Feature=OpenLayers.Class({layer:null,id:null,lonlat:null,data:null,marker:null,popupClass:OpenLayers.Popup.AnchoredBubble,popup:null,initialize:function(layer,lonlat,data){this.layer=layer;this.lonlat=lonlat;this.data=(data!=null)?data:{};this.id=OpenLayers.Util.createUniqueID(this.CLASS_NAME+"_");},destroy:function(){if((this.layer!=null)&&(this.layer.map!=null)){if(this.popup!=null){this.layer.map.removePopup(this.popup);}}
if(ratio!=1){if(this.layer.transitionEffect=='resize'){var upperLeft=new OpenLayers.LonLat(this.backBufferTile.bounds.left,this.backBufferTile.bounds.top);var size=new OpenLayers.Size(this.backBufferTile.size.w*ratio,this.backBufferTile.size.h*ratio);var px=this.layer.map.getLayerPxFromLonLat(upperLeft);OpenLayers.Util.modifyDOMElement(this.backBufferTile.frame,null,px,size);var imageSize=this.backBufferTile.imageSize;imageSize=new OpenLayers.Size(imageSize.w*ratio,imageSize.h*ratio);var imageOffset=this.backBufferTile.imageOffset;if(imageOffset){imageOffset=new OpenLayers.Pixel(imageOffset.x*ratio,imageOffset.y*ratio);}
OpenLayers.Util.modifyDOMElement(this.backBufferTile.imgDiv,null,imageOffset,imageSize);this.backBufferTile.show();}}else{if(this.layer.singleTile){this.backBufferTile.show();}else{this.backBufferTile.hide();}}},show:function(){this.frame.style.display='';if(OpenLayers.Util.indexOf(this.layer.SUPPORTED_TRANSITIONS,this.layer.transitionEffect)!=-1){if(navigator.userAgent.toLowerCase().indexOf("gecko")!=-1){this.frame.scrollLeft=this.frame.scrollLeft;}}},hide:function(){this.frame.style.display='none';},CLASS_NAME:"OpenLayers.Tile.Image"});OpenLayers.Tile.Image.useBlankTile=(OpenLayers.Util.getBrowserName()=="safari"||OpenLayers.Util.getBrowserName()=="opera");OpenLayers.Feature=OpenLayers.Class({layer:null,id:null,lonlat:null,data:null,marker:null,popupClass:OpenLayers.Popup.AnchoredBubble,popup:null,initialize:function(layer,lonlat,data){this.layer=layer;this.lonlat=lonlat;this.data=(data!=null)?data:{};this.id=OpenLayers.Util.createUniqueID(this.CLASS_NAME+"_");},destroy:function(){if((this.layer!=null)&&(this.layer.map!=null)){if(this.popup!=null){this.layer.map.removePopup(this.popup);}}
if(this.layer!=null&&this.marker!=null){this.layer.removeMarker(this.marker);}
this.layer=null;this.id=null;this.lonlat=null;this.data=null;if(this.marker!=null){this.destroyMarker(this.marker);this.marker=null;}
if(this.popup!=null){this.destroyPopup(this.popup);this.popup=null;}},onScreen:function(){var onScreen=false;if((this.layer!=null)&&(this.layer.map!=null)){var screenBounds=this.layer.map.getExtent();onScreen=screenBounds.containsLonLat(this.lonlat);}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1,127 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="64px"
height="64px"
id="svg3646"
version="1.1"
inkscape:version="0.47pre4 r22446"
sodipodi:docname="barrier_generic.svg"
inkscape:export-filename="/home/andy/src/potlatch2/resources/features/power_high.png"
inkscape:export-xdpi="66.09375"
inkscape:export-ydpi="66.09375">
<defs
id="defs3648">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 32 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="64 : 32 : 1"
inkscape:persp3d-origin="32 : 21.333333 : 1"
id="perspective3654" />
<inkscape:perspective
id="perspective4207"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective4277"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective4305"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective4327"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective4327-8"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.375"
inkscape:cx="-31.684888"
inkscape:cy="-6.6968199"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:document-units="px"
inkscape:grid-bbox="true"
inkscape:window-width="1680"
inkscape:window-height="1026"
inkscape:window-x="1280"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata3651">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<rect
style="fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.50000000000000000;stroke-miterlimit:4;stroke-dasharray:none"
id="rect3656"
width="64.363632"
height="64"
x="0"
y="0"
ry="8.0227919"
rx="6.6013985"
inkscape:export-xdpi="33.75"
inkscape:export-ydpi="33.75"
inkscape:export-filename="/home/andy/src/potlatch2/resources/features/pois/barrier_generic.24.png" />
<path
style="fill:#d0d0d0;fill-opacity:1;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M 22.299999,14.663637 57.306901,27.14564 57.699998,45.651763 22.845454,54.063636 22.299999,14.663637 z"
id="rect4392"
sodipodi:nodetypes="ccccc" />
<rect
style="fill:#d0d0d0;fill-opacity:1;stroke:#060502;stroke-width:2.97073364000000018;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect4395"
width="15.840281"
height="40.567558"
x="6.0798597"
y="14.26168"
rx="0" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 743 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 385 B

After

Width:  |  Height:  |  Size: 310 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 506 B

After

Width:  |  Height:  |  Size: 320 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 389 B

After

Width:  |  Height:  |  Size: 308 B

Before After
Before After

View file

@ -1,217 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="343pt"
height="340pt"
id="svg2816"
version="1.1"
inkscape:version="0.47pre4 r22446"
sodipodi:docname="paths__footway.svg"
inkscape:export-filename="/home/andy/src/potlatch2/resources/features/paths__footway.png"
inkscape:export-xdpi="8.3623695"
inkscape:export-ydpi="8.3623695">
<defs
id="defs2818">
<linearGradient
inkscape:collect="always"
id="linearGradient3619">
<stop
style="stop-color:#00ffff;stop-opacity:1;"
offset="0"
id="stop3621" />
<stop
style="stop-color:#00ffff;stop-opacity:0;"
offset="1"
id="stop3623" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient3609">
<stop
style="stop-color:#008000;stop-opacity:1;"
offset="0"
id="stop3611" />
<stop
style="stop-color:#008000;stop-opacity:0;"
offset="1"
id="stop3613" />
</linearGradient>
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 212.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="428.75 : 212.5 : 1"
inkscape:persp3d-origin="214.375 : 141.66667 : 1"
id="perspective2825" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3609"
id="linearGradient3615"
x1="215"
y1="188.25"
x2="215"
y2="430.5"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3619"
id="linearGradient3625"
x1="215"
y1="188.75"
x2="215"
y2="0"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.001462,0,0,1,-1.2518275,0)" />
<inkscape:perspective
id="perspective2916"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.8"
inkscape:cx="-194.58464"
inkscape:cy="251.7971"
inkscape:document-units="pt"
inkscape:current-layer="layer1"
id="namedview2820"
showgrid="false"
inkscape:window-width="1680"
inkscape:window-height="1026"
inkscape:window-x="1280"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata2822">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:url(#linearGradient3615);fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1.0"
id="rect2827"
width="430"
height="241.25"
x="0"
y="188.75" />
<rect
style="fill:url(#linearGradient3625);fill-opacity:1"
id="rect3617"
width="428.125"
height="188.75"
x="0"
y="-6.5955419e-10" />
<g
id="g2319"
transform="translate(641.02874,-121.48949)"
style="fill:#000000;fill-opacity:1;stroke:#e6f708;stroke-opacity:1">
<path
id="path2323"
style="fill:#000000;stroke:#e6f708;fill-opacity:1;stroke-opacity:1"
d="" />
</g>
<g
id="g2325"
transform="translate(641.02874,-121.48949)"
style="fill:#000000;fill-opacity:1;stroke:#e6f708;stroke-opacity:1">
<path
id="path2329"
style="fill:#000000;stroke:#e6f708;fill-opacity:1;stroke-opacity:1"
d="" />
</g>
<g
id="g3757"
transform="matrix(0.81866272,0,0,0.81866272,168.38354,110.75723)">
<path
d="m 278.91286,461.96271 c 0,43.28842 -35.0922,78.38061 -78.38062,78.38061 -43.28842,0 -78.38061,-35.09219 -78.38061,-78.38061 0,-43.28842 35.09219,-78.38062 78.38061,-78.38062 43.28842,0 78.38062,35.0922 78.38062,78.38062 z"
id="path596"
sodipodi:cx="200.53224"
sodipodi:cy="461.96271"
sodipodi:rx="78.380615"
sodipodi:ry="78.380615"
sodipodi:type="arc"
style="font-size:12px;fill:none;stroke:#4a4a4a;stroke-width:26;stroke-opacity:1"
transform="matrix(-0.983459,0,0,0.983459,85.159738,-260.18659)" />
<path
d="m 278.91286,461.96271 c 0,43.28842 -35.0922,78.38061 -78.38062,78.38061 -43.28842,0 -78.38061,-35.09219 -78.38061,-78.38061 0,-43.28842 35.09219,-78.38062 78.38061,-78.38062 43.28842,0 78.38062,35.0922 78.38062,78.38062 z"
id="path595"
sodipodi:cx="200.53224"
sodipodi:cy="461.96271"
sodipodi:rx="78.380615"
sodipodi:ry="78.380615"
sodipodi:type="arc"
style="font-size:12px;fill:none;stroke:#4a4a4a;stroke-width:26;stroke-opacity:1"
transform="matrix(-0.983459,0,0,0.983459,415.52074,-261.68759)" />
<path
d="m 157.23838,61.490482 -198.216442,1.00111 -70.076498,130.142098 134.146488,0 140.153012,-95.103825"
id="path594"
sodipodi:nodetypes="ccccc"
style="font-size:12px;fill:none;stroke:#4a4a4a;stroke-width:20.52969933;stroke-linejoin:round;stroke-opacity:1" />
<path
d="m 149.62164,-16.503568 c 10.76679,0 18.90504,-0.24023 27.24667,12.5033196 2.40112,4.24812997 3.49891,9.43507 2.61231,14.5982204 -1.06358,5.87102 -4.53943,11.6392 -8.63703,15.05385 -5.4259,4.52159 -10.57524,4.17279 -9.74304,8.23745 1.06778,5.21545 4.32649,12.463 7.84807,24.23155 3.57467,11.94585 7.81937,26.566463 11.98592,40.967243 4.16655,14.400745 8.2566,28.589435 11.49416,39.645695 1.61883,5.5281 3.0326,10.27493 4.11828,13.8299 1.05776,3.46359 1.99166,6.15402 1.90542,5.96221 3.37308,5.93469 3.83222,9.80168 9.48991,14.85291 6.34352,5.55178 11.50835,9.65313 13.30083,10.90597 4.55283,3.30733 6.6694,10.28705 4.26519,13.73578 -3.0299,4.70007 -9.28742,5.42104 -13.86085,4.01492 -4.34258,-1.37853 -11.21684,-3.74643 -19.18802,-10.34857 l -0.0615,-0.0922 -0.0922,-0.0615 c -11.09146,-9.51363 -15.19483,-21.0602 -15.61239,-21.72827 l -0.58395,-0.89127 -0.39954,-0.98346 c -0.96107,-2.36581 -1.53677,-4.45189 -2.67376,-8.17502 -1.13702,-3.72312 -2.5784,-8.53309 -4.21046,-14.10649 -3.26407,-11.14676 -7.33336,-25.35702 -11.49416,-39.73789 -4.16083,-14.380855 -8.39513,-28.927018 -11.92445,-40.721368 -3.52934,-11.79434 -5.75905,-21.48095 -6.58328,-23.54157 -2.00615,-5.01532 -3.03104,-10.42981 -1.65961,-15.85829 1.37142,-5.42846 5.46959,-9.80971 9.14835,-10.82817 8.39707,-2.34923 6.16904,-8.3891804 1.873,-8.3979404 l -36.0005,-0.0733 -0.0887,-22.9932596 c 2.3e-4,-5e-4 23.36782,-5e-4 37.52535,-5e-4 z"
id="path593"
sodipodi:nodetypes="ccccscccccsscsccccccccccccssccc"
style="font-size:12px;fill:#4a4a4a;fill-opacity:1;fill-rule:evenodd;stroke:none" />
<path
d="M 20.523428,188.5589 -47.433032,22.207192"
id="path599"
style="font-size:12px;fill:none;stroke:#4a4a4a;stroke-width:24.58650017;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="M 43.884728,146.0842 2.825168,241.65182"
id="path600"
style="font-size:12px;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#4a4a4a;stroke-width:8.9740696;stroke-linecap:round;stroke-opacity:1" />
<path
d="m 278.91286,461.96271 c 0,43.28842 -35.0922,78.38061 -78.38062,78.38061 -43.28842,0 -78.38061,-35.09219 -78.38061,-78.38061 0,-43.28842 35.09219,-78.38062 78.38061,-78.38062 43.28842,0 78.38062,35.0922 78.38062,78.38062 z"
id="path597"
sodipodi:cx="200.53224"
sodipodi:cy="461.96271"
sodipodi:rx="78.380615"
sodipodi:ry="78.380615"
sodipodi:type="arc"
style="font-size:12px;fill:#4a4a4a;fill-opacity:1;fill-rule:evenodd;stroke:none"
transform="matrix(-0.277291,0,0,0.244915,77.946738,79.741412)" />
<path
d="m 62.163838,146.12777 -36.26994,0.33246"
id="path601"
sodipodi:nodetypes="cc"
style="font-size:12px;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#4a4a4a;stroke-width:12.53960037;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 21.314628,240.27904 -36.26994,0.33247"
id="path602"
sodipodi:nodetypes="cc"
style="font-size:12px;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#4a4a4a;stroke-width:12.53909969;stroke-linecap:round;stroke-opacity:1" />
<path
d="m -80.703712,7.3411716 85.29957,0 c 3.18547,0 7.29693,5.6348704 3.18547,9.3794104 -4.44674,4.23206 -44.4195,12.9188 -44.4195,12.9188 0,0 -10.97213,3.00849 -16.81217,2.30063 -5.84,-0.70788 -26.01458,-2.47758 -27.25337,-24.5988404 z"
id="path603"
sodipodi:nodetypes="cssccc"
style="font-size:12px;fill:#4a4a4a;fill-opacity:1;fill-rule:evenodd;stroke:none" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 9.6 KiB

View file

@ -1,125 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="343pt"
height="340pt"
id="svg2816"
version="1.1"
inkscape:version="0.47pre4 r22446"
sodipodi:docname="New document 2">
<defs
id="defs2818">
<linearGradient
inkscape:collect="always"
id="linearGradient3619">
<stop
style="stop-color:#00ffff;stop-opacity:1;"
offset="0"
id="stop3621" />
<stop
style="stop-color:#00ffff;stop-opacity:0;"
offset="1"
id="stop3623" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient3609">
<stop
style="stop-color:#008000;stop-opacity:1;"
offset="0"
id="stop3611" />
<stop
style="stop-color:#008000;stop-opacity:0;"
offset="1"
id="stop3613" />
</linearGradient>
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 212.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="428.75 : 212.5 : 1"
inkscape:persp3d-origin="214.375 : 141.66667 : 1"
id="perspective2825" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3609"
id="linearGradient3615"
x1="215"
y1="188.25"
x2="215"
y2="430.5"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3619"
id="linearGradient3625"
x1="215"
y1="188.75"
x2="215"
y2="0"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.8"
inkscape:cx="256.88645"
inkscape:cy="210"
inkscape:document-units="pt"
inkscape:current-layer="layer1"
id="namedview2820"
showgrid="false"
inkscape:window-width="1680"
inkscape:window-height="1026"
inkscape:window-x="1280"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata2822">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:url(#linearGradient3615);fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1.0"
id="rect2827"
width="430"
height="241.25"
x="0"
y="188.75" />
<rect
style="fill:url(#linearGradient3625);fill-opacity:1"
id="rect3617"
width="427.5"
height="188.75"
x="1.25"
y="0" />
<path
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#c9c9c9;fill-opacity:1;stroke:#252525;stroke-width:6.25;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:AlArabiya;-inkscape-font-specification:AlArabiya;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 369.45207,213.25233 c 0.18987,-19.53568 -1.94101,-38.91836 -6.31128,-57.29252 C 351.48675,106.96205 324.81421,65.392665 287.92068,40.76116 214.13363,-8.501849 123.09905,20.805383 79.863235,114.45988 58.245333,161.28712 53.955156,217.54242 65.609196,266.54018 c 11.65404,48.99776 24.576584,60.56714 56.470114,90.19865 l 37.03982,-37.00768 c -27.16569,-18.13684 -44.05003,-46.51028 -51.06982,-76.02401 -7.0198,-29.51372 -5.10163,-60.34816 8.84437,-90.55705 27.892,-60.417779 98.40581,-86.654908 152.73718,-50.38125 27.16569,18.13684 44.05003,46.51028 51.06982,76.02401 7.01979,29.51372 5.10163,60.34816 -8.84437,90.55705 -9.90297,21.45116 -25.53118,40.09075 -45.23082,52.31899 l 30.94501,37.68589 c 28.05712,-17.89009 32.06564,-21.48829 51.31625,-51.31467 17.48058,-27.08394 20.24887,-62.22831 20.56532,-94.78778 z"
id="path3627"
sodipodi:nodetypes="cssssccsssssccsc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.8 KiB

View file

@ -1,133 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="343pt"
height="340pt"
id="svg2816"
version="1.1"
inkscape:version="0.47pre4 r22446"
sodipodi:docname="paths__footway.svg"
inkscape:export-filename="/home/andy/src/potlatch2/resources/features/paths__footway.png"
inkscape:export-xdpi="8.3623695"
inkscape:export-ydpi="8.3623695">
<defs
id="defs2818">
<linearGradient
inkscape:collect="always"
id="linearGradient3619">
<stop
style="stop-color:#00ffff;stop-opacity:1;"
offset="0"
id="stop3621" />
<stop
style="stop-color:#00ffff;stop-opacity:0;"
offset="1"
id="stop3623" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient3609">
<stop
style="stop-color:#008000;stop-opacity:1;"
offset="0"
id="stop3611" />
<stop
style="stop-color:#008000;stop-opacity:0;"
offset="1"
id="stop3613" />
</linearGradient>
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 212.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="428.75 : 212.5 : 1"
inkscape:persp3d-origin="214.375 : 141.66667 : 1"
id="perspective2825" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3609"
id="linearGradient3615"
x1="215"
y1="188.25"
x2="215"
y2="430.5"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3619"
id="linearGradient3625"
x1="215"
y1="188.75"
x2="215"
y2="0"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.001462,0,0,1,-1.2518275,0)" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.6"
inkscape:cx="132.44999"
inkscape:cy="194.75636"
inkscape:document-units="pt"
inkscape:current-layer="layer1"
id="namedview2820"
showgrid="false"
inkscape:window-width="1680"
inkscape:window-height="1026"
inkscape:window-x="1280"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata2822">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:url(#linearGradient3615);fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1.0"
id="rect2827"
width="430"
height="241.25"
x="0"
y="188.75" />
<rect
style="fill:url(#linearGradient3625);fill-opacity:1"
id="rect3617"
width="428.125"
height="188.75"
x="0"
y="-6.5955419e-10" />
<path
style="fill:#53dd51;fill-opacity:1;stroke:#4a4a4a;stroke-width:114.11499786;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 212.1875,104.1875 c -10.2939,0 -18.625,25.12042 -18.625,56.125 0,14.26614 1.77703,27.28377 4.6875,37.1875 l 27.875,0 c 2.91047,-9.90373 4.6875,-22.92136 4.6875,-37.1875 0,-31.00458 -8.3311,-56.125 -18.625,-56.125 z"
id="rect3858" />
<path
style="fill:#4a4a4a;fill-opacity:1;stroke:none"
d="m 161.25,276.875 c -12.11732,10.32046 -6.03125,26.63817 -6.03125,43.4375 0,31.10997 26.21316,56.34375 58.53125,56.34375 32.31809,0 58.53125,-25.23378 58.53125,-56.34375 0,-16.79933 6.71107,-31.86704 -5.40625,-42.1875 l -105.625,-1.25 z"
id="rect3861"
sodipodi:nodetypes="cssscc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.4 KiB

View file

@ -1,137 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="343pt"
height="340pt"
id="svg2816"
version="1.1"
inkscape:version="0.47pre4 r22446"
sodipodi:docname="paths__footway.svg"
inkscape:export-filename="/home/andy/src/potlatch2/resources/features/paths__footway.png"
inkscape:export-xdpi="8.3623695"
inkscape:export-ydpi="8.3623695">
<defs
id="defs2818">
<linearGradient
inkscape:collect="always"
id="linearGradient3619">
<stop
style="stop-color:#00ffff;stop-opacity:1;"
offset="0"
id="stop3621" />
<stop
style="stop-color:#00ffff;stop-opacity:0;"
offset="1"
id="stop3623" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient3609">
<stop
style="stop-color:#008000;stop-opacity:1;"
offset="0"
id="stop3611" />
<stop
style="stop-color:#008000;stop-opacity:0;"
offset="1"
id="stop3613" />
</linearGradient>
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 212.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="428.75 : 212.5 : 1"
inkscape:persp3d-origin="214.375 : 141.66667 : 1"
id="perspective2825" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3609"
id="linearGradient3615"
x1="215"
y1="188.25"
x2="215"
y2="430.5"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3619"
id="linearGradient3625"
x1="215"
y1="188.75"
x2="215"
y2="0"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.001462,0,0,1,-1.2518275,0)" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.1313709"
inkscape:cx="85.306552"
inkscape:cy="201.90418"
inkscape:document-units="pt"
inkscape:current-layer="layer1"
id="namedview2820"
showgrid="false"
inkscape:window-width="1680"
inkscape:window-height="1026"
inkscape:window-x="1280"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata2822">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:url(#linearGradient3615);fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1.0"
id="rect2827"
width="430"
height="241.25"
x="0"
y="188.75" />
<rect
style="fill:url(#linearGradient3625);fill-opacity:1"
id="rect3617"
width="428.125"
height="188.75"
x="0"
y="-6.5955419e-10" />
<path
style="fill:#b8b8b8;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
d="M 138.125,188.75 0.625,425 428.75,426.25 285,188.75 l -146.875,0 z"
id="path3886" />
<path
style="fill:#53dd51;fill-opacity:1;stroke:#4a4a4a;stroke-width:114.11499786;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 212.1875,104.1875 c -10.2939,0 -18.625,25.12042 -18.625,56.125 0,14.26614 1.77703,27.28377 4.6875,37.1875 l 27.875,0 c 2.91047,-9.90373 4.6875,-22.92136 4.6875,-37.1875 0,-31.00458 -8.3311,-56.125 -18.625,-56.125 z"
id="rect3858" />
<path
style="fill:#4a4a4a;fill-opacity:1;stroke:none"
d="m 161.25,276.875 c -12.11732,10.32046 -6.03125,26.63817 -6.03125,43.4375 0,31.10997 26.21316,56.34375 58.53125,56.34375 32.31809,0 58.53125,-25.23378 58.53125,-56.34375 0,-16.79933 6.71107,-31.86704 -5.40625,-42.1875 l -105.625,-1.25 z"
id="rect3861"
sodipodi:nodetypes="cssscc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.6 KiB

View file

@ -1,125 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="343pt"
height="340pt"
id="svg2816"
version="1.1"
inkscape:version="0.47 r22583"
sodipodi:docname="paths__unknown.svg">
<defs
id="defs2818">
<linearGradient
inkscape:collect="always"
id="linearGradient3619">
<stop
style="stop-color:#00ffff;stop-opacity:1;"
offset="0"
id="stop3621" />
<stop
style="stop-color:#00ffff;stop-opacity:0;"
offset="1"
id="stop3623" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient3609">
<stop
style="stop-color:#008000;stop-opacity:1;"
offset="0"
id="stop3611" />
<stop
style="stop-color:#008000;stop-opacity:0;"
offset="1"
id="stop3613" />
</linearGradient>
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 212.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="428.75 : 212.5 : 1"
inkscape:persp3d-origin="214.375 : 141.66667 : 1"
id="perspective2825" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3609"
id="linearGradient3615"
x1="215"
y1="188.25"
x2="215"
y2="430.5"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3619"
id="linearGradient3625"
x1="215"
y1="188.75"
x2="215"
y2="0"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.001462,0,0,1,-1.2518275,0)" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.6"
inkscape:cx="266.82499"
inkscape:cy="119.75636"
inkscape:document-units="pt"
inkscape:current-layer="layer1"
id="namedview2820"
showgrid="false"
inkscape:window-width="1280"
inkscape:window-height="720"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="0" />
<metadata
id="metadata2822">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:url(#linearGradient3615);fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1.0"
id="rect2827"
width="430"
height="241.25"
x="0"
y="188.75" />
<rect
style="fill:url(#linearGradient3625);fill-opacity:1"
id="rect3617"
width="428.125"
height="188.75"
x="0"
y="-6.5955419e-10" />
<path
style="fill:none;stroke:#000000;stroke-width:27.25000000000000000;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 66.875,383.125 0,-115 160,0 0,-126.875 148.125,0"
id="path3780" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,135 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="343pt"
height="340pt"
id="svg2816"
version="1.1"
inkscape:version="0.47pre4 r22446"
sodipodi:docname="paths__bridleway.svg">
<defs
id="defs2818">
<linearGradient
inkscape:collect="always"
id="linearGradient3619">
<stop
style="stop-color:#00ffff;stop-opacity:1;"
offset="0"
id="stop3621" />
<stop
style="stop-color:#00ffff;stop-opacity:0;"
offset="1"
id="stop3623" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient3609">
<stop
style="stop-color:#008000;stop-opacity:1;"
offset="0"
id="stop3611" />
<stop
style="stop-color:#008000;stop-opacity:0;"
offset="1"
id="stop3613" />
</linearGradient>
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 212.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="428.75 : 212.5 : 1"
inkscape:persp3d-origin="214.375 : 141.66667 : 1"
id="perspective2825" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3609"
id="linearGradient3615"
x1="215"
y1="188.25"
x2="215"
y2="430.5"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3619"
id="linearGradient3625"
x1="215"
y1="188.75"
x2="215"
y2="0"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.001462,0,0,1,-1.2518275,0)" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.6"
inkscape:cx="132.44999"
inkscape:cy="194.75636"
inkscape:document-units="pt"
inkscape:current-layer="layer1"
id="namedview2820"
showgrid="false"
inkscape:window-width="1680"
inkscape:window-height="1026"
inkscape:window-x="1280"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata2822">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:url(#linearGradient3615);fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1.0"
id="rect2827"
width="430"
height="241.25"
x="0"
y="188.75" />
<rect
style="fill:url(#linearGradient3625);fill-opacity:1"
id="rect3617"
width="428.125"
height="188.75"
x="0"
y="-6.5955419e-10" />
<path
style="fill:none;stroke:#000000;stroke-width:29.5175;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 158.47151,82.606455 c 181.33464,-72.601854 153.00069,81.768265 31.55906,116.334585 -21.23621,6.04453 0,148.80004 0,148.80004"
id="path3038"
sodipodi:nodetypes="csc" />
<path
sodipodi:type="arc"
style="fill:#999999;stroke:#010101;stroke-width:29.51749991999999878;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path3812"
sodipodi:cx="200"
sodipodi:cy="392.5"
sodipodi:rx="8.75"
sodipodi:ry="7.5"
d="m 208.75,392.5 a 8.75,7.5 0 1 1 -17.5,0 8.75,7.5 0 1 1 17.5,0 z" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 993 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 976 B

After

Width:  |  Height:  |  Size: 1 KiB

Before After
Before After

Binary file not shown.

After

Width:  |  Height:  |  Size: 621 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 238 B

View file

@ -1,76 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="64px"
height="64px"
id="svg3646"
version="1.1"
inkscape:version="0.47pre4 r22446"
sodipodi:docname="barrier_generic.svg"
inkscape:export-filename="/home/andy/src/potlatch2/resources/features/pois/barrier_generic.24.png"
inkscape:export-xdpi="33.75"
inkscape:export-ydpi="33.75">
<defs
id="defs3648">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 32 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="64 : 32 : 1"
inkscape:persp3d-origin="32 : 21.333333 : 1"
id="perspective3654" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.5"
inkscape:cx="-0.27272727"
inkscape:cy="32"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:document-units="px"
inkscape:grid-bbox="true"
inkscape:window-width="1680"
inkscape:window-height="1026"
inkscape:window-x="1280"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata3651">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<rect
style="fill:#666666;fill-opacity:1;stroke:none"
id="rect3656"
width="64.363632"
height="64"
x="0"
y="0"
ry="8.0227919"
rx="6.6013985" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 928 B

After

Width:  |  Height:  |  Size: 1.1 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 477 B

After

Width:  |  Height:  |  Size: 498 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 982 B

After

Width:  |  Height:  |  Size: 1 KiB

Before After
Before After

Binary file not shown.

After

Width:  |  Height:  |  Size: 781 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 384 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 257 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 519 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 297 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 758 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 822 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 435 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 596 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 836 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 815 B

After

Width:  |  Height:  |  Size: 750 B

Before After
Before After

Binary file not shown.

After

Width:  |  Height:  |  Size: 727 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 953 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 912 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,000 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 632 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 663 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 961 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 920 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 980 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 393 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 400 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 753 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 849 B

View file

@ -1,100 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="744.09448819"
height="1052.3622047"
id="svg2"
version="1.1"
inkscape:version="0.47pre4 r22446"
sodipodi:docname="New document 1">
<defs
id="defs4">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective10" />
<inkscape:perspective
id="perspective3602"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective3602-1"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="259.38208"
inkscape:cy="445.21264"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1680"
inkscape:window-height="1026"
inkscape:window-x="1280"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:#6fc3ff;fill-opacity:1;stroke:none"
id="rect3590"
width="274.28571"
height="274.28571"
x="152.85715"
y="240.93361"
ry="32.857143" />
<path
style="fill:none;stroke:#ffffff;stroke-width:14.30000000000000071;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 191.42857,353.79075 c 0,0 27.14285,-52.85714 62.85714,-51.42857 42.85714,1.42857 50.00001,55.71429 85.71429,57.14286 34.28572,0 44.28571,-54.28571 44.28571,-54.28571"
id="path3592"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:14.30000019;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 196.42857,400.94783 c 0,0 27.14285,-52.85714 62.85714,-51.42857 42.85714,1.42857 50.00001,55.71429 85.71429,57.14286 34.28572,0 44.28571,-54.28571 44.28571,-54.28571"
id="path3592-8"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:14.30000019;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 200.71429,446.66212 c 0,0 27.14285,-52.85714 62.85714,-51.42857 42.85714,1.42857 50.00001,55.71429 85.71429,57.14286 34.28572,0 44.28571,-54.28571 44.28571,-54.28571"
id="path3592-9"
sodipodi:nodetypes="cccc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

View file

@ -1,162 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="64px"
height="64px"
id="svg3646"
version="1.1"
inkscape:version="0.47pre4 r22446"
sodipodi:docname="power_high.svg"
inkscape:export-filename="/home/andy/src/potlatch2/resources/features/power_low.png"
inkscape:export-xdpi="66.09375"
inkscape:export-ydpi="66.09375">
<defs
id="defs3648">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 32 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="64 : 32 : 1"
inkscape:persp3d-origin="32 : 21.333333 : 1"
id="perspective3654" />
<inkscape:perspective
id="perspective4207"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective4277"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective4305"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective4327"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective4327-8"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.5"
inkscape:cx="-9.928737"
inkscape:cy="27.153396"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:document-units="px"
inkscape:grid-bbox="true"
inkscape:window-width="1680"
inkscape:window-height="1026"
inkscape:window-x="1280"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata3651">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<rect
style="fill:#fecb00;fill-opacity:1;stroke:none;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
id="rect3656"
width="64.363632"
height="64"
x="0"
y="0"
ry="8.0227919"
rx="6.6013985"
inkscape:export-xdpi="33.75"
inkscape:export-ydpi="33.75"
inkscape:export-filename="/home/andy/src/potlatch2/resources/features/pois/barrier_generic.24.png" />
<path
style="fill:none;stroke:#a3a3a3;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 4.2760698,18.390932 C 17.693215,29.541568 47.802016,24.335727 52.269385,22.230116"
id="path4197-3"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 3.2727273,44.727273 5.6363636,-29.636364 3.0909091,0 6,29.454546"
id="path4263" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 3.8181818,18.727273 13.7727272,-1e-6"
id="path4265"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 3.0909091,23.363636 15.4999999,0"
id="path4267"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.40356085px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 51.843338,32.843675 2.274616,-11.960077 1.247369,0 2.421366,11.886703"
id="path4263-3" />
<path
style="fill:none;stroke:#000000;stroke-width:0.40356085px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 52.063462,22.351093 5.558134,-10e-7"
id="path4265-9"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.40356085px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 51.769963,24.222148 6.255194,0"
id="path4267-3"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#a3a3a3;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M 4.0942516,23.730029 C 17.511397,34.880665 47.529289,26.311188 51.996658,24.205577"
id="path4197-3-9"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#a3a3a3;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 14.912433,18.548211 c 13.417145,11.150636 37.616855,5.853886 42.084224,3.748275"
id="path4197-3-9-2"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#a3a3a3;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 15.457888,23.63912 c 13.417145,11.150636 36.980491,2.672068 41.44786,0.566457"
id="path4197-3-9-6"
sodipodi:nodetypes="cc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.3 KiB

View file

@ -1,114 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="64px"
height="64px"
id="svg3646"
version="1.1"
inkscape:version="0.47pre4 r22446"
sodipodi:docname="barrier_generic.svg"
inkscape:export-filename="/home/andy/src/potlatch2/resources/features/pois/barrier_generic.24.png"
inkscape:export-xdpi="33.75"
inkscape:export-ydpi="33.75">
<defs
id="defs3648">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 32 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="64 : 32 : 1"
inkscape:persp3d-origin="32 : 21.333333 : 1"
id="perspective3654" />
<inkscape:perspective
id="perspective4207"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.5"
inkscape:cx="1.1920149"
inkscape:cy="24.791019"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:document-units="px"
inkscape:grid-bbox="true"
inkscape:window-width="1680"
inkscape:window-height="1026"
inkscape:window-x="1280"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata3651">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<rect
style="fill:#fecb00;fill-opacity:1;stroke:none"
id="rect3656"
width="64.363632"
height="64"
x="0"
y="0"
ry="8.0227919"
rx="6.6013985"
inkscape:export-xdpi="33.75"
inkscape:export-ydpi="33.75"
inkscape:export-filename="/home/andy/src/potlatch2/resources/features/pois/barrier_generic.24.png" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 50.727273,26.181818 5.818182,0"
id="path4195" />
<path
style="fill:none;stroke:#453a1b;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 53.454545,40.545455 10e-7,-15.909091"
id="path4193"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#a3a3a3;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 13.818182,18.181818 c 13.469645,7.863274 29.696969,9.939394 41.454545,8"
id="path4197"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#a3a3a3;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 4.1818185,18.296681 C 17.651463,26.159955 41.696969,30.145166 51.999999,25.933045"
id="path4197-3"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#453a1b;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 9.8181818,50.496516 1e-7,-37.138302"
id="path4189"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 0.72591841,19.144162 19.27543559,0"
id="path4191" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 375 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 508 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 391 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 508 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 393 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 508 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 387 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 788 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 10 KiB

View file

@ -1,91 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="64px"
height="64px"
id="svg2383"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docname="subway.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="7.75"
inkscape:cx="32"
inkscape:cy="32"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:document-units="px"
inkscape:grid-bbox="true"
inkscape:window-width="1280"
inkscape:window-height="725"
inkscape:window-x="0"
inkscape:window-y="25" />
<defs
id="defs2385">
<inkscape:perspective
id="perspective2391"
inkscape:persp3d-origin="32 : 21.333333 : 1"
inkscape:vp_z="64 : 32 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 32 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 8 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="16 : 8 : 1"
inkscape:persp3d-origin="8 : 5.3333333 : 1"
id="perspective3435" />
</defs>
<metadata
id="metadata2388">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
inkscape:label="Layer 1"
id="layer1">
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
d="M 25.46875,18.3125 L 21.9375,18.3125 C 17.624757,18.3125 14.1875,21.843505 14.1875,26.15625 L 14.1875,42.125 C 14.1875,45.575195 16.403044,48.473161 19.5,49.5 L 19.5,51.96875 L 22.25,51.96875 L 22.25,50 L 41.46875,50 L 41.46875,51.96875 L 44.21875,51.96875 L 44.21875,49.59375 C 47.45359,48.639973 49.812506,45.679434 49.8125,42.125 L 49.8125,26.15625 C 49.8125,21.843508 46.375238,18.3125 42.0625,18.3125 L 38.03125,18.3125 L 25.46875,18.3125 z M 34.90625,18.3125 L 28.625,18.3125 L 34.90625,18.3125 z M 20.1875,22.125 L 43.21875,22.125 C 44.859176,22.125001 46.28125,23.422081 46.28125,25.0625 L 46.28125,35.9375 C 46.281243,37.577922 44.859168,38.875 43.21875,38.875 L 20.1875,38.875 C 18.547082,38.875006 17.15625,37.577923 17.15625,35.9375 L 17.15625,25.0625 C 17.15625,23.422081 18.547081,22.125 20.1875,22.125 z M 21.03125,41.09375 C 22.38454,41.093751 23.46875,42.20921 23.46875,43.5625 C 23.46875,44.91579 22.38454,46 21.03125,46 C 19.67796,45.999999 18.59375,44.91579 18.59375,43.5625 C 18.59375,42.20921 19.67796,41.09375 21.03125,41.09375 z M 42.375,41.09375 C 43.728289,41.093751 44.84375,42.20921 44.84375,43.5625 C 44.843751,44.91579 43.72829,46 42.375,46 C 41.021708,45.999999 39.9375,44.91579 39.9375,43.5625 C 39.9375,42.20921 41.02171,41.09375 42.375,41.09375 z"
id="rect4085"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccsssccsssc" />
<path
sodipodi:type="arc"
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#7f7f7f;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3478"
sodipodi:cx="31.870968"
sodipodi:cy="29.290323"
sodipodi:rx="24.774193"
sodipodi:ry="24.774193"
d="M 56.645161,29.290323 A 24.774193,24.774193 0 1 1 7.0967751,29.290323 A 24.774193,24.774193 0 1 1 56.645161,29.290323 z"
transform="translate(0.1290321,6)" />
<rect
style="opacity:1;fill:#7f7f7f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3480"
width="60"
height="5"
x="2"
y="1.2903225" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.4 KiB

View file

@ -1,88 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="64px"
height="64px"
id="svg2383"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docname="tram.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="7.75"
inkscape:cx="32"
inkscape:cy="32"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:document-units="px"
inkscape:grid-bbox="true"
inkscape:window-width="1280"
inkscape:window-height="725"
inkscape:window-x="0"
inkscape:window-y="25" />
<defs
id="defs2385">
<inkscape:perspective
id="perspective2391"
inkscape:persp3d-origin="32 : 21.333333 : 1"
inkscape:vp_z="64 : 32 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 32 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 8 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="16 : 8 : 1"
inkscape:persp3d-origin="8 : 5.3333333 : 1"
id="perspective3435" />
</defs>
<metadata
id="metadata2388">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
inkscape:label="Layer 1"
id="layer1">
<path
sodipodi:nodetypes="ccccc"
id="path3446"
d="M 51.618364,66.685745 L 45.651403,65.483871 L 40.59365,44.351457 L 42.98465,44.817898 L 51.618364,66.685745 z"
style="opacity:1;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2342611;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
style="opacity:1;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2342611;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 11.968523,65.395422 L 17.677419,64.83871 L 23.037461,44.860302 L 20.816077,44.902706 L 11.968523,65.395422 z"
id="path3444"
sodipodi:nodetypes="ccccc" />
<path
style="opacity:1;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2342611;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 30.53125 44.875 L 30.34375 49.28125 L 33.375 49.28125 L 32.90625 45.34375 L 30.53125 44.875 z M 30.25 51.21875 L 29.96875 57.28125 L 34.34375 57.28125 L 33.625 51.21875 L 30.25 51.21875 z M 29.8125 60.90625 L 29.59375 66 L 35.5625 67.1875 L 34.8125 60.90625 L 29.8125 60.90625 z "
id="path3448" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
d="M 25.359198,4.6875 L 25.375,7.03125 L 25.59375,7.03125 L 19.53125,10.6875 L 25.46875,14.3125 L 21.9375,14.3125 C 17.624757,14.3125 14.1875,17.843505 14.1875,22.15625 L 14.1875,38.125 C 14.1875,41.575195 16.403044,44.473161 19.5,45.5 L 19.5,47.96875 L 22.25,47.96875 L 22.25,46 L 41.46875,46 L 41.46875,47.96875 L 44.21875,47.96875 L 44.21875,45.59375 C 47.45359,44.639973 49.812506,41.679434 49.8125,38.125 L 49.8125,22.15625 C 49.8125,17.843508 46.375238,14.3125 42.0625,14.3125 L 38.03125,14.3125 L 44.09375,10.6875 L 38.15625,7.03125 L 38.424619,7.03125 L 38.408817,4.6875 L 25.359198,4.6875 z M 28.75,7.03125 L 35.03125,7.03125 L 40.96875,10.6875 L 34.90625,14.3125 L 28.625,14.3125 L 22.6875,10.6875 L 28.75,7.03125 z M 20.1875,18.125 L 43.21875,18.125 C 44.859176,18.125001 46.28125,19.422081 46.28125,21.0625 L 46.28125,31.9375 C 46.281243,33.577922 44.859168,34.875 43.21875,34.875 L 20.1875,34.875 C 18.547082,34.875006 17.15625,33.577923 17.15625,31.9375 L 17.15625,21.0625 C 17.15625,19.422081 18.547081,18.125 20.1875,18.125 z M 21.03125,37.09375 C 22.38454,37.093751 23.46875,38.20921 23.46875,39.5625 C 23.46875,40.91579 22.38454,42 21.03125,42 C 19.67796,41.999999 18.59375,40.91579 18.59375,39.5625 C 18.59375,38.20921 19.67796,37.09375 21.03125,37.09375 z M 42.375,37.09375 C 43.728289,37.093751 44.84375,38.20921 44.84375,39.5625 C 44.843751,40.91579 43.72829,42 42.375,42 C 41.021708,41.999999 39.9375,40.91579 39.9375,39.5625 C 39.9375,38.20921 41.02171,37.09375 42.375,37.09375 z"
id="rect4085"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccsssccsssc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -1,176 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="343pt"
height="340pt"
id="svg3001"
version="1.1"
inkscape:version="0.47pre4 r22446"
sodipodi:docname="New document 8">
<defs
id="defs3003">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 212.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="428.75 : 212.5 : 1"
inkscape:persp3d-origin="214.375 : 141.66667 : 1"
id="perspective3010" />
<inkscape:perspective
id="perspective2961"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3619"
id="linearGradient3625"
x1="215"
y1="188.75"
x2="215"
y2="0"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.001462,0,0,1,-1.2518275,0)" />
<linearGradient
inkscape:collect="always"
id="linearGradient3619">
<stop
style="stop-color:#00ffff;stop-opacity:1;"
offset="0"
id="stop3621" />
<stop
style="stop-color:#00ffff;stop-opacity:0;"
offset="1"
id="stop3623" />
</linearGradient>
<linearGradient
y2="0"
x2="215"
y1="188.75"
x1="215"
gradientTransform="matrix(1.001462,0,0,1,-0.314327,-0.625)"
gradientUnits="userSpaceOnUse"
id="linearGradient2970"
xlink:href="#linearGradient3619"
inkscape:collect="always" />
<inkscape:perspective
id="perspective3039"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<linearGradient
gradientTransform="translate(150.71429,368.70147)"
y2="430.5"
x2="215"
y1="188.25"
x1="215"
gradientUnits="userSpaceOnUse"
id="linearGradient2932"
xlink:href="#linearGradient3609"
inkscape:collect="always" />
<linearGradient
inkscape:collect="always"
id="linearGradient3609">
<stop
style="stop-color:#008000;stop-opacity:1;"
offset="0"
id="stop3611" />
<stop
style="stop-color:#008000;stop-opacity:0;"
offset="1"
id="stop3613" />
</linearGradient>
<linearGradient
y2="430.5"
x2="215"
y1="188.25"
x1="215"
gradientTransform="translate(1.250011,-1.87501)"
gradientUnits="userSpaceOnUse"
id="linearGradient3048"
xlink:href="#linearGradient3609"
inkscape:collect="always" />
<inkscape:perspective
id="perspective3077"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.6"
inkscape:cx="180.09249"
inkscape:cy="197.39958"
inkscape:document-units="pt"
inkscape:current-layer="layer1"
id="namedview3005"
showgrid="false"
inkscape:window-width="1294"
inkscape:window-height="851"
inkscape:window-x="1660"
inkscape:window-y="0"
inkscape:window-maximized="0" />
<metadata
id="metadata3007">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:url(#linearGradient2970);fill-opacity:1"
id="rect3617"
width="428.125"
height="188.75"
x="0.9375"
y="-0.625" />
<rect
style="fill:url(#linearGradient3048);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="rect2827"
width="430"
height="241.25"
x="1.25"
y="186.875" />
<path
style="fill:#3144d6;fill-opacity:1;stroke:#000000;stroke-width:1.2310518px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2.9270183,310.47891 427.8949617,2.84307 -0.62467,-94.76896 -429.1442841,1.89539 1.8739924,90.0305 z"
id="path2904"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#5e1400;fill-opacity:1;stroke:#000000;stroke-width:1.2688756px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 71.049006,265.24391 282.115414,0.87164 36.07613,-59.27301 -320.356112,-0.87166 2.164568,59.27303 z"
id="path3091" />
<path
style="fill:#942406;fill-opacity:1;stroke:#000000;stroke-width:1.2688756px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 120.11255,163.25945 0,41.83977 246.7608,1.74332 -0.72151,-42.71145 -246.03929,-0.87164 z"
id="path3093" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1 KiB

Before After
Before After

View file

@ -1,180 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="343pt"
height="340pt"
id="svg3001"
version="1.1"
inkscape:version="0.47pre4 r22446"
sodipodi:docname="waterway__dam.svg"
inkscape:export-filename="/home/andy/src/potlatch2/resources/features/waterway__dam.png"
inkscape:export-xdpi="8.3623695"
inkscape:export-ydpi="8.3623695">
<defs
id="defs3003">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 212.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="428.75 : 212.5 : 1"
inkscape:persp3d-origin="214.375 : 141.66667 : 1"
id="perspective3010" />
<inkscape:perspective
id="perspective2961"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3619"
id="linearGradient3625"
x1="215"
y1="188.75"
x2="215"
y2="0"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.001462,0,0,1,-1.2518275,0)" />
<linearGradient
inkscape:collect="always"
id="linearGradient3619">
<stop
style="stop-color:#00ffff;stop-opacity:1;"
offset="0"
id="stop3621" />
<stop
style="stop-color:#00ffff;stop-opacity:0;"
offset="1"
id="stop3623" />
</linearGradient>
<linearGradient
y2="0"
x2="215"
y1="188.75"
x1="215"
gradientTransform="matrix(1.001462,0,0,1,-0.314327,-0.625)"
gradientUnits="userSpaceOnUse"
id="linearGradient2970"
xlink:href="#linearGradient3619"
inkscape:collect="always" />
<inkscape:perspective
id="perspective3039"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<linearGradient
gradientTransform="translate(150.71429,368.70147)"
y2="430.5"
x2="215"
y1="188.25"
x1="215"
gradientUnits="userSpaceOnUse"
id="linearGradient2932"
xlink:href="#linearGradient3609"
inkscape:collect="always" />
<linearGradient
inkscape:collect="always"
id="linearGradient3609">
<stop
style="stop-color:#008000;stop-opacity:1;"
offset="0"
id="stop3611" />
<stop
style="stop-color:#008000;stop-opacity:0;"
offset="1"
id="stop3613" />
</linearGradient>
<linearGradient
y2="430.5"
x2="215"
y1="188.25"
x1="215"
gradientTransform="translate(1.250011,-1.87501)"
gradientUnits="userSpaceOnUse"
id="linearGradient3048"
xlink:href="#linearGradient3609"
inkscape:collect="always" />
<inkscape:perspective
id="perspective3077"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.6"
inkscape:cx="180.09249"
inkscape:cy="257.80126"
inkscape:document-units="pt"
inkscape:current-layer="layer1"
id="namedview3005"
showgrid="false"
inkscape:window-width="1294"
inkscape:window-height="851"
inkscape:window-x="1660"
inkscape:window-y="0"
inkscape:window-maximized="0" />
<metadata
id="metadata3007">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:url(#linearGradient2970);fill-opacity:1"
id="rect3617"
width="428.125"
height="188.75"
x="0.9375"
y="-0.625" />
<rect
style="fill:url(#linearGradient3048);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="rect2827"
width="430"
height="241.25"
x="1.25"
y="186.875" />
<path
style="fill:#3144d6;fill-opacity:1;stroke:#000000;stroke-width:0.93578964px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1.9848899,310.61768 163.9847201,-0.27307 82.14017,-91.93922 -247.20438518,1.90129 1.07949508,90.311 z"
id="path2904"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;stroke:#1132ad;stroke-width:16.875;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 238.75,360 c 13.14501,18.17231 41.04017,34.91936 62.5,38.125 34.43943,0.89692 30.76389,-7.98309 36.875,-28.125 23.35511,-28.27989 76.0228,-14.6102 91.25,-0.625"
id="path3890"
sodipodi:nodetypes="cccc" />
<path
style="fill:#898381;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
d="M 165.625,310.625 210,404.375 271.25,340.625 247.5,218.75 165.625,310.625 z"
id="path3888" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Some files were not shown because too many files have changed in this diff Show more