link_types.py 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. ###############################################################################
  2. #
  3. # MetaSearch Catalog Client
  4. #
  5. # Copyright (C) 2014 Tom Kralidis (tomkralidis@gmail.com)
  6. #
  7. # This source is free software; you can redistribute it and/or modify it under
  8. # the terms of the GNU General Public License as published by the Free
  9. # Software Foundation; either version 2 of the License, or (at your option)
  10. # any later version.
  11. #
  12. # This code is distributed in the hope that it will be useful, but WITHOUT ANY
  13. # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  14. # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  15. # details.
  16. #
  17. # You should have received a copy of the GNU General Public License along
  18. # with this program; if not, write to the Free Software Foundation, Inc.,
  19. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  20. #
  21. ###############################################################################
  22. WMSWMST_LINK_TYPES = [
  23. 'WMS',
  24. 'WMTS',
  25. 'OGC:WMS',
  26. 'OGC:WMTS',
  27. 'OGC:WMS-1.1.1-http-get-map',
  28. 'OGC:WMS-1.1.1-http-get-capabilities',
  29. 'OGC:WMS-1.3.0-http-get-map',
  30. 'OGC:WMS-1.3.0-http-get-capabilities',
  31. 'urn:x-esri:specification:ServiceType:wms:url',
  32. 'urn:x-esri:specification:ServiceType:Gmd:URL.wms'
  33. ]
  34. WFS_LINK_TYPES = [
  35. 'WFS',
  36. 'OGC:WFS',
  37. 'OGC:WFS-1.0.0-http-get-capabilities',
  38. 'OGC:WFS-1.1.0-http-get-capabilities',
  39. 'urn:x-esri:specification:ServiceType:wfs:url',
  40. 'urn:x-esri:specification:ServiceType:Gmd:URL.wfs'
  41. ]
  42. WCS_LINK_TYPES = [
  43. 'WCS',
  44. 'OGC:WCS',
  45. 'OGC:WCS-1.1.0-http-get-capabilities',
  46. 'urn:x-esri:specification:ServiceType:wcs:url',
  47. 'urn:x-esri:specification:ServiceType:Gmd:URL.wcs'
  48. ]
  49. AMS_LINK_TYPES = [
  50. 'ESRI:ArcGIS:MapServer',
  51. 'Esri REST: Map Service',
  52. 'ESRI REST'
  53. ]
  54. AFS_LINK_TYPES = [
  55. 'ESRI:ArcGIS:FeatureServer',
  56. 'Esri REST: Feature Service'
  57. ]
  58. GIS_FILE_LINK_TYPES = [
  59. 'FILE:GEO'
  60. ]