The SpatioTemporal Asset Catalog specification is a simple specification being designed to make open geospatial assets searchable and crawlable. It aims to
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
description: Landsat 5 Fractional Cover 25 metre, 100km tile, Australian Albers Equal | |
Area projection (EPSG:3577) | |
managed: true | |
measurements: | |
- aliases: [bare] | |
dtype: int8 | |
name: BS | |
nodata: -1 | |
units: percent | |
- aliases: [green_veg] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------------------------------------------ | |
-- Some SQL to Delete a Data Cube Product | |
------------------------------------------ | |
-- | |
-- COUNT NUMBER OF DATASETS OF EACH TYPE (including archived) | |
-- | |
select | |
count(*), | |
t.name |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-------------------------------------- | |
-- SQL to Delete a Data Cube Product | |
-------------------------------------- | |
-- | |
-- Use with psql from the command line: | |
-- | |
-- psql -v product_name=<product-to-delete> -f delete_odc_product.sql -h <database-hostname> <dbname> | |
-- | |
-- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EPSG | 1039 | Easting | M | east | EPSG | 1024 | 1 | EPSG | 9001 | |
---|---|---|---|---|---|---|---|---|---|---|
EPSG | 1040 | Northing | P | north | EPSG | 1024 | 2 | EPSG | 9001 | |
EPSG | 1062 | Easting | X | North along 130°W | EPSG | 1025 | 1 | EPSG | 9001 | |
EPSG | 1063 | Northing | Y | North along 140°E | EPSG | 1025 | 2 | EPSG | 9001 | |
EPSG | 1065 | Easting | E | South along 90°E | EPSG | 1026 | 1 | EPSG | 9001 | |
EPSG | 1066 | Northing | N | South along 180°E | EPSG | 1026 | 2 | EPSG | 9001 | |
EPSG | 1056 | Easting | E | North along 90°E | EPSG | 1027 | 1 | EPSG | 9001 | |
EPSG | 1058 | Northing | N | North along 0°E | EPSG | 1027 | 2 | EPSG | 9001 | |
EPSG | 1073 | Easting | E | east | EPSG | 1028 | 1 | EPSG | 9037 | |
EPSG | 1074 | Northing | N | north | EPSG | 1028 | 2 | EPSG | 9037 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Experiments with PostgreSQL, connecting to a remote server. | |
CREATE EXTENSION postgres_fdw; | |
DROP SERVER IF EXISTS collection2; | |
CREATE SERVER collection2 FOREIGN DATA WRAPPER postgres_fdw OPTIONS (dbname 'datacube', host 'localhost'); | |
DROP USER MAPPING IF EXISTS FOR CURRENT_USER SERVER collection2; | |
CREATE USER MAPPING FOR dra547 SERVER collection2 OPTIONS (user 'dra547', password 'xxxxx'); |