Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Socket
Sign inDemoInstall

@dlr-eoc/services-ogc

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dlr-eoc/services-ogc - npm Package Compare versions

Comparing version 12.0.0-alpha.2 to 12.0.0

esm2022/dlr-eoc-services-ogc.mjs

14

lib/owc/types/eoc-owc-json.d.ts

@@ -32,4 +32,4 @@ import { IOwsContext, IOwsResource, IOwsOffering, WFS_Offering, WCS_Offering, WPS_Offering, CSW_Offering, WMTS_Offering, GML_Offering, KML_Offering, GeoTIFF_Offering, GMLJP2_Offering, GMLCOV_Offering, IOwsResourceProperties, WMS_Offering } from './owc-json';

}
declare type isoInterval = `${string}/${string}`;
declare type intervalPeriod = `${isoInterval}/P${string}`;
type isoInterval = `${string}/${string}`;
type intervalPeriod = `${isoInterval}/P${string}`;
export interface IEocOwsTimeDimension {

@@ -84,3 +84,3 @@ name: 'time';

}
export declare type IEocOwsResourceDimension = IEocOwsTimeDimension | IEocOwsElevationDimension;
export type IEocOwsResourceDimension = IEocOwsTimeDimension | IEocOwsElevationDimension;
export interface IEocOwsOffering extends IOwsOffering {

@@ -123,7 +123,7 @@ code: WMS_Offering | WFS_Offering | WCS_Offering | WPS_Offering | CSW_Offering | WMTS_Offering | GML_Offering | KML_Offering | GeoTIFF_Offering | GMLJP2_Offering | GMLCOV_Offering | GeoJson_Offering | TMS_Offering | string;

export declare const GeoJsonOffering: "http://www.opengis.net/spec/owc-geojson/1.0/req/geojson";
export declare type GeoJson_Offering = typeof GeoJsonOffering;
export type GeoJson_Offering = typeof GeoJsonOffering;
export declare const xyzOffering: "http://www.opengis.net/spec/owc-geojson/1.0/req/xyz";
export declare type Xyz_Offering = typeof xyzOffering;
export type Xyz_Offering = typeof xyzOffering;
export declare const tmsOffering: "http://www.opengis.net/spec/owc-geojson/1.0/req/tms";
export declare type TMS_Offering = typeof tmsOffering;
export type TMS_Offering = typeof tmsOffering;
/** list of context files */

@@ -137,3 +137,3 @@ export interface IEocOwsContextListItem {

}
export declare type EocOwsContextList = IEocOwsContextListItem[];
export type EocOwsContextList = IEocOwsContextListItem[];
export {};

@@ -250,26 +250,26 @@ /**

/** ISO-8601 format e.g. YYYY-MM-DDThh:mm:ssZ or YYYY-MM-DDThh:mm:ssZ/YYYY-MM-DDThh:mm:ssZ */
export declare type DateString = string;
export type DateString = string;
/** RFC-3066 code e.g. en,de */
export declare type LangString = string;
export type LangString = string;
export declare const wmsOffering: "http://www.opengis.net/spec/owc-geojson/1.0/req/wms";
export declare type WMS_Offering = typeof wmsOffering;
export type WMS_Offering = typeof wmsOffering;
export declare const wfsOffering: "http://www.opengis.net/spec/owc-geojson/1.0/req/wfs";
export declare type WFS_Offering = typeof wfsOffering;
export type WFS_Offering = typeof wfsOffering;
export declare const wcsOffering: "http://www.opengis.net/spec/owc-geojson/1.0/req/wcs";
export declare type WCS_Offering = typeof wcsOffering;
export type WCS_Offering = typeof wcsOffering;
export declare const wpsOffering: "http://www.opengis.net/spec/owc-geojson/1.0/req/wps";
export declare type WPS_Offering = typeof wpsOffering;
export type WPS_Offering = typeof wpsOffering;
export declare const cswOffering: "http://www.opengis.net/spec/owc-geojson/1.0/req/csw";
export declare type CSW_Offering = typeof cswOffering;
export type CSW_Offering = typeof cswOffering;
export declare const wmtsOffering: "http://www.opengis.net/spec/owc-geojson/1.0/req/wmts";
export declare type WMTS_Offering = typeof wmtsOffering;
export type WMTS_Offering = typeof wmtsOffering;
export declare const gmlOffering: "http://www.opengis.net/spec/owc-geojson/1.0/req/gml";
export declare type GML_Offering = typeof gmlOffering;
export type GML_Offering = typeof gmlOffering;
export declare const kmlOffering: "http://www.opengis.net/spec/owc-geojson/1.0/req/kml";
export declare type KML_Offering = typeof kmlOffering;
export type KML_Offering = typeof kmlOffering;
export declare const GeoTIFFOffering: "http://www.opengis.net/spec/owc-geojson/1.0/req/geotiff";
export declare type GeoTIFF_Offering = typeof GeoTIFFOffering;
export type GeoTIFF_Offering = typeof GeoTIFFOffering;
export declare const GMLJP2Offering: "http://www.opengis.net/spec/owc-geojson/1.0/req/gmljp2";
export declare type GMLJP2_Offering = typeof GMLJP2Offering;
export type GMLJP2_Offering = typeof GMLJP2Offering;
export declare const GMLCOVOffering: "http://www.opengis.net/spec/owc-geojson/1.0/req/gmlcov";
export declare type GMLCOV_Offering = typeof GMLCOVOffering;
export type GMLCOV_Offering = typeof GMLCOVOffering;

@@ -8,10 +8,10 @@ /** This file contains functions (Type Guards) to test for types in owc-json.ts */

export declare const GetMapOperationCode: "GetMap";
export declare type WMS_Code = typeof GetMapOperationCode;
export type WMS_Code = typeof GetMapOperationCode;
export declare const GetFeatureOperationCode: "GetFeature";
export declare type WFS_Code = typeof GetFeatureOperationCode;
export type WFS_Code = typeof GetFeatureOperationCode;
export declare const GetTileOperationCode: "GetTile";
export declare type WMTS_Code = typeof GetTileOperationCode;
export type WMTS_Code = typeof GetTileOperationCode;
export declare const RESTOperationCode: "REST";
export declare type TMS_Code = typeof RESTOperationCode;
export declare type XYZ_Code = typeof RESTOperationCode;
export type TMS_Code = typeof RESTOperationCode;
export type XYZ_Code = typeof RESTOperationCode;
export declare const GetCapabilitiesOperationCode: "GetCapabilities";

@@ -18,0 +18,0 @@ export declare const DescribeFeatureTypeOperationCode: "DescribeFeatureType";

{
"name": "@dlr-eoc/services-ogc",
"main": "src/public-api",
"version": "12.0.0-alpha.2",
"version": "12.0.0",
"license": "Apache-2.0",

@@ -18,12 +18,12 @@ "author": "Team UKIS",

"peerDependencies": {
"@angular/common": "^14.2.11",
"@angular/core": "^14.2.11",
"rxjs": "^6.6.7"
"@angular/common": "^16.2.3",
"@angular/core": "^16.2.3",
"rxjs": "~7.8.0"
},
"dependencies": {
"@dlr-eoc/services-layers": "12.0.0-alpha.2",
"@dlr-eoc/services-util-store": "12.0.0-alpha.2",
"@dlr-eoc/base-layers-raster": "12.0.0-alpha.2",
"@dlr-eoc/services-map-state": "12.0.0-alpha.2",
"@dlr-eoc/utils-ogc": "12.0.0-alpha.2",
"@dlr-eoc/services-layers": "12.0.0",
"@dlr-eoc/services-util-store": "12.0.0",
"@dlr-eoc/base-layers-raster": "12.0.0",
"@dlr-eoc/services-map-state": "12.0.0",
"@dlr-eoc/utils-ogc": "12.0.0",
"w3c-schemas": "^1.4.0",

@@ -37,7 +37,3 @@ "ogc-schemas": "^2.6.1",

},
"module": "fesm2015/dlr-eoc-services-ogc.mjs",
"es2020": "fesm2020/dlr-eoc-services-ogc.mjs",
"esm2020": "esm2020/dlr-eoc-services-ogc.mjs",
"fesm2020": "fesm2020/dlr-eoc-services-ogc.mjs",
"fesm2015": "fesm2015/dlr-eoc-services-ogc.mjs",
"module": "fesm2022/dlr-eoc-services-ogc.mjs",
"typings": "index.d.ts",

@@ -50,7 +46,5 @@ "exports": {

"types": "./index.d.ts",
"esm2020": "./esm2020/dlr-eoc-services-ogc.mjs",
"es2020": "./fesm2020/dlr-eoc-services-ogc.mjs",
"es2015": "./fesm2015/dlr-eoc-services-ogc.mjs",
"node": "./fesm2015/dlr-eoc-services-ogc.mjs",
"default": "./fesm2020/dlr-eoc-services-ogc.mjs"
"esm2022": "./esm2022/dlr-eoc-services-ogc.mjs",
"esm": "./esm2022/dlr-eoc-services-ogc.mjs",
"default": "./fesm2022/dlr-eoc-services-ogc.mjs"
}

@@ -57,0 +51,0 @@ },

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc