Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.remoteclient / src / main / java / org / gvsig / remoteclient / wfs / filters / filterencoding / wfs_1_0_0 / EnvelopeFEQuery1_0_0.java @ 40559

History | View | Annotate | Download (2.17 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.remoteclient.wfs.filters.filterencoding.wfs_1_0_0;
25

    
26
import org.gvsig.remoteclient.wfs.filters.filterencoding.EnvelopeFEQuery;
27
import org.gvsig.remoteclient.wfs.filters.operations.WFSEnvelopeFilterOperation;
28

    
29

    
30
/**
31
 * @author gvSIG Team
32
 * @version $Id$
33
 *
34
 */
35
public class EnvelopeFEQuery1_0_0 extends EnvelopeFEQuery{
36

    
37
    /**
38
     * @param envelopeOperation
39
     */
40
    public EnvelopeFEQuery1_0_0(WFSEnvelopeFilterOperation envelopeOperation) {
41
        super(envelopeOperation);       
42
    }
43
    
44
    public String getFilterEncoding(){
45
        StringBuffer request = new StringBuffer();
46
        request.append("<ogc:BBOX>");       
47
        request.append("<ogc:PropertyName>" + spatialFilterOperation.getAttributeFullName() + "</ogc:PropertyName>");
48
        request.append("<gml:Box srsName=\"" + spatialFilterOperation.getSrsName() + "\">");
49
        request.append("<gml:coordinates>");
50
        request.append(envelope.getMinimum(0) + "," + envelope.getMinimum(1));
51
        request.append(" ");
52
        request.append(envelope.getMaximum(0) + "," + envelope.getMaximum(1));
53
        request.append("</gml:coordinates>");
54
        request.append("</gml:Box>");
55
        request.append("</ogc:BBOX>");
56
        return request.toString();
57
    }
58

    
59
}