Re: [Geoserver-users] SLD Alternatives

2014-05-20 Thread David Winslow
ines that I can follow in order to get the fast path? > > I don’t know what I’m doing that’s so unusual to makes performance suffer > so massively. > > If there’s no heuristic, could it be a JVM flag? > > > > Simon Hartley > > > > > > *From:* David Winslo

Re: [Geoserver-users] SLD Alternatives

2014-05-16 Thread David Winslow
affiliates > may be monitored for quality assurance and compliance purposes.*** > > > > -- > "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE > Instantly run your Selenium

Re: [Geoserver-users] SLD Alternatives

2014-05-16 Thread David Winslow
-- > "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE > Instantly run your Selenium tests across 300+ browser/OS combos. > Get unparalleled scalability from the best Selenium testing platform > available >

Re: [Geoserver-users] dynamic symbolizer in CSS style

2014-02-18 Thread David Winslow
_ > Geoserver-users mailing list > Geoserver-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/geoserver-users > -- David Winslow Boundless - http://boundlessgeo.com/ ---

Re: [Geoserver-users] Use REST API to create style described in CSS

2014-02-11 Thread David Winslow
t; http://pubads.g.doubleclick.net/gampad/clk?id=124407151&iu=/4140/ostg.clktrk > ___ > Geoserver-users mailing list > Geoserver-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/l

Re: [Geoserver-users] "The "fill" property does not support function values."

2014-01-31 Thread David Winslow
gives you real-time visual feedback on key > security issues and trends. Skip the complicated setup - simply import > a virtual appliance and go from zero to informed in seconds. > > http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk > _

Re: [Geoserver-users] Tile rendering very slow

2013-10-14 Thread David Winslow
k.net/gampad/clk?id=60134071&iu=/4140/ostg.clktrk > ___ > Geoserver-users mailing list > Geoserver-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/geoserver-users > > -- David Winslow Boundless - ht

Re: [Geoserver-users] SLD for points too small on high zoom levels

2013-08-27 Thread David Winslow
ould allow you to specify the size separately from the colors: * { mark: symbol(circle); mark-size: 8; } [@scale > 10] { mark-size: 24; } :mark [category=1] { fill: red; } :mark [category=2] { fill: green; } :mark [category=3] { fill: blue; } -- David Winslow OpenGeo -

Re: [Geoserver-users] Storing styiling properties as a JSON map

2013-08-21 Thread David Winslow
s not really designed to support piecemeal conversion, but as a prototype you could try running the full conversion and then extracting Rules or Symbolizers from the generated SLD. -- David Winslow OpenGeo - http://opengeo.org/ On Wed, Aug 21, 2013 at 6:23 AM, Pedro Mendes wrote: > Hi Martin, >

Re: [Geoserver-users] Css styling extension under jre6 or jre7?

2013-08-16 Thread David Winslow
This issue is already corrected in the upstream build and we should be able to pull it into the GeoServer build before the release candidate goes out this weekend. I probably wouldn't have filed a bug for it. -- David Winslow OpenGeo - http://opengeo.org/ On Fri, Aug 16, 2013 at 8:

Re: [Geoserver-users] Adding lots of GeoTiffs at once

2013-07-29 Thread David Winslow
ingle-quotes (even if for many authors it turns out to be cargo-culting.) [1]: http://tldp.org/LDP/Bash-Beginners-Guide/html/sect_03_03.html -- David Winslow OpenGeo - http://opengeo.org/ On Mon, Jul 29, 2013 at 3:11 PM, Mike Pumphrey wrote: > It's actually not that bad, provided you re

Re: [Geoserver-users] Layers and styling for OSM data

2013-07-22 Thread David Winslow
your Postgres indices wisely can have a big impact on rendering performance. -- David Winslow OpenGeo - http://opengeo.org/ On Sun, Jul 21, 2013 at 4:27 PM, Kristopher Kane wrote: > Hello, > > I'm running Geoserver 2.3 and sending OSM (postgres) KML vector to Google > Earth. &

Re: [Geoserver-users] css labeling

2013-07-05 Thread David Winslow
You can use the filter to prevent labeling features with that value: [@scale < 25000][CLASS_CODE=6][EZI_ROAD_NAME_LABEL <> 'unnamed'] In your example, you'd have to change both 2WD and 4WD rules. -- David Winslow OpenGeo - http://opengeo.org/ On Thu, Jul 4, 2013 at 4

Re: [Geoserver-users] WFS request to Leaflet Map

2013-06-28 Thread David Winslow
free download for internet explorer.) Verify that the browser is receiving the JSON using the developer tools - if something is wrong with the JSON (like geometries are missing) then let us know here, otherwise you're probably better off asking the leaflet team on Twitter or their Google Group.

Re: [Geoserver-users] Labelling - layer group

2013-06-28 Thread David Winslow
your drawing stack to make it more likely for those labels to appear than the lower-priority features. -- David Winslow OpenGeo - http://opengeo.org/ On Fri, Jun 28, 2013 at 6:53 AM, Jonathan Moules < jonathanmou...@warwickshire.gov.uk> wrote: > Hi List, > I'm getting some an

Re: [Geoserver-users] SLD - using the if_then_else as an else-if

2013-06-25 Thread David Winslow
://gist.github.com/dwins/5859628 Alternatively you could just have multiple rules representing the different branches of the if-then-else tree. That would look like this gist: https://gist.github.com/dwins/5859680 Hope it helps. -- David Winslow OpenGeo - http://opengeo.org/ On Tue, Jun 25, 2013

Re: [Geoserver-users] css styling contour lines

2013-06-24 Thread David Winslow
You can combine a scale constraint and a data constraint in the same rule. [ALTITUDE = '1200'] [@scale < 12000] { stroke-width: 0.5; stroke: #A65329; } This is considered more specific than rules that only constrain one or the other, so it will override. -- David Winslow O

Re: [Geoserver-users] Styling problem with polygons

2013-06-21 Thread David Winslow
sible from the administration GUI.) If you look there and aren't able to understand the problem from the error message, try posting again to this list and including the error text. -- David Winslow OpenGeo - http://opengeo.org/ On Fri, Jun 21, 2013 at 8:45 AM, Robert Juan Francès < rober

Re: [Geoserver-users] css styling labeling

2013-06-20 Thread David Winslow
in CSS to support it, but it's not there now. -- David Winslow OpenGeo - http://opengeo.org/ On Wed, Jun 19, 2013 at 10:15 PM, Lottie Atzenbeck < lotta.atzenb...@gmail.com> wrote: > Question: > I have points with labels, each label appeares twice with the same text so > I used

Re: [Geoserver-users] App-Schema Publish Layer Exception

2013-06-12 Thread David Winslow
jEdit with the XML plugin might also be worth looking into. Contrary to the wikipedia page, it does have auto-completion for elements with XSD completion. -- David Winslow OpenGeo - http://opengeo.org/ On Wed, Jun 12, 2013 at 2:02 AM, Andrea Aime wrote: > On Wed, Jun 12, 2013 at 4:19 AM,

[Geoserver-users] Updates to CSS module

2013-05-23 Thread David Winslow
gridlock.opengeo.org/geoserver/2.3.x/community-latest/ -- David Winslow OpenGeo - http://opengeo.org/ -- Try New Relic Now & We'll Send You this Cool Shirt New Relic is the only SaaS-based application performance moni

Re: [Geoserver-users] SLD - mirror function?

2013-05-21 Thread David Winslow
create mirrored versions of your icons and select between them in your style. I have used GraphicsMagick in the past for this type of batch image editing. The style itself could use dynamic symbolizers or simple sld filters to select between the icons. Hope it helps. -- David Winslow OpenGeo - http

Re: [Geoserver-users] GeoServer CSS major problem

2013-05-06 Thread David Winslow
Yes, I can confirm there is a bug with the create style tool. I wasn't aware of it until just now. The behavior that I'm seeing is that the style is created but the 'create style' tool is not dismissed. -- David Winslow OpenGeo - http://opengeo.org/ On Fri, May 3, 20

Re: [Geoserver-users] CSS plugin difficulties

2013-05-01 Thread David Winslow
ticular the -Xmx and -XX:MaxPermSize options are of interest.) If you don't mind sharing your CSS style I'd be interested in seeing it as well. I do have some changes that I've been sitting on for a while which should improve performance, I'll try and get those released ASAP. -- David W

Re: [Geoserver-users] mapnik2geotools and multiple SLD with one layer

2013-04-23 Thread David Winslow
No, there's no log file. You can try running it from a terminal and dumping output to a file: java -jar mapnik2geotools-0.1.jar 2>&1 > mn2gt.log This should work whether you are using the command-line parameters or configuring things through the GUI. -- David Winslow

Re: [Geoserver-users] mapnik2geotools and multiple SLD with one layer

2013-04-23 Thread David Winslow
Yes, they would (either database views or the GeoServer feature with that name.) If someone is interested in implementing it I could give some pointers on how to make the changes. -- David Winslow OpenGeo - http://opengeo.org/ On Tue, Apr 23, 2013 at 9:10 AM, Andrea Aime wrote: > On

Re: [Geoserver-users] mapnik2geotools and multiple SLD with one layer

2013-04-23 Thread David Winslow
where "addr:housenumber" is not null and building is not null) as housenumbers GeoServer doesn't allow this so Mapnik2GeoTools creates .sql files you can use to create real tables that can be used instead - if you don't run them then you will not be able to apply all

Re: [Geoserver-users] Geoserver GetFeatureInfo and Freemarker Templates

2013-04-11 Thread David Winslow
JSON. Since you are using OpenLayers you already have access to its WFS support: http://openlayers.org/dev/examples/wfs-filter.html . Once OpenLayers parses the request, it can handle rendering, and then you could use JavaScript (JQuery maybe) to construct your table on the client side. -- David Wi

Re: [Geoserver-users] CSS Module Qtn

2013-04-10 Thread David Winslow
ering requests (aka pink tiles) that would probably help us to sort it out. You can review the GeoServer logs, or simply right click or control+click on the affected tile and choose 'View image in new tab' or your browser's equivalent. -- David Winslow OpenGeo - http://opengeo.org/ On

Re: [Geoserver-users] MapFish printing component and GeoServer secured layers

2013-02-26 Thread David Winslow
e the embedded Mapfish access the GeoServer catalog directly instead of making map requests via HTTP. Because the catalog enforces security restrictions, this should bring security integration along with it "for free." -- David Winslow OpenGeo - http://opengeo.org/ On Tue, Feb 26, 2013 at

Re: [Geoserver-users] Is it possible to use a getMap request with the CSS style (CSS module of Geoserver)

2013-02-13 Thread David Winslow
attacks, so I have not done it. If you're interested in helping to implement this feature feel free to email me about it. -- David Winslow OpenGeo - http://opengeo.org/ On Feb 13, 2013 4:14 PM, "Martin Tomko" wrote: > Dear all, > I am well aware of dynamic styling using SL

Re: [Geoserver-users] WMS getCapabilities

2013-02-06 Thread David Winslow
For reference, that support forum is at https://getsatisfaction.com/opengeo -- David Winslow OpenGeo - http://opengeo.org/ On Wed, Feb 6, 2013 at 8:52 AM, Andrea Aime wrote: > On Wed, Feb 6, 2013 at 2:47 PM, Nunzio Testa wrote: > >> ** ** >> >> ** ** >> >> D

Re: [Geoserver-users] CSS and ColorMaps

2013-01-28 Thread David Winslow
color-map-entry(black, 0) color-map-entry(red, 100) color-map-entry(green, 200); } -- David Winslow OpenGeo - http://opengeo.org/ On Mon, Jan 28, 2013 at 12:17 PM, Chris Haste wrote: > Hello everyone, > > ** ** > > Is it possible to define a colormap using the CSS m

Re: [Geoserver-users] Mapfish and Tile services

2013-01-28 Thread David Winslow
Have you added the tile service to the whitelist in the printing config.yaml? - !dnsMatch host: www.osmgb.org.uk -- David Winslow OpenGeo - http://opengeo.org/ On Mon, Jan 28, 2013 at 7:47 AM, Jonathan Moules < jonathanmou...@warwickshire.gov.uk> wrote: > Hi list, > I ju

Re: [Geoserver-users] Styling layer styles with REST

2013-01-28 Thread David Winslow
this case, but it's conceivable that it would blank out the style list. -- David Winslow OpenGeo - http://opengeo.org/ On Sun, Jan 27, 2013 at 5:40 AM, Jon Britton wrote: > Hi guys, > > A while ago I was using REST to allow a layer to use any style. To do this > I was retrieving

Re: [Geoserver-users] geoserver

2013-01-25 Thread David Winslow
r GeoServer's proper operation, so your error message is rather unexpected. Are you using any extensions to GeoServer? -- David Winslow OpenGeo - http://opengeo.org/ On Thu, Jan 24, 2013 at 10:34 PM, cmaul wrote: > Stephen, > > What is catalog2 in your installation? > > Tha

Re: [Geoserver-users] gsconfig.py for java

2013-01-24 Thread David Winslow
eira tells me gsconfig.py works well on Jython, so that might be an option as well depending on your needs. -- David Winslow OpenGeo - http://opengeo.org/ On Thu, Jan 24, 2013 at 8:10 AM, Andrea Aime wrote: > On Thu, Jan 24, 2013 at 2:04 PM, Denise Janson Ferreira > wrote: > > Hi

Re: [Geoserver-users] CSS -gt-shield-margin

2013-01-22 Thread David Winslow
Well the generated SLD looks as I would expect; I guess this is a problem with the implementation of shield margins in GeoTools and not CSS in particular. I'm not familiar with that code in depth, so I'm not sure what to tell you. Maybe Andrea can weigh in. -- David Winslow Open

Re: [Geoserver-users] CSS -gt-shield-margin

2013-01-22 Thread David Winslow
one of the pink tiles, then choose 'Open Image in New Tab" from the context menu. I'd be interested to see the error message, as well as the .css and .sld files for your style. -- David Winslow OpenGeo - http://opengeo.org/ On Tue, Jan 22, 2013 at 10:05 AM, Chris Ha

Re: [Geoserver-users] Label shields as direction indicators

2013-01-22 Thread David Winslow
The size information from the SLD file is only used if the size parameter is omitted in your style. The whole point of using SVG is that it can be scaled with no quality loss, so the size of the SVG file doesn't really matter in that sense. -- David Winslow OpenGeo - http://opengeo.org/ O

Re: [Geoserver-users] callback function is undefined

2013-01-22 Thread David Winslow
Have you hidden your 'getJson' function from global scope, by defining it inside of another function? -- David Winslow OpenGeo - http://opengeo.org/ On Sat, Jan 19, 2013 at 1:27 PM, Michael Savarese wrote: > Using GeoServer(2.13) and Leaflet with jQuery, I've tried countles

Re: [Geoserver-users] Label shields as direction indicators

2013-01-18 Thread David Winslow
. If SVG's not an option for whatever reason, using high-resolution icons can also help avoid problems. I've attached CSS (using the community module) and SVG examples, hope it helps. -- David Winslow OpenGeo - http://opengoe.org/ On Fri, Jan 18, 2013 at 7:06 AM, Chris Haste wrote

Re: [Geoserver-users] Styling with the CSS module

2013-01-17 Thread David Winslow
es it might be faster to pull the latest from git and rebuild. Either way, the packages will be available in the next set of nightlies. -- David Winslow OpenGeo - http://opengeo.org/ On Wed, Jan 16, 2013 at 10:39 AM, David Winslow wrote: > I've only tested dynamic coloring in the geocss

Re: [Geoserver-users] Styling with the CSS module

2013-01-16 Thread David Winslow
re is a problem that I haven't noticed. In short, it seems that mixing and matching jar files is not working well here. I'll look into updating the GeoServer build so that you can just use a nightly build of the community module instead. -- David Winslow OpenGeo - http://opengeo.org/ O

Re: [Geoserver-users] Converting CSS to SLD without web interface

2013-01-15 Thread David Winslow
urself some JVM startup time. There is also a Java API which is adapted for use in most (all?) variants of GeoScript (http://geoscript.org/). -- David Winslow OpenGeo - http://opengeo.org/ On Tue, Jan 15, 2013 at 7:38 AM, Matthias Uden wrote: > Hi all, > > I'm still experimenting

Re: [Geoserver-users] Styling with the CSS module

2013-01-15 Thread David Winslow
o be compatible with earlier versions of GeoServer. -- David Winslow OpenGeo - http://opengeo.org/ On Tue, Jan 15, 2013 at 8:27 AM, Matthias Uden wrote: > Hi David / all, > > I'm sorry to bother you again with the CSS Module dynamic coloring issue. > I still can't use dyna

Re: [Geoserver-users] Issues uploading a geotiff coverage using REST & cURL (V2.2.1)

2013-01-14 Thread David Winslow
x27;s code would need to be modified in order to make this possible. -- David Winslow OpenGeo - http://opengeo.org/ On Fri, Jan 11, 2013 at 11:34 PM, enri wrote: > > > 发自我的 iPad > > 在 2013-1-12,10:42,"Richard (Abe) Coughlin" 写道: > > I've been able to upload a

Re: [Geoserver-users] Urgent: IEEERemainder Issue

2013-01-08 Thread David Winslow
tyling/sld-reference/labeling.html#overlapping-and-separating-labels-vendoroption-name-spacearound It's called "-gt-label-padding" in CSS. -- David Winslow OpenGeo - http://opengeo.org/ On Tue, Jan 8, 2013 at 5:54 AM, Chris Haste wrote: > Hi Andrea, > > ** ** > &g

Re: [Geoserver-users] [bulk]: Decluttering/SLD/CSS

2013-01-04 Thread David Winslow
vg); shield-mime: "image/svg"; -gt-label-priority: 15; -gt-label-padding: 20; } I will note that since the labeling priority is used to sort WITHIN a layer it is a little unusual to make it a constant value; normally you would put a reference to a numeric field for sorting

Re: [Geoserver-users] What alternatives exist for dynamic styling?

2013-01-03 Thread David Winslow
o you can copy into the CSS): [env('wms_scale_denominator', 50)] . So you could write: * { fill: lightgrey; stroke: black; mark: symbol(square); mark-size: [env('wms_scale_denominator', 500000) * 0.3)]; } -- David Winslow OpenGeo - http://opengeo.org/ On Th

Re: [Geoserver-users] What alternatives exist for dynamic styling?

2013-01-03 Thread David Winslow
> I also tried removing the files from the extension with no success. > > I only get the standard jetty "SERVICE UNAVAILABLE" > Here is the full log: > > > > David Winslow-5 wrote > > lysgaard@pi:~/oam/geoserver/geoserver-2.2.2$ ./bin/startup.sh > > GEOSE

Re: [Geoserver-users] What alternatives exist for dynamic styling?

2013-01-03 Thread David Winslow
troke: black; } Note how you only specify the stroke once, ensuring that any dash, opacity, etc. properties will be consistent for the different cases. -- David Winslow OpenGeo - http://opengeo.org/ On Thu, Jan 3, 2013 at 8:38 AM, Ákos Maróy wrote: > On 03/01/13 14:30, lysgaard wrote: >

Re: [Geoserver-users] installation problem

2013-01-02 Thread David Winslow
startup script, otherwise please consult the centos documentation for tomcat. -- David Winslow OpenGeo - http://opengeo.org/ On Sun, Dec 23, 2012 at 8:39 PM, Jim White wrote: > ** > Hi, > > I am trying to install geoserver to Centos 6.3 cloud server. I have tried > all combinations of

Re: [Geoserver-users] Labeling in SLD - label the right field

2012-12-18 Thread David Winslow
I believe you should include the prefix along with the name: oso:katunumero -- David Winslow OpenGeo - http://opengeo.org/ On Tue, Dec 18, 2012 at 6:08 AM, obtin wrote: > Hi all, > > I have problem with labeling - I can't figure out how to pick the right > field to label!

Re: [Geoserver-users] using expressions in SLD CSS parameters?

2012-12-17 Thread David Winslow
See the section on expressions in the manual: http://docs.geoserver.org/latest/en/user/styling/sld-reference/filters.html#filter-expressions -- David Winslow OpenGeo - http://opengeo.org/ On Mon, Dec 17, 2012 at 9:32 AM, Ákos Maróy wrote: > Hi, > > I wonder if it is possib

Re: [Geoserver-users] trying to create a layer for a coveragestore using the rest API

2012-12-13 Thread David Winslow
all we can tell you without more information. If you review the GeoServer logs after the failed request, do you see anything interesting (ie, that appears relevant to your rest error)? You may need to increase the log level in the GeoServer Global Settings page and retry the request. -- David

Re: [Geoserver-users] relational or geoespatial database

2012-12-13 Thread David Winslow
QGIS (http://qgis.org) is a ready-made general purpose one. Both are free to use and modify as open-source software. -- David Winslow OpenGeo - http://opengeo.org/ On Thu, Dec 13, 2012 at 1:11 AM, J.Alejandro Martinez Linares < isla...@infomed.sld.cu> wrote: > Hi to all, i have a do

Re: [Geoserver-users] Is it possible to create a geoserver layer with gsconfig.py?

2012-12-10 Thread David Winslow
The auto-configuration happens only when you are uploading a new coverage layer, which I think doesn't work with ImagePyramid layers. -- David Winslow OpenGeo - http://opengeo.org/ On Mon, Dec 10, 2012 at 12:27 PM, Katie Essadro wrote: > So when I add a CoverageStore with gsconfig.py,

Re: [Geoserver-users] Is it possible to create a geoserver layer with gsconfig.py?

2012-12-10 Thread David Winslow
ethod" field to POST instead of PUT and ensures that all required fields are marked as "dirty" (ie, will be included in the REST request that is generated.) Similar variants would be required for Layer and Coverage in order to configure new raster layers - both will closely follow the des

Re: [Geoserver-users] multiple sld files to geoserver layer according to the user sessions

2012-12-10 Thread David Winslow
e, by modifying the configuration of the OpenLayers Layer object being used.) -- David Winslow OpenGeo - http://opengeo.org/ On Fri, Dec 7, 2012 at 5:56 AM, zeliofern wrote: > Hi Guys > > i have already used styling with geoserver vector layers. my question is : > > is it p

Re: [Geoserver-users] Styling with the CSS module

2012-12-07 Thread David Winslow
n/view/geoscript/job/geoscript-scala/ws/geocss/target/scala-2.9.1/and overwrite the one that you already installed. -- David Winslow OpenGeo - http://opengeo.org/ On Fri, Dec 7, 2012 at 6:12 AM, Matthias Uden wrote: > David, > > thanks a lot for the quick answer and clarification! > I di

Re: [Geoserver-users] gsconfig.py help needed

2012-12-06 Thread David Winslow
evelopment work is needed to reach compatibility - if you are able to downgrade to Python 2.7 that would probably be the most expedient approach, but if you're interested in helping to bring gsconfig up to Python 3 compatibility we'd appreciate the help. -- David Winslow OpenGeo - http:/

Re: [Geoserver-users] gsconfig.py help needed

2012-12-06 Thread David Winslow
you post the error message? I think all you need to do may be to add (before saving): ds.type = "ImagePyramid" -- David Winslow OpenGeo - http://opengeo.org/ On Thu, Dec 6, 2012 at 9:56 AM, Katie Essadro wrote: > Does example code exist anywhere to create the image payramid

Re: [Geoserver-users] Styling with the CSS module

2012-12-06 Thread David Winslow
*Relative Paths for Icons *The short answer is, no, you can't make it do that. The problem is that the CSS-SLD converter actually uses GeoTools' SLD writing code to generate the SLD files, and GeoTools' SLD support is not symmetric (I mean it cannot write everything that it can read.) Resolving r

Re: [Geoserver-users] CSS Question

2012-12-06 Thread David Winslow
r you! -- David Winslow OpenGeo - http://opengeo.org/ On Thu, Dec 6, 2012 at 5:14 AM, Chris Haste wrote: > Hello list! > > ** ** > > I am using an SQL view which returns multiple geometries in each row. > > Each row represents a trip and contains Departure and

Re: [Geoserver-users] gsconfig.py help needed

2012-12-06 Thread David Winslow
/catalogtests.py ? The tests in particular demonstrate most of what gsconfig supports. -- David Winslow OpenGeo - http://opengeo.org/ On Thu, Dec 6, 2012 at 8:53 AM, Katie Essadro wrote: > Can gsconfig.py be used to automatically add a store and layer into > Geoserver, or do I need to do that

Re: [Geoserver-users] gsconfig.py help needed

2012-12-05 Thread David Winslow
fig has modified the source code in some way; for example, git may be altering the line endings during checkout. I am aware of some successful gsconfig users on Windows so I'm sure this issue can be resolved with a little research. -- David Winslow OpenGeo - http://opengeo.org/ On Tue, Dec 4

Re: [Geoserver-users] [Geoserver-devel] Switching Text Labels on/off

2012-11-26 Thread David Winslow
&layers=mylayer,mylayer&styles=,withlabels Without labels: request=GetMap&layers=mylayer -- David Winslow OpenGeo - http://opengeo.org/ On Mon, Nov 26, 2012 at 1:06 PM, wrote: > Hi there, > > ** ** > > I have a number of layers in my application. I created WMS for ea

Re: [Geoserver-users] dynamic proxy error?? geoserver fails to load

2012-11-15 Thread David Winslow
Yes, please re -post your question on OpenGeo's support forum at http://getsatisfaction.com/opengeo -- David Winslow OpenGeo - http://opengeo.org/ On Nov 15, 2012 5:03 AM, "Andrea Aime" wrote: > On Tue, Nov 13, 2012 at 8:32 PM, Gavin Fleming wrote: > >> Hi all >

Re: [Geoserver-users] Install Geoserver To Work Web Server

2012-11-13 Thread David Winslow
If you want to make GeoServer appear as part of another site, you'll probably need a reverse proxy: http://en.wikipedia.org/wiki/Reverse_proxy I believe IIS can be configured to do this; Apache can for sure (using mod_proxy and the ProxyPass directive.) Hope it helps. -- David Winslow Op

Re: [Geoserver-users] using gsconfig.py

2012-11-08 Thread David Winslow
.shp) Since you are posting a file path you want case 2. -- David Winslow OpenGeo - http://opengeo.org/ On Thu, Nov 8, 2012 at 12:15 PM, Smaran Harihar wrote: > Thanks for the reply David. I went through the documentation but is there > no way of adding the layer to the Geoserver? >

Re: [Geoserver-users] using gsconfig.py

2012-11-08 Thread David Winslow
GSConfig is used extensively by GeoNode (http://geonode.org/) and I believe has some casual users as well. I (the original developer of this library) have definitely uploaded shapefiles with it. http://dwins.github.com/gsconfig.py/ has some more info and examples. -- David Winslow OpenGeo

Re: [Geoserver-users] Issues with image pyramid

2012-11-01 Thread David Winslow
You can do this by using a LayerGroup. It's a little tedious because you must make a variant of your style for each level of detail (changing just the MinScaleDenominator and MaxScaleDenominator) but it can be done. I can't offer any insight on the GDAL issues though. -- David Winsl

Re: [Geoserver-users] Cors support in geoserver?

2012-10-30 Thread David Winslow
could also look into adding the header via a proxy. I believe Apache can do this kind of thing easily. -- David Winslow OpenGeo - http://opengeo.org/ On Oct 30, 2012 8:56 AM, "Marc Jansen" wrote: > Hi Tobias, > > Regarding the proxy: if the other webserver is an Apache, look

Re: [Geoserver-users] PointSymbolizer anchor

2012-10-25 Thread David Winslow
What Andrea suggested was: <[!CDATA[ ]]> This tells GeoServer not to "collapse" spaces; otherwise it will trim away blank spaces at the beginning and end of the value. -- David Winslow OpenGeo - http://opengeo.org/ On Thu, Oct 25, 2012 at 9:00 AM, vsinceac wrote: &

[Geoserver-users] Please tell GeoServer developers which browsers you are using

2012-10-16 Thread David Winslow
wsers. Please help inform this decision by letting us know which browsers you are using to configure GeoServer at this web form: https://docs.google.com/a/opengeo.org/spreadsheet/viewform?formkey=dDhVTFB6aHJjR3MyU1k1VVlGQmtVbFE6MQ We'll review the results in one week. Thanks! -- David Winslow Open

Re: [Geoserver-users] Two instances of GS with the same data

2012-10-05 Thread David Winslow
Yes. If you use a relative path to specify your data files, it will be looked up relative to the GeoServer data directory. But you may also provide an absolute path. So, don't store the data inside the datadir, and provide an absolute path when configuring your connections. -- David Wi

Re: [Geoserver-users] Installation on server with low memory

2012-10-05 Thread David Winslow
t/jconsole.html http://docs.oracle.com/javase/6/docs/technotes/tools/share/jvisualvm.html Note that both JConsole and JVisualVM can operate through an SSH tunnel, so you don't need to expend much of the server's RAM on running them. -- David Winslow OpenGeo - http://opengeo.org/ On Thu,

Re: [Geoserver-users] jetty vs tomcat i.e Tomcat instances

2012-10-03 Thread David Winslow
nice if you want to maximize the use of pre-packaged software from your distribution. -- David Winslow OpenGeo - http://opengeo.org/ On Tue, Oct 2, 2012 at 7:48 PM, cmaul wrote: > There are a lot of resources available how to set up the multiple Tomcat > instances > > Just 2 of

Re: [Geoserver-users] Shapefile import fails with "FileSystemException: Could not open Zip file"

2012-10-03 Thread David Winslow
In particular, OpenGeo runs a forum at http://getsatisfaction.com/opengeospecifically for questions regarding the OpenGeo Suite. Please repost your question there. -- David Winslow OpenGeo - http://opengeo.org/ On Wed, Oct 3, 2012 at 8:32 AM, Andrea Aime wrote: > On Wed, Oct 3, 2012 at 2:23

Re: [Geoserver-users] How to change workspace of existing layers?

2012-09-25 Thread David Winslow
I think you can just change the workspace field on the store; this should change the workspace for all contained layers. -- David Winslow OpenGeo - http://opengeo.org/ On Tue, Sep 25, 2012 at 3:37 AM, Robert Buckley wrote: > Hi, > > Is there an easy way to change the workspace of an

Re: [Geoserver-users] Which Restplugin download is compatible with geoserver 2.2. stable?

2012-09-24 Thread David Winslow
The GeoServer REST API and the "rest" module that provides support for other rest-based extensions are both included in GeoServer since the 2.1.x series. You don't need to install anything extra in GeoServer to use them. -- David Winslow OpenGeo - http://opengeo.org/ On 09/2

Re: [Geoserver-users] How to load custom extension in eclipse debug session

2012-08-23 Thread David Winslow
our new profile (for example, "mvn eclipse:eclipse -Pfoo" if you name your profile foo. -- David Winslow OpenGeo - http://opengeo.org/ On Thu, Aug 23, 2012 at 11:29 AM, Peter Hopfgartner < peter.hopfgart...@r3-gis.com> wrote: > Useless to hide, I'm more the kind of tourist

Re: [Geoserver-users] 5 seconds to render 130, 000 points -typical GeoServer WMS performance?

2012-08-22 Thread David Winslow
Well, anyway, I filed a ticket for this issue - the fix is quite straightforward. http://jira.codehaus.org/browse/GEOT-4239 -- David Winslow OpenGeo - http://opengeo.org/ On Mon, Aug 20, 2012 at 3:10 PM, Andrea Aime wrote: > On Mon, Aug 20, 2012 at 8:06 PM, David Winslow wrote: > >&

Re: [Geoserver-users] 5 seconds to render 130, 000 points -typical GeoServer WMS performance?

2012-08-20 Thread David Winslow
Actually it looks like the '200' is hardcoded: https://github.com/geotools/geotools/blob/master/modules/plugin/jdbc/jdbc-oracle/src/main/java/org/geotools/data/oracle/OracleNGDataStoreFactory.java#L128 Perhaps this is some debugging code that somehow made it into the repository. -- Dav

Re: [Geoserver-users] Geoserver 2.2 REST configuration

2012-08-16 Thread David Winslow
is problem. -- David Winslow OpenGeo - http://opengeo.org/ On Thu, Aug 16, 2012 at 2:27 PM, John Callahan wrote: > Sorry if I missed this somewhere... Does GeoServer 2.2 RC2 have a REST > plugin? Does anything need to be done to make configure REST? In my > installation, I've come

Re: [Geoserver-users] labels omitted when they would extend across tiles

2012-08-14 Thread David Winslow
://docs.geoserver.org/latest/en/user/services/wms/vendor.html#tiled Hope it helps. -- David Winslow OpenGeo - http://opengeo.org/ On Tue, Aug 14, 2012 at 4:17 PM, Ákos Maróy wrote: > Andrea, > > > Generally speaking this is impossible. There is in fact no way to know > > if the other > &

Re: [Geoserver-users] Publishing a shapefile on localhost

2012-08-13 Thread David Winslow
eoServer's operation. Perhaps a good next step would be for you to post a screen capture of the erroneous page? Are there any errors in GeoServer's log files? -- David Winslow OpenGeo - http://opengeo.org/ [1] http://en.wikipedia.org/wiki/Red_herring On Mon, Aug 13, 2012 at 6:41 AM, Micha

Re: [Geoserver-users] SLD label polygons

2012-08-13 Thread David Winslow
ost direct way to "show more labels" but may reduce readability. -- David Winslow OpenGeo - http://opengeo.org/ On Sat, Aug 11, 2012 at 6:23 PM, Jim White wrote: > Hi, > > I have a layer of polygons, and the labels are very sparingly displayed. > I have to zoom in almost

Re: [Geoserver-users] GeoServer with cURL - 404 Not Found

2012-08-10 Thread David Winslow
/workspaces.xml (If you have changed the admin user account since installing then you'll need to modify the command accordingly.) In Chrome, you are probably logged in via cookie so that's why it works there. -- David Winslow OpenGeo - http://opengeo.org/ On Fri, Aug 10, 2012 at 11:37

Re: [Geoserver-users] GeoServer with cURL - 404 Not Found

2012-08-10 Thread David Winslow
We need a little more information to help you. How did you install GeoServer? Is it working when you visit it in your web browser? What is the full curl command line you are using? (Don't forget to edit out your admin password.) What are you trying to accomplish with curl? -- David Wi

Re: [Geoserver-users] Label placement evaluation

2012-08-10 Thread David Winslow
ered, so I thought it worth a mention. I'm sure Andrea will speak up if I am leading you astray :) -- David Winslow OpenGeo - http://opengeo.org/ On Fri, Aug 10, 2012 at 10:36 AM, Michaël Michaud wrote: > ** > Thanks David, > > Seems to be the place I was looking for. > hav

Re: [Geoserver-users] Label placement evaluation

2012-08-10 Thread David Winslow
a good place to start looking to implement this feature, but it may be the case that candidate labels are already discarded before that method gets called. https://github.com/geotools/geotools/blob/master/modules/library/render/src/main/java/org/geotools/renderer/label/LabelCacheImpl.java#L533 -

Re: [Geoserver-users] how to setup OSM Tile server in GeoServer

2012-07-31 Thread David Winslow
I forgot my footnotes! [1]: http://wiki.openstreetmap.org/wiki/Osm2pgsql [2]: http://imposm.org/ -- David Winslow OpenGeo - http://opengeo.org/ On Tue, Jul 31, 2012 at 11:31 AM, Andrea Aime wrote: > On Tue, Jul 31, 2012 at 5:16 PM, Mustafa646 wrote: > >> I want to setup my own OSM

Re: [Geoserver-users] how to setup OSM Tile server in GeoServer

2012-07-31 Thread David Winslow
(incomplete) conversion utility for loading Mapnik stylesheets into GeoServer, you can grab it from https://github.com/dwins/mapnik2geotools/downloads if you want to try that out. -- David Winslow OpenGeo - http://opengeo.org/ On Tue, Jul 31, 2012 at 11:16 AM, Mustafa646 wrote: > I want to setup my

Re: [Geoserver-users] issues when starting geoserver from eclipse

2012-07-31 Thread David Winslow
configurations are provided in the '/data' directory that you should have from checking out the sources. -- David Winslow OpenGeo - http://opengeo.org/ On Tue, Jul 31, 2012 at 7:06 AM, Ákos Maróy wrote: > Hi, > > I'm trying to start geoserver from with eclipse, following the

Re: [Geoserver-users] geoserver source repository access?

2012-07-30 Thread David Winslow
Please see this reference for source access and build instructions: http://docs.geoserver.org/stable/en/developer/source.html -- David Winslow OpenGeo - http://opengeo.org/ On Mon, Jul 30, 2012 at 11:18 AM, Ákos Maróy wrote: > Hi, > > I wonder where one could access the source code r

[Geoserver-users] Fwd: gsconfig.py question

2012-07-23 Thread David Winslow
Oops, I managed to reply in private. Posting to the list for posterity. -- David Winslow OpenGeo - http://opengeo.org/ -- Forwarded message -- From: David Winslow Date: Sun, Jul 22, 2012 at 3:36 PM Subject: Re: [Geoserver-users] gsconfig.py question To: "Mount, Jerry"

Re: [Geoserver-users] Geoserver 2.2-RC1: Erroneously reporting master password not changed

2012-07-20 Thread David Winslow
There was no "master password" prior to GeoServer 2.2 - it is a component of the new security system. So it is probably correct that you need to change it. We might want to reword the warning to make this clear though. -- David Winslow OpenGeo - http://opengeo.org/ On Fri, Jul 20,

Re: [Geoserver-users] GeoServer hangs during startup.sh

2012-07-20 Thread David Winslow
This is expected behavior. The startup script continues to run as long as GeoServer is running. If you would prefer to have it run in the background, common practice is to install the system package for tomcat and deploy the WAR version of GeoServer. -- David Winslow OpenGeo - http

  1   2   3   4   >