Mercurial > dive4elements > river
comparison flys-artifacts/src/main/java/de/intevation/flys/wsplgen/FacetCreator.java @ 3810:b6431052a694
Picked rev3354 from trunk.
flys-artifacts/tags/pre2.6-2011-12-05@3355 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Mon, 05 Dec 2011 10:51:15 +0000 |
parents | 71139016cd0f |
children | 5d158f8ad080 |
comparison
equal
deleted
inserted
replaced
3809:cc83b8e42dbe | 3810:b6431052a694 |
---|---|
114 if (bounds == null) { | 114 if (bounds == null) { |
115 bounds = getBounds(); | 115 bounds = getBounds(); |
116 } | 116 } |
117 | 117 |
118 wsplgen.addLayer( | 118 wsplgen.addLayer( |
119 MapfileGenerator.MS_WSPLGEN_POSTFIX + artifact.identifier()); | 119 MapfileGenerator.MS_WSPLGEN_PREFIX + artifact.identifier()); |
120 wsplgen.setSrid(getSrid()); | 120 wsplgen.setSrid(getSrid()); |
121 wsplgen.setExtent(bounds); | 121 wsplgen.setExtent(bounds); |
122 | 122 |
123 tmpFacets.add(wsplgen); | 123 tmpFacets.add(wsplgen); |
124 } | 124 } |
135 stateId, | 135 stateId, |
136 hash, | 136 hash, |
137 getUrl()); | 137 getUrl()); |
138 | 138 |
139 barriers.addLayer( | 139 barriers.addLayer( |
140 MapfileGenerator.MS_BARRIERS_POSTFIX + artifact.identifier()); | 140 MapfileGenerator.MS_BARRIERS_PREFIX + artifact.identifier()); |
141 barriers.setSrid(getSrid()); | 141 barriers.setSrid(getSrid()); |
142 barriers.setExtent(getBounds()); | 142 barriers.setExtent(getBounds()); |
143 | 143 |
144 tmpFacets.add(barriers); | 144 tmpFacets.add(barriers); |
145 } | 145 } |