New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

citygml-validate-ring

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

citygml-validate-ring

Validate a CityGML ring against the QIE suite

0.1.3
latest
Source
npm
Version published
Maintainers
1
Created
Source

CityGML Validate Ring

Validate a CityGML ring against the QIE suite

Usage

var citygmlBoundaries = require("citygml-boundaries");
var citygmlValidateRing = require("citygml-validate-ring");

var xml = "..."; // Some CityGML
var boundaries = citygmlBoundaries(xml);

// Validate exterior ring
citygmlValidateRing(boundaries.exterior[0], function(err, results) {
  if (err) {
    console.log("Exterior ring not valid:", err, results);
  } else {
    console.log("Exterior ring valid");
  }
});

Keywords

citygml

FAQs

Package last updated on 02 Jun 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts