Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <!DOCTYPE ImageMosaicJDBCConfig [
  3. <!ENTITY mapping PUBLIC "mapping" "mapping.pgraster.xml.inc">
  4. <!ENTITY connect PUBLIC "connect" "connect.pgraster.xml.inc">
  5. ]>
  6.  
  7. <config version="1.0">
  8. <coverageName name="oek"/>
  9. <coordsys name="EPSG:4326"/>
  10. <!-- interpolation 1 = nearest neighbour, 2 = bipolar, 3 = bicubic -->
  11. <scaleop interpolation="1"/>
  12. <axisOrder ignore="false"/>
  13. &mapping;
  14. &connect;
  15. </config>
  16.  
  17. <connect>
  18. <dstype value="DBCP"/>
  19. <username value="postgres"/>
  20. <password value="postgres"/>
  21. <jdbcUrl value="jdbc:postgresql://localhost:5432/geo"/>
  22. <driverClassName value="org.postgresql.Driver"/>
  23. <maxActive value="10"/>
  24. <maxIdle value="0"/>
  25. </connect>
  26.  
  27. <spatialExtension name="pgraster"/>
  28. <mapping>
  29. <masterTable name="mosaic" >
  30. <coverageNameAttribute name="name"/>
  31. <maxXAttribute name="maxx"/>
  32. <maxYAttribute name="maxy"/>
  33. <minXAttribute name="minx"/>
  34. <minYAttribute name="miny"/>
  35. <resXAttribute name="resx"/>
  36. <resYAttribute name="resy"/>
  37. <tileTableNameAtribute name="tiletable" />
  38. </masterTable>
  39. <tileTable>
  40. <blobAttributeName name="rast" />
  41. </tileTable>
  42. </mapping>
  43.  
  44. <?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE ServiceExceptionReport SYSTEM "http://localhost:8080/geoserver/schemas/wms/1.1.1/WMS_exception_1_1_1.dtd"> <ServiceExceptionReport version="1.1.1" > <ServiceException>
  45. illegal bbox, minX: 0.0 is greater than maxX: -1.0
  46. </ServiceException></ServiceExceptionReport>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement