source: ether_eccad/trunk/ECCAD_INTERFACE/WEB-INF/src/org/medias/eccad/persistance/dummy/DummyRaster.java @ 68

Last change on this file since 68 was 68, checked in by cbipsl, 14 years ago

commit v1 eccad

  • Property svn:executable set to *
File size: 792 bytes
Line 
1package org.medias.eccad.persistance.dummy;
2
3public class DummyRaster {
4        public String getStatistiqueCarte(String xml) {
5        String xml_reponse = "<reponse>";
6        xml_reponse += "<domaine>";
7        xml_reponse += "        <lat-max>90</lat-max>";
8        xml_reponse += "        <lat-min>-90</lat-min>";
9        xml_reponse += "        <lon-max>180</lon-max>";
10        xml_reponse += "        <lon-min>-180</lon-min>";
11        xml_reponse += "</domaine>";
12       
13        xml_reponse += "<temporel>";
14        xml_reponse += "        <begin>19900101</begin>";
15        xml_reponse += "        <end>20070706</end>";
16        xml_reponse += "</temporel>";
17       
18        xml_reponse += "<image-path>/tmp/carte_1.png</image-path>";
19        xml_reponse += "<pas>";
20        xml_reponse += "        <pas-lat>-0.5</pas-lat>";
21        xml_reponse += "        <pas-lon>0.5</pas-lon>";
22        xml_reponse += "</pas>";
23        xml_reponse += "</reponse>";
24
25        return xml_reponse;
26        }
27}
Note: See TracBrowser for help on using the repository browser.