Skip to content

Instantly share code, notes, and snippets.

@hhkaos
Last active July 25, 2023 22:30
Show Gist options
  • Select an option

  • Save hhkaos/260e2e4bff842647df2cb6d4d68ae0ec to your computer and use it in GitHub Desktop.

Select an option

Save hhkaos/260e2e4bff842647df2cb6d4d68ae0ec to your computer and use it in GitHub Desktop.
OGC certified products

Last update: 26th July 2023

Screenshot 2022-07-19 at 12 20 47

Go to: https://www.ogc.org/resource/products/compliant?display_opt=1

And run this code in the console:

function compare(a,b) {
  if (a.specs < b.specs)
    return 1;
  if (a.specs > b.specs)
    return -1;
  return 0;
}

var rank = [];
document.querySelectorAll(".persist-area").forEach(function(elem){
    
  var organization = elem.querySelector("h3").innerText;
    debugger
  var specs = elem.querySelectorAll("tr.specrow").length;
  specs += elem.querySelectorAll("tr.specrow_odd").length;
  
  
  rank.push({organization: organization, specs: specs});

})

rank.sort(compare);
console.table(rank);

As today you get:

(index) organization specs
0 'Esri (view all implementations)' 474
1 'Hexagon (view all implementations)' 407
2 'Scanpoint Geomatics Ltd. (view all implementations)' 59
3 'US National Geospatial-Intelligence Agency (NGA) (view all implementations)' 47
4 'Oracle USA (view all implementations)' 34
5 'Cadcorp (view all implementations)' 32
6 'Open Source Geospatial Foundation (view all implementations)' 20
7 'lat/lon GmbH (view all implementations)' 18
8 'interactive instruments GmbH (view all implementations)' 17
9 'Safe Software, Inc. (view all implementations)' 16
10 'PilotGaea Technologies Co., Ltd. (view all implementations)' 14
11 'Carmenta Geospatial Technologies AB (view all implementations)' 10
12 'GeoCat bv (view all implementations)' 10
13 'Ethar Inc (view all implementations)' 9
14 'Belsis Bilgisayar Yazilim Iletisim Hizmetleri San.Tic.Ltd.Sti. (view all implementations)' 8
15 'OpenSitePlan (view all implementations)' 8
16 'Presagis (view all implementations)' 8
17 'rasdaman GmbH (view all implementations)' 8
18 'RealTimeTech Co., Ltd (view all implementations)' 8
19 'airGmap Aerospace Technology Limited (view all implementations)' 6
20 'CubeWerx, Inc. (view all implementations)' 6
21 'Geotwo Co., Ltd (view all implementations)' 6
22 'gitt Corp. (view all implementations)' 6
23 'SuperMap Software Co., Ltd. (view all implementations)' 6
24 'G-Inno Systems Inc. (view all implementations)' 5
25 'GEOMEX SOFT Co., Ltd. (view all implementations)' 5
26 'JUNGDO UIT (view all implementations)' 5
27 'Politerm OOO (view all implementations)' 5
28 '52 North GmbH (view all implementations)' 4
29 'Away Team Software (view all implementations)' 4
30 'CE Infosystem Limited (view all implementations)' 4
31 'Crunchy Data (view all implementations)' 4
32 'Fraunhofer-Gesellschaft (view all implementations)' 4
33 'GE Smallworld (view all implementations)' 4
34 'GeoScene Information Technology Co., Ltd. (view all implementations)' 4
35 'Indra Avitech GmbH (view all implementations)' 4
36 'SEESUNIT (view all implementations)' 4
37 'Wuhan Zondy Cyber Science & Technology Co., Ltd (view all implementations)' 4
38 'AllforLand (view all implementations)' 3
39 'GeoLabs (view all implementations)' 3
40 'Sundosoft Ltd. (view all implementations)' 3
41 'WAVUS (view all implementations)' 3
42 'Ecere Corporation (view all implementations)' 2
43 'EGIS CO., LTD. (view all implementations)' 2
44 'Global Energy Consulting Engineers Pvt. Ltd. (view all implementations)' 2
45 'i-bitz company limited (view all implementations)' 2
46 'IIC Technologies Ltd. (view all implementations)' 2
47 'PIESAT International Information Technology Limited (view all implementations)' 2
48 'SAP SE (view all implementations)' 2
49 'Tuxuri Sdn Bhd (view all implementations)' 2
50 'beijing digsur science and technology co.ltd. (view all implementations)' 1
51 'Cubic Digital Intelligence (CDI) (view all implementations)' 1
52 'eSpatial (view all implementations)' 1
53 'Genesys International Corporation Ltd (view all implementations)' 1
54 'GIS Consult GmbH (view all implementations)' 1
55 'KING ICT d.o.o. (view all implementations)' 1
56 'QGIS.org (OSGEO project) (view all implementations)' 1
57 'Tata Advanced Systems Limited (TASL) (view all implementations)' 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment