From 78b85acdd44260e7f4d92dad83ddb840de97468c Mon Sep 17 00:00:00 2001 From: alexmorev Date: Fri, 5 Aug 2022 12:40:15 +0300 Subject: [PATCH 01/21] SXDEDPCXZIC-31_DATAVIC-430 / updates to DELWP harvester --- ckanext/datavic_harvester/harvesters/delwp.py | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/ckanext/datavic_harvester/harvesters/delwp.py b/ckanext/datavic_harvester/harvesters/delwp.py index 00d6909..28ac4bd 100644 --- a/ckanext/datavic_harvester/harvesters/delwp.py +++ b/ckanext/datavic_harvester/harvesters/delwp.py @@ -6,6 +6,7 @@ import uuid import re import six +from bs4 import BeautifulSoup from ckan import logic from ckan import model @@ -13,6 +14,7 @@ from ckanext.harvest.model import HarvestObject, HarvestObjectExtra from hashlib import sha1 from ckan.plugins import toolkit as toolkit +from ckan.common import config import ckanext.datavicmain.helpers as helpers @@ -447,6 +449,48 @@ def _get_package_dict(self, harvest_object, context): res['attribution'] = attribution resources.append(res) + # Verify and get info for WMS resource + try: + wms_doc = requests.get(config.get("ckanext.datavic_harvester.geoserver_dns.wms")) + wms_soup= BeautifulSoup(wms_doc.content,"lxml-xml") + wms_obj = wms_soup.find_all("Layer", {"queryable": 1}) + wms_result = [x for x in wms_obj if uuid in str(x)] + if wms_result: + wms_res = { + 'name': wms_result[0].find("Title").text, + 'format': "WMS", + 'period_start': convert_date_to_isoformat(metashare_dict.get('tempextentbegin', ''), 'tempextentbegin', metashare_dict.get('name')), + 'period_end': convert_date_to_isoformat(metashare_dict.get('tempextentend', ''), 'tempextentend', metashare_dict.get('name')), + 'url': config.get("ckanext.datavic_harvester.resource.wms_url").format(wms_result[0].find("Title").text) + } + wms_res['name'] = wms_res['name'].upper() + ' WMS' + if attribution: + wms_res['attribution'] = attribution + resources.append(wms_res) + except Exception as e: + log.error(e) + + # Verify and get info for WFS resource + try: + wfs_doc = requests.get(config.get("ckanext.datavic_harvester.geoserver_dns.wfs")) + wfs_soup= BeautifulSoup(wfs_doc.content,"lxml-xml") + wfs_obj = wfs_soup.find_all("FeatureType") + wfs_result = [x for x in wfs_obj if uuid in str(x)] + if wfs_result: + wfs_res = { + 'name': wfs_result[0].find("Title").text, + 'format': "WFS", + 'period_start': convert_date_to_isoformat(metashare_dict.get('tempextentbegin', ''), 'tempextentbegin', metashare_dict.get('name')), + 'period_end': convert_date_to_isoformat(metashare_dict.get('tempextentend', ''), 'tempextentend', metashare_dict.get('name')), + 'url': config.get("ckanext.datavic_harvester.resource.wms_url") + } + wfs_res['name'] = wfs_res['name'].upper() + ' WFS' + if attribution: + wfs_res['attribution'] = attribution + resources.append(wfs_res) + except Exception as e: + log.error(e) + package_dict['resources'] = resources # @TODO: What about these ones? From 8a066dd43dc3293a9a646ef0c904ea15cad14ac3 Mon Sep 17 00:00:00 2001 From: alexmorev Date: Sat, 6 Aug 2022 22:52:39 +0300 Subject: [PATCH 02/21] SXDEDPCXZIC-31_DATAVIC-430 / optimize the changes --- ckanext/datavic_harvester/harvesters/delwp.py | 102 +++++++++--------- 1 file changed, 52 insertions(+), 50 deletions(-) diff --git a/ckanext/datavic_harvester/harvesters/delwp.py b/ckanext/datavic_harvester/harvesters/delwp.py index 28ac4bd..52d8ef2 100644 --- a/ckanext/datavic_harvester/harvesters/delwp.py +++ b/ckanext/datavic_harvester/harvesters/delwp.py @@ -14,7 +14,6 @@ from ckanext.harvest.model import HarvestObject, HarvestObjectExtra from hashlib import sha1 from ckan.plugins import toolkit as toolkit -from ckan.common import config import ckanext.datavicmain.helpers as helpers @@ -167,7 +166,7 @@ def _get_object_extra(self, harvest_object, key): # Copied from `ckanext/dcat/harvesters/base.py` def _get_package_name(self, harvest_object, title): - + package = harvest_object.package if package is None or package.title != title: name = self._gen_new_name(title) @@ -177,13 +176,13 @@ def _get_package_name(self, harvest_object, title): 'GUID. Please choose a more unique title.') else: name = package.name - + return name - + def info(self): return { 'name': 'delwp', - 'title': 'delwp Harvester', + 'title': 'DELWP Harvester', 'description': 'Harvester for DELWP dataset descriptions ' + 'serialized as JSON' } @@ -210,7 +209,20 @@ def validate_config(self, config): "license_id": "cc-by", "dataset_type": "uat-datashare-metadata", "api_auth": "Apikey 9f42499563025e767dd53147787ca636d3958f7d20c0cf25e81b01a9", - "organisation_mapping": [{"resowner": "Organisation A", "org-name": "organisation-a"}] + "organisation_mapping": [{"resowner": "Organisation A", "org-name": "organisation-a"}], + "add_resources": + { + "wms": + { + "full_url": "https://geoserver-uat.maps.vic.gov.au/geoserver/ows?service=WMS&request=getCapabilities", + "resource_url": "https://geoserver-uat.maps.vic.gov.au/geoserver/wms?service=wms&request=getmap&format=image%2Fpng8&transparent=true&layers={layername}&width=512&height=512&crs=epsg%3A3857&bbox=16114148.554967716%2C-4456584.4971389165%2C16119040.524777967%2C-4451692.527328665" + }, + "wfs": + { + "full_url": "https://geoserver-uat.maps.vic.gov.au/geoserver/ows?service=WFS&request=getCapabilities", + "resource_url": "https://geoserver-uat.maps.vic.gov.au/geoserver/wfs?request=GetCapabilities&service=WFS" + } + } } try: config_obj = json.loads(config) @@ -278,7 +290,18 @@ def validate_config(self, config): raise ValueError(f'Organisation {organisation_mapping.get("org-name")} not found') else: raise ValueError('organisation_mapping must be set') - + + if 'add_resources' in config_obj: + if not isinstance(config_obj['add_resources'], dict): + raise ValueError('add_resources item must be a *dict* of available formats. eg {"wms": {"full_url": "https://...", "resource_url": "https://..."}, "wfs": {"full_url": "https://...", "resource_url": "https://..."},}') + for resource in config_obj['add_resources'].values(): + if not isinstance(resource, dict): + raise ValueError('add_resource item must be a *dict* of urls. eg {"full_url": "https://geoserver-uat.maps.vic.gov.au/geoserver/ows?service=WMS&request=getCapabilities", "resource_url": "https://geoserver-uat.maps.vic.gov.au/geoserver/wms?service=wms&request=getmap&format=image%2Fpng8&transparent=true&layers={layername}&width=512&height=512&crs=epsg%3A3857&bbox=16114148.554967716%2C-4456584.4971389165%2C16119040.524777967%2C-4451692.527328665"}') + if not resource.get('full_url'): + raise ValueError('add_resource item must have property *full_url*. eg "full_url": "https://geoserver-uat.maps.vic.gov.au/geoserver/ows?service=WMS&request=getCapabilities"') + if not resource.get('resource_url'): + raise ValueError('add_resource item must have property *resource_url*. eg "resource_url": "https://geoserver-uat.maps.vic.gov.au/geoserver/wms?service=wms&request=getmap&format=image%2Fpng8&transparent=true&layers={layername}&width=512&height=512&crs=epsg%3A3857&bbox=16114148.554967716%2C-4456584.4971389165%2C16119040.524777967%2C-4451692.527328665"}') + config = json.dumps(config_obj, indent=1) except ValueError as e: raise e @@ -443,53 +466,32 @@ def _get_package_dict(self, harvest_object, context): 'period_end': convert_date_to_isoformat(metashare_dict.get('tempextentend', ''), 'tempextentend', metashare_dict.get('name')), 'url': resource_url } - + res['name'] = res['name'] + ' ' + format if attribution: res['attribution'] = attribution resources.append(res) - - # Verify and get info for WMS resource - try: - wms_doc = requests.get(config.get("ckanext.datavic_harvester.geoserver_dns.wms")) - wms_soup= BeautifulSoup(wms_doc.content,"lxml-xml") - wms_obj = wms_soup.find_all("Layer", {"queryable": 1}) - wms_result = [x for x in wms_obj if uuid in str(x)] - if wms_result: - wms_res = { - 'name': wms_result[0].find("Title").text, - 'format': "WMS", - 'period_start': convert_date_to_isoformat(metashare_dict.get('tempextentbegin', ''), 'tempextentbegin', metashare_dict.get('name')), - 'period_end': convert_date_to_isoformat(metashare_dict.get('tempextentend', ''), 'tempextentend', metashare_dict.get('name')), - 'url': config.get("ckanext.datavic_harvester.resource.wms_url").format(wms_result[0].find("Title").text) - } - wms_res['name'] = wms_res['name'].upper() + ' WMS' - if attribution: - wms_res['attribution'] = attribution - resources.append(wms_res) - except Exception as e: - log.error(e) - - # Verify and get info for WFS resource - try: - wfs_doc = requests.get(config.get("ckanext.datavic_harvester.geoserver_dns.wfs")) - wfs_soup= BeautifulSoup(wfs_doc.content,"lxml-xml") - wfs_obj = wfs_soup.find_all("FeatureType") - wfs_result = [x for x in wfs_obj if uuid in str(x)] - if wfs_result: - wfs_res = { - 'name': wfs_result[0].find("Title").text, - 'format': "WFS", - 'period_start': convert_date_to_isoformat(metashare_dict.get('tempextentbegin', ''), 'tempextentbegin', metashare_dict.get('name')), - 'period_end': convert_date_to_isoformat(metashare_dict.get('tempextentend', ''), 'tempextentend', metashare_dict.get('name')), - 'url': config.get("ckanext.datavic_harvester.resource.wms_url") - } - wfs_res['name'] = wfs_res['name'].upper() + ' WFS' - if attribution: - wfs_res['attribution'] = attribution - resources.append(wfs_res) - except Exception as e: - log.error(e) + + # Generate additional WMS/WFS resources + if self.config['add_resources']: + for key, value in self.config['add_resources'].items(): + try: + request = requests.get(value.get('full_url')) + source= BeautifulSoup(request.content,"lxml-xml") + uuid_in_source = source.find("Keyword", string=f"MetadataID={uuid}") + except ConnectionError as e: + log.error(e) + if uuid_in_source: + res = { + "name": uuid_in_source.find_previous("Title").text.upper() + ' ' + key.upper(), + "format": key.upper(), + "period_start": convert_date_to_isoformat(metashare_dict.get('tempextentbegin', ''), 'tempextentbegin', metashare_dict.get('name')), + "period_end": convert_date_to_isoformat(metashare_dict.get('tempextentend', ''), 'tempextentend', metashare_dict.get('name')), + "url": value.get('resource_url').format(layername=uuid_in_source.find_previous("Name").text) + } + if attribution: + res['attribution'] = attribution + resources.append(res) package_dict['resources'] = resources From 2198cfce7ccdfa9f3d507e540847775a63108e56 Mon Sep 17 00:00:00 2001 From: alexmorev Date: Mon, 8 Aug 2022 19:59:59 +0300 Subject: [PATCH 03/21] SXDEDPCXZIC-31_DATAVIC-430 / fix exeptions bugs --- ckanext/datavic_harvester/harvesters/delwp.py | 89 ++++++++----------- 1 file changed, 38 insertions(+), 51 deletions(-) diff --git a/ckanext/datavic_harvester/harvesters/delwp.py b/ckanext/datavic_harvester/harvesters/delwp.py index 52d8ef2..3dea08e 100644 --- a/ckanext/datavic_harvester/harvesters/delwp.py +++ b/ckanext/datavic_harvester/harvesters/delwp.py @@ -201,29 +201,7 @@ def validate_config(self, config): ''' if not config: raise ValueError('No config options set') - { - "default_groups": ["spatial-data"], - "full_metadata_url_prefix": "https://metashare.maps.vic.gov.au/geonetwork/srv/api/records/{UUID}/formatters/sdm-html?root=html&output=html", - "resource_url_prefix": "https://datashare.maps.vic.gov.au/search?md=", - "resource_attribution": "Copyright (c) The State of Victoria, Department of Environment, Land, Water & Planning", - "license_id": "cc-by", - "dataset_type": "uat-datashare-metadata", - "api_auth": "Apikey 9f42499563025e767dd53147787ca636d3958f7d20c0cf25e81b01a9", - "organisation_mapping": [{"resowner": "Organisation A", "org-name": "organisation-a"}], - "add_resources": - { - "wms": - { - "full_url": "https://geoserver-uat.maps.vic.gov.au/geoserver/ows?service=WMS&request=getCapabilities", - "resource_url": "https://geoserver-uat.maps.vic.gov.au/geoserver/wms?service=wms&request=getmap&format=image%2Fpng8&transparent=true&layers={layername}&width=512&height=512&crs=epsg%3A3857&bbox=16114148.554967716%2C-4456584.4971389165%2C16119040.524777967%2C-4451692.527328665" - }, - "wfs": - { - "full_url": "https://geoserver-uat.maps.vic.gov.au/geoserver/ows?service=WFS&request=getCapabilities", - "resource_url": "https://geoserver-uat.maps.vic.gov.au/geoserver/wfs?request=GetCapabilities&service=WFS" - } - } - } + try: config_obj = json.loads(config) context = {'model': model, 'user': toolkit.g.user} @@ -291,17 +269,6 @@ def validate_config(self, config): else: raise ValueError('organisation_mapping must be set') - if 'add_resources' in config_obj: - if not isinstance(config_obj['add_resources'], dict): - raise ValueError('add_resources item must be a *dict* of available formats. eg {"wms": {"full_url": "https://...", "resource_url": "https://..."}, "wfs": {"full_url": "https://...", "resource_url": "https://..."},}') - for resource in config_obj['add_resources'].values(): - if not isinstance(resource, dict): - raise ValueError('add_resource item must be a *dict* of urls. eg {"full_url": "https://geoserver-uat.maps.vic.gov.au/geoserver/ows?service=WMS&request=getCapabilities", "resource_url": "https://geoserver-uat.maps.vic.gov.au/geoserver/wms?service=wms&request=getmap&format=image%2Fpng8&transparent=true&layers={layername}&width=512&height=512&crs=epsg%3A3857&bbox=16114148.554967716%2C-4456584.4971389165%2C16119040.524777967%2C-4451692.527328665"}') - if not resource.get('full_url'): - raise ValueError('add_resource item must have property *full_url*. eg "full_url": "https://geoserver-uat.maps.vic.gov.au/geoserver/ows?service=WMS&request=getCapabilities"') - if not resource.get('resource_url'): - raise ValueError('add_resource item must have property *resource_url*. eg "resource_url": "https://geoserver-uat.maps.vic.gov.au/geoserver/wms?service=wms&request=getmap&format=image%2Fpng8&transparent=true&layers={layername}&width=512&height=512&crs=epsg%3A3857&bbox=16114148.554967716%2C-4456584.4971389165%2C16119040.524777967%2C-4451692.527328665"}') - config = json.dumps(config_obj, indent=1) except ValueError as e: raise e @@ -473,25 +440,45 @@ def _get_package_dict(self, harvest_object, context): resources.append(res) # Generate additional WMS/WFS resources - if self.config['add_resources']: - for key, value in self.config['add_resources'].items(): + if self.config['geoserver_dns']: + geoserver_dns = self.config['geoserver_dns'] + dict_geoserver_urls = { + 'WMS': [ + geoserver_dns + '/geoserver/ows?service=WMS&request=getCapabilities', + 'https://geoserver-uat.maps.vic.gov.au/geoserver/wms?service=wms&request=getmap&format=image%2Fpng8&transparent=true&layers={layername}&width=512&height=512&crs=epsg%3A3857&bbox=16114148.554967716%2C-4456584.4971389165%2C16119040.524777967%2C-4451692.527328665' + ], + 'WFS': [ + geoserver_dns + '/geoserver/ows?service=WFS&request=getCapabilities', + 'https://geoserver-uat.maps.vic.gov.au/geoserver/wfs?request=GetCapabilities&service=WFS' + ] + } + + def _get_content_with_uuid(geoserver_url): try: - request = requests.get(value.get('full_url')) - source= BeautifulSoup(request.content,"lxml-xml") - uuid_in_source = source.find("Keyword", string=f"MetadataID={uuid}") - except ConnectionError as e: + res = requests.get(geoserver_url) + except requests.exceptions.RequestException as e: log.error(e) - if uuid_in_source: - res = { - "name": uuid_in_source.find_previous("Title").text.upper() + ' ' + key.upper(), - "format": key.upper(), - "period_start": convert_date_to_isoformat(metashare_dict.get('tempextentbegin', ''), 'tempextentbegin', metashare_dict.get('name')), - "period_end": convert_date_to_isoformat(metashare_dict.get('tempextentend', ''), 'tempextentend', metashare_dict.get('name')), - "url": value.get('resource_url').format(layername=uuid_in_source.find_previous("Name").text) - } - if attribution: - res['attribution'] = attribution - resources.append(res) + return None + try: + geoserver_content= BeautifulSoup(res.content,"lxml-xml") + except NameError as e: + log.error(e) + return None + layer_data_with_uuid = geoserver_content.find("Keyword", string=f"MetadataID={uuid}") + return layer_data_with_uuid + + def generate_geo_resource(layer_data_with_uuid, format, resource_url): + resource_data = { + "name": layer_data_with_uuid.find_previous("Title").text.upper() + ' ' + format.upper(), + "format": format.upper(), + "url": resource_url.format(layername=layer_data_with_uuid.find_previous("Name").text) + } + return resource_data + + for format, urls in dict_geoserver_urls.items(): + layer_data = _get_content_with_uuid(urls[0]) + if layer_data: + resources.append(generate_geo_resource(layer_data, format, urls[1])) package_dict['resources'] = resources From 4084ec89c979a3b272345d33df68b2a92f477e46 Mon Sep 17 00:00:00 2001 From: alexmorev Date: Tue, 9 Aug 2022 14:08:24 +0300 Subject: [PATCH 04/21] SXDEDPCXZIC-31_DATAVIC-430 / fixed new bugs --- ckanext/datavic_harvester/harvesters/delwp.py | 46 +++++++++---------- 1 file changed, 21 insertions(+), 25 deletions(-) diff --git a/ckanext/datavic_harvester/harvesters/delwp.py b/ckanext/datavic_harvester/harvesters/delwp.py index 3dea08e..d7a2ace 100644 --- a/ckanext/datavic_harvester/harvesters/delwp.py +++ b/ckanext/datavic_harvester/harvesters/delwp.py @@ -440,45 +440,41 @@ def _get_package_dict(self, harvest_object, context): resources.append(res) # Generate additional WMS/WFS resources - if self.config['geoserver_dns']: + if 'geoserver_dns' in self.config: geoserver_dns = self.config['geoserver_dns'] dict_geoserver_urls = { - 'WMS': [ - geoserver_dns + '/geoserver/ows?service=WMS&request=getCapabilities', - 'https://geoserver-uat.maps.vic.gov.au/geoserver/wms?service=wms&request=getmap&format=image%2Fpng8&transparent=true&layers={layername}&width=512&height=512&crs=epsg%3A3857&bbox=16114148.554967716%2C-4456584.4971389165%2C16119040.524777967%2C-4451692.527328665' - ], - 'WFS': [ - geoserver_dns + '/geoserver/ows?service=WFS&request=getCapabilities', - 'https://geoserver-uat.maps.vic.gov.au/geoserver/wfs?request=GetCapabilities&service=WFS' - ] + 'WMS': { + 'geoserver_url': geoserver_dns + '/geoserver/ows?service=WMS&request=getCapabilities', + 'resource_url': geoserver_dns + '/geoserver/wms?service=wms&request=getmap&format=image%2Fpng8&transparent=true&layers={layername}&width=512&height=512&crs=epsg%3A3857&bbox=16114148.554967716%2C-4456584.4971389165%2C16119040.524777967%2C-4451692.527328665' + }, + 'WFS': { + 'geoserver_url': geoserver_dns + '/geoserver/ows?service=WFS&request=getCapabilities', + 'resource_url': geoserver_dns + '/geoserver/wfs?request=GetCapabilities&service=WFS' + } } - def _get_content_with_uuid(geoserver_url): + def get_content_with_uuid(geoserver_url): try: - res = requests.get(geoserver_url) + geoserver_response = requests.get(geoserver_url) except requests.exceptions.RequestException as e: log.error(e) return None - try: - geoserver_content= BeautifulSoup(res.content,"lxml-xml") - except NameError as e: - log.error(e) - return None - layer_data_with_uuid = geoserver_content.find("Keyword", string=f"MetadataID={uuid}") - return layer_data_with_uuid + geoserver_content= BeautifulSoup(geoserver_response.content,"lxml-xml") + return geoserver_content.find("Keyword", string=f"MetadataID={uuid}") - def generate_geo_resource(layer_data_with_uuid, format, resource_url): + def generate_geo_resource(layer_data_with_uuid, resource_format, resource_url): resource_data = { - "name": layer_data_with_uuid.find_previous("Title").text.upper() + ' ' + format.upper(), - "format": format.upper(), + "name": layer_data_with_uuid.find_previous("Title").text.upper() + ' ' + resource_format, + "format": resource_format, "url": resource_url.format(layername=layer_data_with_uuid.find_previous("Name").text) } return resource_data - for format, urls in dict_geoserver_urls.items(): - layer_data = _get_content_with_uuid(urls[0]) - if layer_data: - resources.append(generate_geo_resource(layer_data, format, urls[1])) + for resource_format in dict_geoserver_urls: + print(resource_format) + layer_data_with_uuid = get_content_with_uuid(dict_geoserver_urls[resource_format].get('geoserver_url')) + if layer_data_with_uuid: + resources.append(generate_geo_resource(layer_data_with_uuid, resource_format, dict_geoserver_urls[resource_format].get('resource_url'))) package_dict['resources'] = resources From be2f7b0fdf13b121229377e1994f563ebc1c0abe Mon Sep 17 00:00:00 2001 From: alexmorev Date: Tue, 9 Aug 2022 16:15:26 +0300 Subject: [PATCH 05/21] SXDEDPCXZIC-31_DATAVIC-430 / fix using inner func --- ckanext/datavic_harvester/harvesters/delwp.py | 42 +++++++++---------- 1 file changed, 20 insertions(+), 22 deletions(-) diff --git a/ckanext/datavic_harvester/harvesters/delwp.py b/ckanext/datavic_harvester/harvesters/delwp.py index d7a2ace..6c2a2af 100644 --- a/ckanext/datavic_harvester/harvesters/delwp.py +++ b/ckanext/datavic_harvester/harvesters/delwp.py @@ -135,7 +135,14 @@ def _get_organisation(organisation_mapping, resowner, harvest_object, context): source_dict = logic.get_action('package_show')(context.copy(), {'id': harvest_object.harvest_source_id}) org_id = source_dict.get('owner_org') return org_id - + +def _generate_geo_resource(layer_data_with_uuid, resource_format, resource_url): + resource_data = { + "name": layer_data_with_uuid.find_previous("Title").text.upper() + ' ' + resource_format, + "format": resource_format, + "url": resource_url.format(layername=layer_data_with_uuid.find_previous("Name").text) + } + return resource_data class DelwpHarvester(HarvesterBase): @@ -317,7 +324,7 @@ def _get_guids_and_datasets(self, datasets): guid = fields.get('uuid', None) yield guid, as_string - + def _get_package_dict(self, harvest_object, context): """ Convert the string based content from the harvest_object @@ -440,6 +447,15 @@ def _get_package_dict(self, harvest_object, context): resources.append(res) # Generate additional WMS/WFS resources + def _get_content_with_uuid(geoserver_url): + try: + geoserver_response = requests.get(geoserver_url) + except requests.exceptions.RequestException as e: + log.error(e) + return None + geoserver_content= BeautifulSoup(geoserver_response.content,"lxml-xml") + return geoserver_content.find("Keyword", string=f"MetadataID={uuid}") + if 'geoserver_dns' in self.config: geoserver_dns = self.config['geoserver_dns'] dict_geoserver_urls = { @@ -453,28 +469,10 @@ def _get_package_dict(self, harvest_object, context): } } - def get_content_with_uuid(geoserver_url): - try: - geoserver_response = requests.get(geoserver_url) - except requests.exceptions.RequestException as e: - log.error(e) - return None - geoserver_content= BeautifulSoup(geoserver_response.content,"lxml-xml") - return geoserver_content.find("Keyword", string=f"MetadataID={uuid}") - - def generate_geo_resource(layer_data_with_uuid, resource_format, resource_url): - resource_data = { - "name": layer_data_with_uuid.find_previous("Title").text.upper() + ' ' + resource_format, - "format": resource_format, - "url": resource_url.format(layername=layer_data_with_uuid.find_previous("Name").text) - } - return resource_data - for resource_format in dict_geoserver_urls: - print(resource_format) - layer_data_with_uuid = get_content_with_uuid(dict_geoserver_urls[resource_format].get('geoserver_url')) + layer_data_with_uuid = _get_content_with_uuid(dict_geoserver_urls[resource_format].get('geoserver_url')) if layer_data_with_uuid: - resources.append(generate_geo_resource(layer_data_with_uuid, resource_format, dict_geoserver_urls[resource_format].get('resource_url'))) + resources.append(_generate_geo_resource(layer_data_with_uuid, resource_format, dict_geoserver_urls[resource_format].get('resource_url'))) package_dict['resources'] = resources From ade9cde3d7b9460cdcba2a1db92364d7f76cacd2 Mon Sep 17 00:00:00 2001 From: ajmal Date: Mon, 19 Sep 2022 09:57:37 +0530 Subject: [PATCH 06/21] SXDEDPCXZIC-44_DATAVIC-493/cleaned resource name --- ckanext/datavic_harvester/harvesters/delwp.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ckanext/datavic_harvester/harvesters/delwp.py b/ckanext/datavic_harvester/harvesters/delwp.py index 00d6909..6f8fb82 100644 --- a/ckanext/datavic_harvester/harvesters/delwp.py +++ b/ckanext/datavic_harvester/harvesters/delwp.py @@ -135,6 +135,14 @@ def _get_organisation(organisation_mapping, resowner, harvest_object, context): org_id = source_dict.get('owner_org') return org_id +def clean_resource_name(name): + ''' + Replace underscores (_) with spaces to avoid braking words + ''' + # convert underscores to spaces + name = re.sub('_', ' ', name) + + return name class DelwpHarvester(HarvesterBase): @@ -443,6 +451,7 @@ def _get_package_dict(self, harvest_object, context): } res['name'] = res['name'] + ' ' + format + res['name'] = clean_resource_name(res['name']) if attribution: res['attribution'] = attribution resources.append(res) From 2c4da108c439abe82249651a5d503448be161ba3 Mon Sep 17 00:00:00 2001 From: mutantsan Date: Thu, 19 Jan 2023 11:44:48 +0200 Subject: [PATCH 07/21] SXDEDPCXZIC-90_DATAVIC-470 / black project --- ckanext/__init__.py | 2 + ckanext/datavic_harvester/bs4_helpers.py | 44 +- ckanext/datavic_harvester/harvesters/_json.py | 269 ++++---- ckanext/datavic_harvester/harvesters/delwp.py | 606 +++++++++++------- .../datavic_harvester/harvesters/metashare.py | 391 ++++++----- ckanext/datavic_harvester/helpers.py | 11 +- ckanext/datavic_harvester/plugin.py | 397 ++++++++---- setup.py | 69 +- 8 files changed, 1060 insertions(+), 729 deletions(-) diff --git a/ckanext/__init__.py b/ckanext/__init__.py index ed48ed0..35ee891 100644 --- a/ckanext/__init__.py +++ b/ckanext/__init__.py @@ -3,7 +3,9 @@ # this is a namespace package try: import pkg_resources + pkg_resources.declare_namespace(__name__) except ImportError: import pkgutil + __path__ = pkgutil.extend_path(__path__, __name__) diff --git a/ckanext/datavic_harvester/bs4_helpers.py b/ckanext/datavic_harvester/bs4_helpers.py index fa6aef5..46fae1e 100644 --- a/ckanext/datavic_harvester/bs4_helpers.py +++ b/ckanext/datavic_harvester/bs4_helpers.py @@ -13,7 +13,7 @@ def _remove_all_attrs(soup): # remove all attributes except some tags def _remove_all_attrs_except(soup): - whitelist = ['a'] + whitelist = ["a"] for tag in soup.find_all(True): if tag.name not in whitelist: tag.attrs = {} @@ -22,14 +22,14 @@ def _remove_all_attrs_except(soup): # remove all attributes except some tags(only saving ['href','src'] attr) def _remove_all_attrs_except_saving(soup): - whitelist = ['a', 'br'] + whitelist = ["a", "br"] for tag in soup.find_all(True): if tag.name not in whitelist: tag.attrs = {} else: attrs = dict(tag.attrs) for attr in attrs: - if attr not in ['target', 'href']: + if attr not in ["target", "href"]: del tag.attrs[attr] return soup @@ -43,37 +43,39 @@ def _unwrap_all_except(soup, whitelist): def _extract_metadata_url(soup, base_url): url = None - for tag in soup.find_all('a'): - if 'href' in tag.attrs and base_url in tag['href']: - url = tag['href'] + for tag in soup.find_all("a"): + if "href" in tag.attrs and base_url in tag["href"]: + url = tag["href"] return url def _fetch_update_frequency(full_metadata_url): - update_frequency = 'unknown' + update_frequency = "unknown" try: response = requests.get(full_metadata_url) - soup = BeautifulSoup(response.content, 'html.parser') + soup = BeautifulSoup(response.content, "html.parser") - for tag in soup('script', attrs={'id': 'tpx_ExternalView_Frequency_of_Updates'}): + for tag in soup( + "script", attrs={"id": "tpx_ExternalView_Frequency_of_Updates"} + ): tag_text = tag.get_text() - if 'deemed' in tag_text: - update_frequency = 'asNeeded' + if "deemed" in tag_text: + update_frequency = "asNeeded" break - elif 'week ' in tag_text: - update_frequency = 'weekly' + elif "week " in tag_text: + update_frequency = "weekly" break - elif 'twice' in tag_text: - update_frequency = 'biannually' + elif "twice" in tag_text: + update_frequency = "biannually" break - elif 'year' in tag_text: - update_frequency = 'annually' + elif "year" in tag_text: + update_frequency = "annually" break - elif 'month' in tag_text: - update_frequency = 'monthly' + elif "month" in tag_text: + update_frequency = "monthly" break - elif 'quarter' in tag_text: - update_frequency = 'quarterly' + elif "quarter" in tag_text: + update_frequency = "quarterly" break except Exception as e: print("An error occured: %s" % str(e)) diff --git a/ckanext/datavic_harvester/harvesters/_json.py b/ckanext/datavic_harvester/harvesters/_json.py index 3dfe4b7..761b7d2 100644 --- a/ckanext/datavic_harvester/harvesters/_json.py +++ b/ckanext/datavic_harvester/harvesters/_json.py @@ -15,17 +15,16 @@ class DataVicDCATJSONHarvester(DCATJSONHarvester): - def info(self): return { - 'name': 'datavic_dcat_json', - 'title': 'DataVic DCAT JSON Harvester', - 'description': 'DataVic Harvester for DCAT dataset descriptions ' + - 'serialized as JSON' + "name": "datavic_dcat_json", + "title": "DataVic DCAT JSON Harvester", + "description": "DataVic Harvester for DCAT dataset descriptions " + + "serialized as JSON", } def validate_config(self, config): - ''' + """ Harvesters can provide this method to validate the configuration entered in the form. It should return a single string, which will be stored in the database. Exceptions raised will be shown in the form's @@ -35,34 +34,41 @@ def validate_config(self, config): :param harvest_object_id: Config string coming from the form :returns: A string with the validated configuration options - ''' + """ if not config: return config try: config_obj = json.loads(config) - if 'default_groups' in config_obj: - if not isinstance(config_obj['default_groups'], list): - raise ValueError('default_groups must be a *list* of group' - ' names/ids') - if config_obj['default_groups'] and \ - not isinstance(config_obj['default_groups'][0], - six.string_types): - raise ValueError('default_groups must be a list of group ' - 'names/ids (i.e. strings)') + if "default_groups" in config_obj: + if not isinstance(config_obj["default_groups"], list): + raise ValueError( + "default_groups must be a *list* of group" " names/ids" + ) + if config_obj["default_groups"] and not isinstance( + config_obj["default_groups"][0], six.string_types + ): + raise ValueError( + "default_groups must be a list of group " + "names/ids (i.e. strings)" + ) # Check if default groups exist - context = {'model': model, 'user': toolkit.c.user} - config_obj['default_group_dicts'] = [] - for group_name_or_id in config_obj['default_groups']: + context = {"model": model, "user": toolkit.c.user} + config_obj["default_group_dicts"] = [] + for group_name_or_id in config_obj["default_groups"]: try: - group = get_action('group_show')(context, {'id': group_name_or_id}) + group = get_action("group_show")( + context, {"id": group_name_or_id} + ) # save the dict to the config object, as we'll need it # in the set_default_group of every dataset - config_obj['default_group_dicts'].append({'id': group['id'], 'name': group['name']}) + config_obj["default_group_dicts"].append( + {"id": group["id"], "name": group["name"]} + ) except NotFound as e: - raise ValueError('Default group not found') + raise ValueError("Default group not found") config = json.dumps(config_obj, indent=1) except ValueError as e: @@ -71,45 +77,47 @@ def validate_config(self, config): return config def fix_erroneous_tags(self, package_dict): - ''' + """ Replace ampersands with "and" in tags :param package_dict: :return: - ''' - if package_dict['tags']: - for tag in package_dict['tags']: - if 'name' in tag and '&' in tag['name']: - tag['name'] = tag['name'].replace('&', 'and') + """ + if package_dict["tags"]: + for tag in package_dict["tags"]: + if "name" in tag and "&" in tag["name"]: + tag["name"] = tag["name"].replace("&", "and") def generate_extract(self, soup): - ''' + """ Extract is just the first sentence of the text-only description/notes for our purposes at this stage. :param soup: :return: - ''' + """ try: notes = soup.get_text() - index = notes.index('.') - notes = notes[:index + 1] + index = notes.index(".") + notes = notes[: index + 1] except Exception as ex: - log.error('Generate extract error for: {0}'.format(str(soup))) + log.error("Generate extract error for: {0}".format(str(soup))) log.error(str(ex)) return notes def set_description_and_extract(self, package_dict, soup): - if 'default.description' in package_dict['notes']: - package_dict['notes'] = 'No description has been entered for this dataset.' - package_dict['extract'] = 'No abstract has been entered for this dataset.' + if "default.description" in package_dict["notes"]: + package_dict["notes"] = "No description has been entered for this dataset." + package_dict["extract"] = "No abstract has been entered for this dataset." else: - package_dict['notes'] = bs4_helpers._unwrap_all_except( + package_dict["notes"] = bs4_helpers._unwrap_all_except( bs4_helpers._remove_all_attrs_except_saving(soup), # allowed tags - ['a', 'br'] + ["a", "br"], ) - package_dict['extract'] = self.generate_extract(soup) + package_dict["extract"] = self.generate_extract(soup) - def set_full_metadata_url_and_update_frequency(self, harvest_config, package_dict, soup): - ''' + def set_full_metadata_url_and_update_frequency( + self, harvest_config, package_dict, soup + ): + """ Try and extract the full metadata URL from the dataset description and then the update frequency from the full metadata URL. If full metadata URL not found, or update frequency not determined, it will default to 'unknown' either @@ -118,116 +126,151 @@ def set_full_metadata_url_and_update_frequency(self, harvest_config, package_dic :param package_dict: :param soup: :return: - ''' + """ # - full_metadata_url = [extra for extra in package_dict['extras'] if extra['key'] == 'full_metadata_url'] + full_metadata_url = [ + extra + for extra in package_dict["extras"] + if extra["key"] == "full_metadata_url" + ] if not full_metadata_url: # Set the default if it has been added to the harvest source config - if 'default_full_metadata_url' in harvest_config: - full_metadata_url = harvest_config['default_full_metadata_url'] + if "default_full_metadata_url" in harvest_config: + full_metadata_url = harvest_config["default_full_metadata_url"] # Try and extract a full metadata url from the description based on # a pattern defined in the harvest source config - if 'full_metadata_url_pattern' in harvest_config: - desc_full_metadata_url = bs4_helpers._extract_metadata_url(soup, harvest_config['full_metadata_url_pattern']) + if "full_metadata_url_pattern" in harvest_config: + desc_full_metadata_url = bs4_helpers._extract_metadata_url( + soup, harvest_config["full_metadata_url_pattern"] + ) if desc_full_metadata_url: full_metadata_url = desc_full_metadata_url # Attempt to extract the update frequency from the full metadata page - package_dict['update_frequency'] = bs4_helpers._fetch_update_frequency(full_metadata_url) + package_dict[ + "update_frequency" + ] = bs4_helpers._fetch_update_frequency(full_metadata_url) if full_metadata_url: - package_dict['full_metadata_url'] = full_metadata_url + package_dict["full_metadata_url"] = full_metadata_url def set_default_group(self, harvest_config, package_dict): - ''' + """ Set the default group from config :param harvest_config: :param package_dict: :return: - ''' + """ # Set default groups if needed - default_group_dicts = harvest_config.get('default_group_dicts', []) + default_group_dicts = harvest_config.get("default_group_dicts", []) if default_group_dicts and isinstance(default_group_dicts, list): category = default_group_dicts[0] if default_group_dicts else None if category: - package_dict['category'] = category.get('id') + package_dict["category"] = category.get("id") - if not 'groups' in package_dict: - package_dict['groups'] = [] - existing_group_ids = [g['id'] for g in package_dict['groups']] - package_dict['groups'].extend( - [g for g in default_group_dicts - if g['id'] not in existing_group_ids]) + if not "groups" in package_dict: + package_dict["groups"] = [] + existing_group_ids = [g["id"] for g in package_dict["groups"]] + package_dict["groups"].extend( + [g for g in default_group_dicts if g["id"] not in existing_group_ids] + ) def set_required_fields_defaults(self, harvest_config, dcat_dict, package_dict): - personal_information = [extra for extra in package_dict['extras'] if - extra['key'] == 'personal_information'] + personal_information = [ + extra + for extra in package_dict["extras"] + if extra["key"] == "personal_information" + ] if not personal_information: - package_dict['personal_information'] = 'no' + package_dict["personal_information"] = "no" - access = [extra for extra in package_dict['extras'] if - extra['key'] == 'access'] + access = [extra for extra in package_dict["extras"] if extra["key"] == "access"] if not access: - package_dict['access'] = 'yes' + package_dict["access"] = "yes" - protective_marking = [extra for extra in package_dict['extras'] if - extra['key'] == 'protective_marking'] + protective_marking = [ + extra + for extra in package_dict["extras"] + if extra["key"] == "protective_marking" + ] if not protective_marking: - package_dict['protective_marking'] = 'official' + package_dict["protective_marking"] = "official" - update_frequency = [extra for extra in package_dict['extras'] if - extra['key'] == 'update_frequency'] + update_frequency = [ + extra + for extra in package_dict["extras"] + if extra["key"] == "update_frequency" + ] if not update_frequency: - package_dict['update_frequency'] = 'unknown' + package_dict["update_frequency"] = "unknown" - organization_visibility = [extra for extra in package_dict['extras'] if - extra['key'] == 'organization_visibility'] + organization_visibility = [ + extra + for extra in package_dict["extras"] + if extra["key"] == "organization_visibility" + ] if not organization_visibility: - package_dict['organization_visibility'] = 'current' + package_dict["organization_visibility"] = "current" - workflow_status = [extra for extra in package_dict['extras'] if - extra['key'] == 'workflow_status'] + workflow_status = [ + extra + for extra in package_dict["extras"] + if extra["key"] == "workflow_status" + ] if not workflow_status: - package_dict['workflow_status'] = 'draft' - - issued = dcat_dict.get('issued') - date_created_data_asset = [extra for extra in package_dict['extras'] if - extra['key'] == 'date_created_data_asset'] + package_dict["workflow_status"] = "draft" + + issued = dcat_dict.get("issued") + date_created_data_asset = [ + extra + for extra in package_dict["extras"] + if extra["key"] == "date_created_data_asset" + ] if issued and not date_created_data_asset: - package_dict['date_created_data_asset'] = helpers.convert_date_to_isoformat(issued) + package_dict["date_created_data_asset"] = helpers.convert_date_to_isoformat( + issued + ) - modified = dcat_dict.get('modified') + modified = dcat_dict.get("modified") - date_modified_data_asset = [extra for extra in package_dict['extras'] if - extra['key'] == 'date_modified_data_asset'] + date_modified_data_asset = [ + extra + for extra in package_dict["extras"] + if extra["key"] == "date_modified_data_asset" + ] if modified and not date_modified_data_asset: - package_dict['date_modified_data_asset'] = helpers.convert_date_to_isoformat(modified) - - landing_page = dcat_dict.get('landingPage') - full_metadata_url = [extra for extra in package_dict['extras'] if - extra['key'] == 'full_metadata_url'] + package_dict[ + "date_modified_data_asset" + ] = helpers.convert_date_to_isoformat(modified) + + landing_page = dcat_dict.get("landingPage") + full_metadata_url = [ + extra + for extra in package_dict["extras"] + if extra["key"] == "full_metadata_url" + ] if landing_page and not full_metadata_url: - package_dict['full_metadata_url'] = landing_page + package_dict["full_metadata_url"] = landing_page - license_id = package_dict.get('license_id', None) - if not license_id and 'default_license' in harvest_config: - default_license = harvest_config.get('default_license') + license_id = package_dict.get("license_id", None) + if not license_id and "default_license" in harvest_config: + default_license = harvest_config.get("default_license") if default_license: - default_license_id = default_license.get('id') - default_license_title = default_license.get('title') + default_license_id = default_license.get("id") + default_license_title = default_license.get("title") if default_license_id: - package_dict['license_id'] = default_license_id + package_dict["license_id"] = default_license_id if default_license_title: - package_dict['custom_licence_text'] = default_license_title + package_dict["custom_licence_text"] = default_license_title - keywords = dcat_dict.get('keyword') - package_dict['tag_string'] = keywords if keywords else [] + keywords = dcat_dict.get("keyword") + package_dict["tag_string"] = keywords if keywords else [] def _get_package_dict(self, harvest_object): - ''' + """ Converts a DCAT dataset into a CKAN dataset and performs some Data.Vic specific conversion of the data :param harvest_object: :return: - ''' + """ content = harvest_object.content @@ -242,11 +285,13 @@ def _get_package_dict(self, harvest_object): except Exception: harvest_config = None - soup = BeautifulSoup(package_dict['notes'], 'html.parser') + soup = BeautifulSoup(package_dict["notes"], "html.parser") self.set_description_and_extract(package_dict, soup) - self.set_full_metadata_url_and_update_frequency(harvest_config, package_dict, soup) + self.set_full_metadata_url_and_update_frequency( + harvest_config, package_dict, soup + ) self.fix_erroneous_tags(package_dict) @@ -259,21 +304,19 @@ def _get_package_dict(self, harvest_object): return package_dict, dcat_dict def _get_existing_dataset(self, guid): - ''' + """ Checks if a dataset with a certain guid extra already exists Returns a dict as the ones returned by package_show - ''' + """ datasets = self._read_datasets_from_db(guid) if not datasets: return None elif len(datasets) > 1: - log.error('Found more than one dataset with the same guid: {0}' - .format(guid)) - context = { - 'user': self._get_user_name(), - 'ignore_auth': True - } - return toolkit.get_action('package_show')(context, {'id': datasets[0][0]}) + log.error( + "Found more than one dataset with the same guid: {0}".format(guid) + ) + context = {"user": self._get_user_name(), "ignore_auth": True} + return toolkit.get_action("package_show")(context, {"id": datasets[0][0]}) diff --git a/ckanext/datavic_harvester/harvesters/delwp.py b/ckanext/datavic_harvester/harvesters/delwp.py index 00942ea..a9e2ef4 100644 --- a/ckanext/datavic_harvester/harvesters/delwp.py +++ b/ckanext/datavic_harvester/harvesters/delwp.py @@ -27,23 +27,19 @@ def _get_from_to(page, datasets_per_page): _to = page * datasets_per_page else: _from = ((page - 1) * datasets_per_page) + 1 - _to = (page * datasets_per_page) + _to = page * datasets_per_page return _from, _to def get_tags(value): tags = [] - value = re.split(';|,', value) + value = re.split(";|,", value) if isinstance(value, list): for tag in value: - tags.append({ - 'name': tag - }) + tags.append({"name": tag}) else: - tags.append({ - 'name': value - }) + tags.append({"name": value}) return tags @@ -59,99 +55,126 @@ def convert_date_to_isoformat(value, key, dataset_name): date = None try: # Remove any timezone with time - value = value.lower().split('t')[0] - date = toolkit.get_converter('isodate')(value, {}) + value = value.lower().split("t")[0] + date = toolkit.get_converter("isodate")(value, {}) except Exception as ex: - log.debug('{0}: Date format incorrect {1} for key {2}'.format(dataset_name, value, key)) + log.debug( + "{0}: Date format incorrect {1} for key {2}".format( + dataset_name, value, key + ) + ) log.debug(ex) # TODO: Do we return None or value if date string cannot be converted? return date.isoformat() if date else None def get_datavic_update_frequencies(): - return helpers.field_choices('update_frequency') + return helpers.field_choices("update_frequency") def map_update_frequency(datavic_update_frequencies, value): # Check if the value from SDM matches one of those, if so just return original value for frequency in datavic_update_frequencies: - if frequency['label'].lower() == value.lower(): - return frequency['value'] + if frequency["label"].lower() == value.lower(): + return frequency["value"] # Otherwise return the default of 'unknown' - return 'unknown' + return "unknown" def munge_title_to_name(name): - '''Munge a package title into a package name. - Copied from vicmaps-harvest.py to use the same code to create name from title - This is required to match existing pacakge names - ''' + """Munge a package title into a package name. + Copied from vicmaps-harvest.py to use the same code to create name from title + This is required to match existing pacakge names + """ # convert spaces and separators - name = re.sub('[ .:/,]', '-', name) + name = re.sub("[ .:/,]", "-", name) # take out not-allowed characters - name = re.sub('[^a-zA-Z0-9-_]', '', name).lower() + name = re.sub("[^a-zA-Z0-9-_]", "", name).lower() # remove doubles - name = re.sub('---', '-', name) - name = re.sub('--', '-', name) - name = re.sub('--', '-', name) + name = re.sub("---", "-", name) + name = re.sub("--", "-", name) + name = re.sub("--", "-", name) # remove leading or trailing hyphens - name = name.strip('-')[:99] + name = name.strip("-")[:99] return name def _get_organisation(organisation_mapping, resowner, harvest_object, context): - org_name = next((organisation.get('org-name') for organisation in organisation_mapping if organisation.get('resowner') == resowner), None) + org_name = next( + ( + organisation.get("org-name") + for organisation in organisation_mapping + if organisation.get("resowner") == resowner + ), + None, + ) if org_name: return org_name else: # No mapping found, see if the organisation exist - log.warning(f'DELWP harvester _get_organisation: No mapping found for resowner {resowner}') + log.warning( + f"DELWP harvester _get_organisation: No mapping found for resowner {resowner}" + ) org_title = resowner org_name = munge_title_to_name(org_title) org_id = None try: data_dict = { - 'id': org_name, + "id": org_name, "include_dataset_count": False, "include_extras": False, "include_users": False, "include_groups": False, "include_tags": False, - "include_followers": False + "include_followers": False, } - organisation = toolkit.get_action('organization_show')(context.copy(), data_dict) - org_id = organisation.get('id') + organisation = toolkit.get_action("organization_show")( + context.copy(), data_dict + ) + org_id = organisation.get("id") except toolkit.ObjectNotFound: - log.warning(f'DELWP harvester _get_organisation: Organisation does not exist {org_id}') + log.warning( + f"DELWP harvester _get_organisation: Organisation does not exist {org_id}" + ) # Organisation does not exist so create it and use it try: # organization_create will return organisation id because context has 'return_id_only' to true - org_id = toolkit.get_action('organization_create')(context.copy(), {'name': org_name, 'title': org_title}) + org_id = toolkit.get_action("organization_create")( + context.copy(), {"name": org_name, "title": org_title} + ) except Exception as e: - log.warning(f'DELWP harvester _get_organisation: Failed to create organisation {org_name}') - log.error(f'DELWP harvester _get_organisation: {str(e)}') + log.warning( + f"DELWP harvester _get_organisation: Failed to create organisation {org_name}" + ) + log.error(f"DELWP harvester _get_organisation: {str(e)}") # Fallback to using organisation from harvest source - source_dict = logic.get_action('package_show')(context.copy(), {'id': harvest_object.harvest_source_id}) - org_id = source_dict.get('owner_org') + source_dict = logic.get_action("package_show")( + context.copy(), {"id": harvest_object.harvest_source_id} + ) + org_id = source_dict.get("owner_org") return org_id def clean_resource_name(name): - ''' - Replace underscores (_) with spaces to avoid braking words - ''' + """ + Replace underscores (_) with spaces to avoid braking words + """ # convert underscores to spaces - name = re.sub('_', ' ', name) + name = re.sub("_", " ", name) return name - + def _generate_geo_resource(layer_data_with_uuid, resource_format, resource_url): resource_data = { - "name": layer_data_with_uuid.find_previous("Title").text.upper() + ' ' + resource_format, + "name": layer_data_with_uuid.find_previous("Title").text.upper() + + " " + + resource_format, "format": resource_format, - "url": resource_url.format(layername=layer_data_with_uuid.find_previous("Name").text) + "url": resource_url.format( + layername=layer_data_with_uuid.find_previous("Name").text + ), } return resource_data @@ -165,19 +188,19 @@ class DelwpHarvester(HarvesterBase): def _set_config(self, config_str): if config_str: self.config = json.loads(config_str) - if 'api_version' in self.config: - self.api_version = int(self.config['api_version']) + if "api_version" in self.config: + self.api_version = int(self.config["api_version"]) - log.debug('Using config: %r', self.config) + log.debug("Using config: %r", self.config) else: self.config = {} # Copied from `ckanext/dcat/harvesters/base.py` def _get_object_extra(self, harvest_object, key): - ''' + """ Helper function for retrieving the value from a harvest object extra, given the key - ''' + """ for extra in harvest_object.extras: if extra.key == key: return extra.value @@ -185,29 +208,30 @@ def _get_object_extra(self, harvest_object, key): # Copied from `ckanext/dcat/harvesters/base.py` def _get_package_name(self, harvest_object, title): - + package = harvest_object.package if package is None or package.title != title: name = self._gen_new_name(title) if not name: raise Exception( - 'Could not generate a unique name from the title or the ' - 'GUID. Please choose a more unique title.') + "Could not generate a unique name from the title or the " + "GUID. Please choose a more unique title." + ) else: name = package.name - + return name - + def info(self): return { - 'name': 'delwp', - 'title': 'DELWP Harvester', - 'description': 'Harvester for DELWP dataset descriptions ' + - 'serialized as JSON' + "name": "delwp", + "title": "DELWP Harvester", + "description": "Harvester for DELWP dataset descriptions " + + "serialized as JSON", } def validate_config(self, config): - ''' + """ Harvesters can provide this method to validate the configuration entered in the form. It should return a single string, which will be stored in the database. Exceptions raised will be shown in the form's @@ -217,97 +241,119 @@ def validate_config(self, config): :param harvest_object_id: Config string coming from the form :returns: A string with the validated configuration options - ''' + """ if not config: - raise ValueError('No config options set') - + raise ValueError("No config options set") + try: config_obj = json.loads(config) - context = {'model': model, 'user': toolkit.g.user} - if 'default_groups' in config_obj: - if not isinstance(config_obj['default_groups'], list): - raise ValueError('default_groups must be a *list* of group' - ' names/ids') - if config_obj['default_groups'] and \ - not isinstance(config_obj['default_groups'][0], - six.string_types): - raise ValueError('default_groups must be a list of group ' - 'names/ids (i.e. strings)') + context = {"model": model, "user": toolkit.g.user} + if "default_groups" in config_obj: + if not isinstance(config_obj["default_groups"], list): + raise ValueError( + "default_groups must be a *list* of group" " names/ids" + ) + if config_obj["default_groups"] and not isinstance( + config_obj["default_groups"][0], six.string_types + ): + raise ValueError( + "default_groups must be a list of group " + "names/ids (i.e. strings)" + ) # Check if default groups exist - config_obj['default_group_dicts'] = [] - for group_name_or_id in config_obj['default_groups']: + config_obj["default_group_dicts"] = [] + for group_name_or_id in config_obj["default_groups"]: try: - group = toolkit.get_action('group_show')( - context.copy(), {'id': group_name_or_id}) + group = toolkit.get_action("group_show")( + context.copy(), {"id": group_name_or_id} + ) # save the dict to the config object, as we'll need it # in the import_stage of every dataset - config_obj['default_group_dicts'].append(group) + config_obj["default_group_dicts"].append(group) except toolkit.ObjectNotFound: - raise ValueError('Default group not found') + raise ValueError("Default group not found") config = json.dumps(config_obj) else: - raise ValueError('default_groups must be set') + raise ValueError("default_groups must be set") - if 'full_metadata_url_prefix' not in config_obj: - raise ValueError('full_metadata_url_prefix must be set') + if "full_metadata_url_prefix" not in config_obj: + raise ValueError("full_metadata_url_prefix must be set") - if '{UUID}' not in config_obj.get('full_metadata_url_prefix', ''): - raise ValueError('full_metadata_url_prefix must have the {UUID} identifier in the URL') + if "{UUID}" not in config_obj.get("full_metadata_url_prefix", ""): + raise ValueError( + "full_metadata_url_prefix must have the {UUID} identifier in the URL" + ) - if 'resource_url_prefix' not in config_obj: - raise ValueError('resource_url_prefix must be set') + if "resource_url_prefix" not in config_obj: + raise ValueError("resource_url_prefix must be set") - if 'license_id' not in config_obj: - raise ValueError('license_id must be set') + if "license_id" not in config_obj: + raise ValueError("license_id must be set") - if 'resource_attribution' not in config_obj: - raise ValueError('resource_attribution must be set') + if "resource_attribution" not in config_obj: + raise ValueError("resource_attribution must be set") - if 'dataset_type' not in config_obj: - raise ValueError('dataset_type must be set') + if "dataset_type" not in config_obj: + raise ValueError("dataset_type must be set") - if 'api_auth' not in config_obj: - raise ValueError('api_auth must be set') + if "api_auth" not in config_obj: + raise ValueError("api_auth must be set") - if 'organisation_mapping' in config_obj: - if not isinstance(config_obj['organisation_mapping'], list): - raise ValueError('organisation_mapping must be a *list* of organisations') + if "organisation_mapping" in config_obj: + if not isinstance(config_obj["organisation_mapping"], list): + raise ValueError( + "organisation_mapping must be a *list* of organisations" + ) # Check if organisation exist - for organisation_mapping in config_obj['organisation_mapping']: + for organisation_mapping in config_obj["organisation_mapping"]: if not isinstance(organisation_mapping, dict): - raise ValueError('organisation_mapping item must be a *dict*. eg {"resowner": "Organisation A", "org-name": "organisation-a"}') - if not organisation_mapping.get('resowner'): - raise ValueError('organisation_mapping item must have property "resowner". eg "resowner": "Organisation A"') - if not organisation_mapping.get('org-name'): - raise ValueError('organisation_mapping item must have property *org-name*. eg "org-name": "organisation-a"}') + raise ValueError( + 'organisation_mapping item must be a *dict*. eg {"resowner": "Organisation A", "org-name": "organisation-a"}' + ) + if not organisation_mapping.get("resowner"): + raise ValueError( + 'organisation_mapping item must have property "resowner". eg "resowner": "Organisation A"' + ) + if not organisation_mapping.get("org-name"): + raise ValueError( + 'organisation_mapping item must have property *org-name*. eg "org-name": "organisation-a"}' + ) try: - group = toolkit.get_action('organization_show')(context.copy(), {'id': organisation_mapping.get('org-name')}) + group = toolkit.get_action("organization_show")( + context.copy(), {"id": organisation_mapping.get("org-name")} + ) except toolkit.ObjectNotFound: - raise ValueError(f'Organisation {organisation_mapping.get("org-name")} not found') + raise ValueError( + f'Organisation {organisation_mapping.get("org-name")} not found' + ) else: - raise ValueError('organisation_mapping must be set') - + raise ValueError("organisation_mapping must be set") + config = json.dumps(config_obj, indent=1) except ValueError as e: raise e return config - def _get_page_of_records(self, url, dataset_type, api_auth, page, datasets_per_page=100): + def _get_page_of_records( + self, url, dataset_type, api_auth, page, datasets_per_page=100 + ): _from, _to = _get_from_to(page, datasets_per_page) records = None try: - request_url = '{0}?dataset={1}&start={2}&rows={3}&format=json'.format(url, dataset_type, _from, _to) - log.debug('Getting page of records {}'.format(request_url)) - r = requests.get(request_url, headers={'Authorization': api_auth}) + request_url = "{0}?dataset={1}&start={2}&rows={3}&format=json".format( + url, dataset_type, _from, _to + ) + log.debug("Getting page of records {}".format(request_url)) + r = requests.get(request_url, headers={"Authorization": api_auth}) if r.status_code == 200: data = json.loads(r.text) # Records are contained in the "metadata" element of the response JSON # see example: https://dev-metashare.maps.vic.gov.au/geonetwork/srv/en/q?from=1&to=1&_content_type=json&fast=index - records = data.get('records', None) + records = data.get("records", None) except Exception as e: log.error(e) @@ -325,18 +371,18 @@ def _get_guids_and_datasets(self, datasets): if isinstance(datasets, dict): datasets = [datasets] else: - log.debug('Datasets data is not a list: {}'.format(type(datasets))) - raise ValueError('Wrong JSON object') + log.debug("Datasets data is not a list: {}".format(type(datasets))) + raise ValueError("Wrong JSON object") for dataset in datasets: - fields = dataset.get('fields', {}) + fields = dataset.get("fields", {}) as_string = json.dumps(fields) # Get identifier - guid = fields.get('uuid', None) + guid = fields.get("uuid", None) yield guid, as_string - + def _get_package_dict(self, harvest_object, context): """ Convert the string based content from the harvest_object @@ -350,144 +396,196 @@ def _get_package_dict(self, harvest_object, context): uuid = harvest_object.guid - full_metadata_url_prefix = self.config.get('full_metadata_url_prefix', None) - full_metadata_url = full_metadata_url_prefix.format(**{'UUID': uuid}) if full_metadata_url_prefix else '' - resource_url_prefix = self.config.get('resource_url_prefix', None) - resource_url = '{0}{1}'.format(resource_url_prefix, uuid) if resource_url_prefix else '' + full_metadata_url_prefix = self.config.get("full_metadata_url_prefix", None) + full_metadata_url = ( + full_metadata_url_prefix.format(**{"UUID": uuid}) + if full_metadata_url_prefix + else "" + ) + resource_url_prefix = self.config.get("resource_url_prefix", None) + resource_url = ( + "{0}{1}".format(resource_url_prefix, uuid) if resource_url_prefix else "" + ) # Set the package_dict package_dict = {} # Mandatory fields where no value exists in MetaShare # So we set them to Data.Vic defaults - package_dict['personal_information'] = 'no' - package_dict['protective_marking'] = 'official' - package_dict['access'] = 'yes' + package_dict["personal_information"] = "no" + package_dict["protective_marking"] = "official" + package_dict["access"] = "yes" # Set to default values if missing - package_dict['organization_visibility'] = 'all' - package_dict['workflow_status'] = 'published' + package_dict["organization_visibility"] = "all" + package_dict["workflow_status"] = "published" - package_dict['title'] = metashare_dict.get('title', None) + package_dict["title"] = metashare_dict.get("title", None) - package_dict['notes'] = metashare_dict.get('abstract', '') + package_dict["notes"] = metashare_dict.get("abstract", "") # Get organisation from the harvest source organisation_mapping in config - package_dict['owner_org'] = _get_organisation(self.config.get('organisation_mapping'), metashare_dict.get('resowner').split(';')[0], harvest_object, context) + package_dict["owner_org"] = _get_organisation( + self.config.get("organisation_mapping"), + metashare_dict.get("resowner").split(";")[0], + harvest_object, + context, + ) # Default as discussed with SDM - package_dict['license_id'] = self.config.get('license_id', 'cc-by') + package_dict["license_id"] = self.config.get("license_id", "cc-by") # Tags / Keywords # `topicCat` can either be a single tag as a string or a list of tags - topic_cat = metashare_dict.get('topiccat', None) + topic_cat = metashare_dict.get("topiccat", None) if topic_cat: - package_dict['tags'] = get_tags(topic_cat) + package_dict["tags"] = get_tags(topic_cat) # TODO: Is this the right metadata field? Should it be at the resource? # Las Updated corelates to geonet_info_changedate - package_dict['last_updated'] = metashare_dict.get('geonet_info_changedate', None) + package_dict["last_updated"] = metashare_dict.get( + "geonet_info_changedate", None + ) # TODO: Remove extras to package_dict - package_dict['extract'] = '{}...'.format(package_dict['notes'].split('.')[0]) + package_dict["extract"] = "{}...".format(package_dict["notes"].split(".")[0]) # There is no field in Data.Vic schema to store the source UUID of the harvested record # Therefore, we are using the `primary_purpose_of_collection` field if uuid: - package_dict['primary_purpose_of_collection'] = uuid + package_dict["primary_purpose_of_collection"] = uuid # @TODO: Consider this - in the field mapping spreadsheet: # https://docs.google.com/spreadsheets/d/112hzp6ZrTnp3fl_ZdmT6oHldUGf36LvEpLswAJDLdr0/edit#gid=1669999637 # The response from SDM was: # "We could either add Custodian to the Q Search results or just use resource owner. Given that it is # not publically displayed in DV, not sure it's worth the effort of adding the custodian" - res_owner = metashare_dict.get('resowner', None) + res_owner = metashare_dict.get("resowner", None) if res_owner: - package_dict['data_owner'] = res_owner.split(';')[0] + package_dict["data_owner"] = res_owner.split(";")[0] # Decision from discussion with Simon/DPC on 2020-10-13 is to assign all datasets to "Spatial Data" group # Data.Vic "category" field is equivalent to groups, but stored as an extra and only has 1 group - default_group_dicts = self.config.get('default_group_dicts', None) + default_group_dicts = self.config.get("default_group_dicts", None) if default_group_dicts and isinstance(default_group_dicts, list): - package_dict['groups'] = [{"id": group.get('id')} for group in default_group_dicts] + package_dict["groups"] = [ + {"id": group.get("id")} for group in default_group_dicts + ] category = default_group_dicts[0] if default_group_dicts else None if category: - package_dict['category'] = category.get('id') + package_dict["category"] = category.get("id") # @TODO: Default to UTC now if not available... OR try and get it from somewhere else in the record # date provided seems to be a bit of a mess , e.g. '2013-03-31t13:00:00.000z' # might need to run some regex on this - #temp_extent_begin = metashare_dict.get('tempextentbegin', None) - date_created_data_asset = convert_date_to_isoformat(metashare_dict.get('publicationdate', ''), 'publicationdate', metashare_dict.get('name')) + # temp_extent_begin = metashare_dict.get('tempextentbegin', None) + date_created_data_asset = convert_date_to_isoformat( + metashare_dict.get("publicationdate", ""), + "publicationdate", + metashare_dict.get("name"), + ) if not date_created_data_asset: date_created_data_asset = convert_date_to_isoformat( - metashare_dict.get('geonet_info_createdate', ''), 'geonet_info_createdate', metashare_dict.get('name')) - package_dict['date_created_data_asset'] = date_created_data_asset + metashare_dict.get("geonet_info_createdate", ""), + "geonet_info_createdate", + metashare_dict.get("name"), + ) + package_dict["date_created_data_asset"] = date_created_data_asset # @TODO: Examples can be "2012-03-27" - do we need to convert this to UTC before inserting? # is a question for SDM - i.e. are their dates in UTC or Vic/Melb time? - date_modified_data_asset = convert_date_to_isoformat(metashare_dict.get('revisiondate', ''), 'revisiondate', metashare_dict.get('name')) + date_modified_data_asset = convert_date_to_isoformat( + metashare_dict.get("revisiondate", ""), + "revisiondate", + metashare_dict.get("name"), + ) if not date_modified_data_asset: date_modified_data_asset = convert_date_to_isoformat( - metashare_dict.get('geonet_info_changedate', ''), 'geonet_info_changedate', metashare_dict.get('name')) - package_dict['date_modified_data_asset'] = date_modified_data_asset + metashare_dict.get("geonet_info_changedate", ""), + "geonet_info_changedate", + metashare_dict.get("name"), + ) + package_dict["date_modified_data_asset"] = date_modified_data_asset - package_dict['update_frequency'] = map_update_frequency(get_datavic_update_frequencies(), - metashare_dict.get('maintenanceandupdatefrequency_text', 'unknown')) + package_dict["update_frequency"] = map_update_frequency( + get_datavic_update_frequencies(), + metashare_dict.get("maintenanceandupdatefrequency_text", "unknown"), + ) if full_metadata_url: - package_dict['full_metadata_url'] = full_metadata_url + package_dict["full_metadata_url"] = full_metadata_url - attribution = self.config.get('resource_attribution', None) + attribution = self.config.get("resource_attribution", None) # Generate resources for the dataset - formats = metashare_dict.get('available_formats', None) + formats = metashare_dict.get("available_formats", None) resources = [] if formats: - formats = formats.split(',') + formats = formats.split(",") for format in formats: res = { - 'name': metashare_dict.get('alttitle') or metashare_dict.get('title'), - 'format': format, - 'period_start': convert_date_to_isoformat(metashare_dict.get('tempextentbegin', ''), 'tempextentbegin', metashare_dict.get('name')), - 'period_end': convert_date_to_isoformat(metashare_dict.get('tempextentend', ''), 'tempextentend', metashare_dict.get('name')), - 'url': resource_url + "name": metashare_dict.get("alttitle") + or metashare_dict.get("title"), + "format": format, + "period_start": convert_date_to_isoformat( + metashare_dict.get("tempextentbegin", ""), + "tempextentbegin", + metashare_dict.get("name"), + ), + "period_end": convert_date_to_isoformat( + metashare_dict.get("tempextentend", ""), + "tempextentend", + metashare_dict.get("name"), + ), + "url": resource_url, } - - res['name'] = res['name'] + ' ' + format - res['name'] = clean_resource_name(res['name']) + + res["name"] = res["name"] + " " + format + res["name"] = clean_resource_name(res["name"]) if attribution: - res['attribution'] = attribution + res["attribution"] = attribution resources.append(res) - - # Generate additional WMS/WFS resources + + # Generate additional WMS/WFS resources def _get_content_with_uuid(geoserver_url): try: geoserver_response = requests.get(geoserver_url) except requests.exceptions.RequestException as e: log.error(e) return None - geoserver_content= BeautifulSoup(geoserver_response.content,"lxml-xml") + geoserver_content = BeautifulSoup(geoserver_response.content, "lxml-xml") return geoserver_content.find("Keyword", string=f"MetadataID={uuid}") - - if 'geoserver_dns' in self.config: - geoserver_dns = self.config['geoserver_dns'] + + if "geoserver_dns" in self.config: + geoserver_dns = self.config["geoserver_dns"] dict_geoserver_urls = { - 'WMS': { - 'geoserver_url': geoserver_dns + '/geoserver/ows?service=WMS&request=getCapabilities', - 'resource_url': geoserver_dns + '/geoserver/wms?service=wms&request=getmap&format=image%2Fpng8&transparent=true&layers={layername}&width=512&height=512&crs=epsg%3A3857&bbox=16114148.554967716%2C-4456584.4971389165%2C16119040.524777967%2C-4451692.527328665' + "WMS": { + "geoserver_url": geoserver_dns + + "/geoserver/ows?service=WMS&request=getCapabilities", + "resource_url": geoserver_dns + + "/geoserver/wms?service=wms&request=getmap&format=image%2Fpng8&transparent=true&layers={layername}&width=512&height=512&crs=epsg%3A3857&bbox=16114148.554967716%2C-4456584.4971389165%2C16119040.524777967%2C-4451692.527328665", + }, + "WFS": { + "geoserver_url": geoserver_dns + + "/geoserver/ows?service=WFS&request=getCapabilities", + "resource_url": geoserver_dns + + "/geoserver/wfs?request=GetCapabilities&service=WFS", }, - 'WFS': { - 'geoserver_url': geoserver_dns + '/geoserver/ows?service=WFS&request=getCapabilities', - 'resource_url': geoserver_dns + '/geoserver/wfs?request=GetCapabilities&service=WFS' - } } - + for resource_format in dict_geoserver_urls: - layer_data_with_uuid = _get_content_with_uuid(dict_geoserver_urls[resource_format].get('geoserver_url')) + layer_data_with_uuid = _get_content_with_uuid( + dict_geoserver_urls[resource_format].get("geoserver_url") + ) if layer_data_with_uuid: - resources.append(_generate_geo_resource(layer_data_with_uuid, resource_format, dict_geoserver_urls[resource_format].get('resource_url'))) - - package_dict['resources'] = resources + resources.append( + _generate_geo_resource( + layer_data_with_uuid, + resource_format, + dict_geoserver_urls[resource_format].get("resource_url"), + ) + ) + + package_dict["resources"] = resources # @TODO: What about these ones? # responsibleParty @@ -498,7 +596,7 @@ def _get_content_with_uuid(geoserver_url): def gather_stage(self, harvest_job): - log.debug('In Delwp Harvester gather_stage') + log.debug("In Delwp Harvester gather_stage") # # BEGIN: This section is copied from ckanext/dcat/harvesters/_json.py @@ -508,10 +606,11 @@ def gather_stage(self, harvest_job): ids = [] # Get the previous guids for this source - query = \ - model.Session.query(HarvestObject.guid, HarvestObject.package_id) \ - .filter(HarvestObject.current == True) \ + query = ( + model.Session.query(HarvestObject.guid, HarvestObject.package_id) + .filter(HarvestObject.current == True) .filter(HarvestObject.harvest_source_id == harvest_job.source.id) + ) guid_to_package_id = {} @@ -530,15 +629,21 @@ def gather_stage(self, harvest_job): # CKAN harvest default is 100, in testing 500 works pretty fast and is more efficient as it only needs 5 API calls instead of 19 for 1701 test datasets records_per_page = 500 - harvest_source_url = harvest_job.source.url[:-1] if harvest_job.source.url.endswith('?') else harvest_job.source.url + harvest_source_url = ( + harvest_job.source.url[:-1] + if harvest_job.source.url.endswith("?") + else harvest_job.source.url + ) self._set_config(harvest_job.source.config) # _get_page_of_records will return None if there are no more records records = True while records: - dataset_type = self.config.get('dataset_type') - api_auth = self.config.get('api_auth') - records = self._get_page_of_records(harvest_source_url, dataset_type, api_auth, page, records_per_page) + dataset_type = self.config.get("dataset_type") + api_auth = self.config.get("api_auth") + records = self._get_page_of_records( + harvest_source_url, dataset_type, api_auth, page, records_per_page + ) batch_guids = [] if records: @@ -556,26 +661,29 @@ def gather_stage(self, harvest_job): if guid in guids_in_db: # Dataset needs to be udpated obj = HarvestObject( - guid=guid, job=harvest_job, + guid=guid, + job=harvest_job, package_id=guid_to_package_id[guid], content=as_string, - extras=[HarvestObjectExtra(key='status', - value='change')]) + extras=[ + HarvestObjectExtra(key="status", value="change") + ], + ) else: # Dataset needs to be created obj = HarvestObject( - guid=guid, job=harvest_job, + guid=guid, + job=harvest_job, content=as_string, - extras=[HarvestObjectExtra(key='status', - value='new')]) + extras=[HarvestObjectExtra(key="status", value="new")], + ) obj.save() ids.append(obj.id) if len(batch_guids) > 0: - guids_in_source.extend(set(batch_guids) - - set(previous_guids)) + guids_in_source.extend(set(batch_guids) - set(previous_guids)) else: - log.debug('Empty document, no more records') + log.debug("Empty document, no more records") # Empty document, no more ids break # @@ -598,13 +706,15 @@ def gather_stage(self, harvest_job): guids_to_delete = set(guids_in_db) - set(guids_in_source) for guid in guids_to_delete: obj = HarvestObject( - guid=guid, job=harvest_job, + guid=guid, + job=harvest_job, package_id=guid_to_package_id[guid], - extras=[HarvestObjectExtra(key='status', value='delete')]) + extras=[HarvestObjectExtra(key="status", value="delete")], + ) ids.append(obj.id) - model.Session.query(HarvestObject).\ - filter_by(guid=guid).\ - update({'current': False}, False) + model.Session.query(HarvestObject).filter_by(guid=guid).update( + {"current": False}, False + ) obj.save() return ids @@ -621,54 +731,62 @@ def import_stage(self, harvest_object): :param harvest_object: :return: """ - log.debug('In Delwp Harvester import_stage') + log.debug("In Delwp Harvester import_stage") if not harvest_object: - log.error('No harvest object received') + log.error("No harvest object received") return False if self.force_import: - status = 'change' + status = "change" else: - status = self._get_object_extra(harvest_object, 'status') + status = self._get_object_extra(harvest_object, "status") context = { - 'user': self._get_user_name(), - 'return_id_only': True, - 'ignore_auth': True, - 'model': model, - 'session': model.Session + "user": self._get_user_name(), + "return_id_only": True, + "ignore_auth": True, + "model": model, + "session": model.Session, } - if status == 'delete': + if status == "delete": # Delete package - toolkit.get_action('package_delete')( - context.copy(), {'id': harvest_object.package_id}) - log.info('Deleted package {0} with guid {1}' - .format(harvest_object.package_id, harvest_object.guid)) + toolkit.get_action("package_delete")( + context.copy(), {"id": harvest_object.package_id} + ) + log.info( + "Deleted package {0} with guid {1}".format( + harvest_object.package_id, harvest_object.guid + ) + ) return True if harvest_object.content is None: self._save_object_error( - 'Empty content for object %s' % harvest_object.id, - harvest_object, 'Import') + "Empty content for object %s" % harvest_object.id, + harvest_object, + "Import", + ) return False if harvest_object.guid is None: self._save_object_error( - 'Empty guid for object %s' % harvest_object.id, - harvest_object, 'Import') + "Empty guid for object %s" % harvest_object.id, harvest_object, "Import" + ) return False self._set_config(harvest_object.source.config) # Get the last harvested object (if any) - previous_object = model.Session.query(HarvestObject) \ - .filter(HarvestObject.guid == harvest_object.guid) \ - .filter(HarvestObject.current == True) \ + previous_object = ( + model.Session.query(HarvestObject) + .filter(HarvestObject.guid == harvest_object.guid) + .filter(HarvestObject.current == True) .first() + ) # Flag previous object as not current anymore if previous_object and not self.force_import: @@ -680,49 +798,57 @@ def import_stage(self, harvest_object): if not package_dict: return False - if not package_dict.get('name'): - package_dict['name'] = self._get_package_name(harvest_object, package_dict['title']) + if not package_dict.get("name"): + package_dict["name"] = self._get_package_name( + harvest_object, package_dict["title"] + ) # Flag this object as the current one harvest_object.current = True harvest_object.add() try: - if status == 'new': + if status == "new": package_schema = logic.schema.default_create_package_schema() - context['schema'] = package_schema + context["schema"] = package_schema # We need to explicitly provide a package ID - package_dict['id'] = str(uuid.uuid4()) - package_schema['id'] = [str] + package_dict["id"] = str(uuid.uuid4()) + package_schema["id"] = [str] # Save reference to the package on the object - harvest_object.package_id = package_dict['id'] + harvest_object.package_id = package_dict["id"] harvest_object.add() # Defer constraints and flush so the dataset can be indexed with # the harvest object id (on the after_show hook from the harvester # plugin) model.Session.execute( - 'SET CONSTRAINTS harvest_object_package_id_fkey DEFERRED') + "SET CONSTRAINTS harvest_object_package_id_fkey DEFERRED" + ) model.Session.flush() - elif status == 'change': - package_dict['id'] = harvest_object.package_id + elif status == "change": + package_dict["id"] = harvest_object.package_id - if status in ['new', 'change']: - action = 'package_create' if status == 'new' else 'package_update' - message_status = 'Created' if status == 'new' else 'Updated' - if 'package' in context: - del context['package'] + if status in ["new", "change"]: + action = "package_create" if status == "new" else "package_update" + message_status = "Created" if status == "new" else "Updated" + if "package" in context: + del context["package"] package_id = toolkit.get_action(action)(context.copy(), package_dict) - log.info('%s dataset with id %s', message_status, package_id) + log.info("%s dataset with id %s", message_status, package_id) except Exception as e: # dataset = json.loads(harvest_object.content) - dataset_name = package_dict.get('name', '') + dataset_name = package_dict.get("name", "") - self._save_object_error('Error importing dataset %s: %r / %s' % (dataset_name, e, traceback.format_exc()), harvest_object, 'Import') + self._save_object_error( + "Error importing dataset %s: %r / %s" + % (dataset_name, e, traceback.format_exc()), + harvest_object, + "Import", + ) return False finally: diff --git a/ckanext/datavic_harvester/harvesters/metashare.py b/ckanext/datavic_harvester/harvesters/metashare.py index 253dd16..0df5cb4 100644 --- a/ckanext/datavic_harvester/harvesters/metashare.py +++ b/ckanext/datavic_harvester/harvesters/metashare.py @@ -28,7 +28,7 @@ def _get_from_to(page, datasets_per_page): _to = page * datasets_per_page else: _from = ((page - 1) * datasets_per_page) + 1 - _to = (page * datasets_per_page) + _to = page * datasets_per_page return _from, _to @@ -37,13 +37,9 @@ def get_tags(value): tags = [] if isinstance(value, list): for tag in value: - tags.append({ - 'name': tag - }) + tags.append({"name": tag}) else: - tags.append({ - 'name': value - }) + tags.append({"name": value}) return tags @@ -59,45 +55,45 @@ def convert_date_to_isoformat(value): date = None try: # Remove any microseconds - value = value.split('.')[0] - if 't' in value: - date = p.toolkit.get_converter('isodate')(value, {}) + value = value.split(".")[0] + if "t" in value: + date = p.toolkit.get_converter("isodate")(value, {}) except Exception as ex: - log.debug('Date format incorrect {0}'.format(value)) + log.debug("Date format incorrect {0}".format(value)) log.debug(ex) # TODO: Do we return None or value if date string cannot be converted? return date.isoformat() if date else None def get_datavic_update_frequencies(): - return helpers.field_choices('update_frequency') + return helpers.field_choices("update_frequency") def map_update_frequency(datavic_update_frequencies, value): # Check if the value from SDM matches one of those, if so just return original value for frequency in datavic_update_frequencies: - if frequency['label'].lower() == value.lower(): - return frequency['value'] + if frequency["label"].lower() == value.lower(): + return frequency["value"] # Otherwise return the default of 'unknown' - return 'unknown' + return "unknown" def munge_title_to_name(name): - '''Munge a package title into a package name. - Copied from vicmaps-harvest.py to use the same code to create name from title - This is required to match existing pacakge names - ''' + """Munge a package title into a package name. + Copied from vicmaps-harvest.py to use the same code to create name from title + This is required to match existing pacakge names + """ # convert spaces and separators - name = re.sub('[ .:/,]', '-', name) + name = re.sub("[ .:/,]", "-", name) # take out not-allowed characters - name = re.sub('[^a-zA-Z0-9-_]', '', name).lower() + name = re.sub("[^a-zA-Z0-9-_]", "", name).lower() # remove doubles - name = re.sub('---', '-', name) - name = re.sub('--', '-', name) - name = re.sub('--', '-', name) + name = re.sub("---", "-", name) + name = re.sub("--", "-", name) + name = re.sub("--", "-", name) # remove leading or trailing hyphens - name = name.strip('-')[:99] + name = name.strip("-")[:99] return name @@ -110,19 +106,19 @@ class MetaShareHarvester(HarvesterBase): def _set_config(self, config_str): if config_str: self.config = json.loads(config_str) - if 'api_version' in self.config: - self.api_version = int(self.config['api_version']) + if "api_version" in self.config: + self.api_version = int(self.config["api_version"]) - log.debug('Using config: %r', self.config) + log.debug("Using config: %r", self.config) else: self.config = {} # Copied from `ckanext/dcat/harvesters/base.py` def _get_object_extra(self, harvest_object, key): - ''' + """ Helper function for retrieving the value from a harvest object extra, given the key - ''' + """ for extra in harvest_object.extras: if extra.key == key: return extra.value @@ -136,8 +132,9 @@ def _get_package_name(self, harvest_object, title): name = self._gen_new_name(title) if not name: raise Exception( - 'Could not generate a unique name from the title or the ' - 'GUID. Please choose a more unique title.') + "Could not generate a unique name from the title or the " + "GUID. Please choose a more unique title." + ) else: name = package.name @@ -145,14 +142,14 @@ def _get_package_name(self, harvest_object, title): def info(self): return { - 'name': 'metashare', - 'title': 'MetaShare Harvester', - 'description': 'Harvester for MetaShare dataset descriptions ' + - 'serialized as JSON' + "name": "metashare", + "title": "MetaShare Harvester", + "description": "Harvester for MetaShare dataset descriptions " + + "serialized as JSON", } def validate_config(self, config): - ''' + """ Harvesters can provide this method to validate the configuration entered in the form. It should return a single string, which will be stored in the database. Exceptions raised will be shown in the form's @@ -162,59 +159,65 @@ def validate_config(self, config): :param harvest_object_id: Config string coming from the form :returns: A string with the validated configuration options - ''' + """ if not config: - raise ValueError('No config options set') + raise ValueError("No config options set") { "default_groups": ["spatial-data"], "full_metadata_url_prefix": "https://metashare.maps.vic.gov.au/geonetwork/srv/api/records/{UUID}/formatters/sdm-html?root=html&output=html", "resource_url_prefix": "https://datashare.maps.vic.gov.au/search?md=", "resource_attribution": "Copyright (c) The State of Victoria, Department of Environment, Land, Water & Planning", - "license_id": "cc-by" + "license_id": "cc-by", } try: config_obj = json.loads(config) - if 'default_groups' in config_obj: - if not isinstance(config_obj['default_groups'], list): - raise ValueError('default_groups must be a *list* of group' - ' names/ids') - if config_obj['default_groups'] and \ - not isinstance(config_obj['default_groups'][0], - six.string_types): - raise ValueError('default_groups must be a list of group ' - 'names/ids (i.e. strings)') + if "default_groups" in config_obj: + if not isinstance(config_obj["default_groups"], list): + raise ValueError( + "default_groups must be a *list* of group" " names/ids" + ) + if config_obj["default_groups"] and not isinstance( + config_obj["default_groups"][0], six.string_types + ): + raise ValueError( + "default_groups must be a list of group " + "names/ids (i.e. strings)" + ) # Check if default groups exist - context = {'model': model, 'user': toolkit.g.user} - config_obj['default_group_dicts'] = [] - for group_name_or_id in config_obj['default_groups']: + context = {"model": model, "user": toolkit.g.user} + config_obj["default_group_dicts"] = [] + for group_name_or_id in config_obj["default_groups"]: try: - group = toolkit.get_action('group_show')( - context, {'id': group_name_or_id}) + group = toolkit.get_action("group_show")( + context, {"id": group_name_or_id} + ) # save the dict to the config object, as we'll need it # in the import_stage of every dataset - config_obj['default_group_dicts'].append(group) + config_obj["default_group_dicts"].append(group) except toolkit.ObjectNotFound: - raise ValueError('Default group not found') + raise ValueError("Default group not found") config = json.dumps(config_obj) else: - raise ValueError('default_groups must be set') + raise ValueError("default_groups must be set") - if 'full_metadata_url_prefix' not in config_obj: - raise ValueError('full_metadata_url_prefix must be set') + if "full_metadata_url_prefix" not in config_obj: + raise ValueError("full_metadata_url_prefix must be set") - if '{UUID}' not in config_obj.get('full_metadata_url_prefix', ''): - raise ValueError('full_metadata_url_prefix must have the {UUID} identifier in the URL') + if "{UUID}" not in config_obj.get("full_metadata_url_prefix", ""): + raise ValueError( + "full_metadata_url_prefix must have the {UUID} identifier in the URL" + ) - if 'resource_url_prefix' not in config_obj: - raise ValueError('resource_url_prefix must be set') + if "resource_url_prefix" not in config_obj: + raise ValueError("resource_url_prefix must be set") - if 'license_id' not in config_obj: - raise ValueError('license_id must be set') + if "license_id" not in config_obj: + raise ValueError("license_id must be set") - if 'resource_attribution' not in config_obj: - raise ValueError('resource_attribution must be set') + if "resource_attribution" not in config_obj: + raise ValueError("resource_attribution must be set") except ValueError as e: raise e @@ -224,8 +227,10 @@ def _get_page_of_records(self, url, page, datasets_per_page=100): _from, _to = _get_from_to(page, datasets_per_page) records = None try: - request_url = '{0}?from={1}&to={2}&_content_type=json&fast=index'.format(url, _from, _to) - log.debug('Getting page of records {}'.format(request_url)) + request_url = "{0}?from={1}&to={2}&_content_type=json&fast=index".format( + url, _from, _to + ) + log.debug("Getting page of records {}".format(request_url)) r = requests.get(request_url) if r.status_code == 200: @@ -233,7 +238,7 @@ def _get_page_of_records(self, url, page, datasets_per_page=100): # Records are contained in the "metadata" element of the response JSON # see example: https://dev-metashare.maps.vic.gov.au/geonetwork/srv/en/q?from=1&to=1&_content_type=json&fast=index - records = data.get('metadata', None) + records = data.get("metadata", None) except Exception as e: log.error(e) @@ -252,16 +257,16 @@ def _get_guids_and_datasets(self, datasets): if isinstance(datasets, dict): datasets = [datasets] else: - log.debug('Datasets data is not a list: {}'.format(type(datasets))) - raise ValueError('Wrong JSON object') + log.debug("Datasets data is not a list: {}".format(type(datasets))) + raise ValueError("Wrong JSON object") for dataset in datasets: as_string = json.dumps(dataset) # Get identifier - geonet_info = dataset.get('geonet:info', None) - guid = geonet_info.get('uuid', None) + geonet_info = dataset.get("geonet:info", None) + guid = geonet_info.get("uuid", None) yield guid, as_string @@ -278,96 +283,120 @@ def _get_package_dict(self, harvest_object): uuid = harvest_object.guid - full_metadata_url_prefix = self.config.get('full_metadata_url_prefix', None) - full_metadata_url = full_metadata_url_prefix.format(**{'UUID': uuid}) if full_metadata_url_prefix else '' - resource_url_prefix = self.config.get('resource_url_prefix', None) - resource_url = '{0}{1}'.format(resource_url_prefix, uuid) if resource_url_prefix else '' + full_metadata_url_prefix = self.config.get("full_metadata_url_prefix", None) + full_metadata_url = ( + full_metadata_url_prefix.format(**{"UUID": uuid}) + if full_metadata_url_prefix + else "" + ) + resource_url_prefix = self.config.get("resource_url_prefix", None) + resource_url = ( + "{0}{1}".format(resource_url_prefix, uuid) if resource_url_prefix else "" + ) package_dict = {} # Mandatory fields where no value exists in MetaShare # So we set them to Data.Vic defaults - package_dict['personal_information'] = 'no' - package_dict['protective_marking'] = 'official' - package_dict['access'] = 'yes' + package_dict["personal_information"] = "no" + package_dict["protective_marking"] = "official" + package_dict["access"] = "yes" - package_dict['title'] = metashare_dict.get('title', None) + package_dict["title"] = metashare_dict.get("title", None) # 'xmlcharrefreplace' - replaces the character with an xml character - package_dict['notes'] = metashare_dict.get('abstract', '').encode('ascii', 'xmlcharrefreplace') + package_dict["notes"] = metashare_dict.get("abstract", "").encode( + "ascii", "xmlcharrefreplace" + ) # Get organisation from the harvest source organisation dropdown - source_dict = logic.get_action('package_show')({}, {'id': harvest_object.harvest_source_id}) - package_dict['owner_org'] = source_dict.get('owner_org') + source_dict = logic.get_action("package_show")( + {}, {"id": harvest_object.harvest_source_id} + ) + package_dict["owner_org"] = source_dict.get("owner_org") # Default as discussed with SDM - package_dict['license_id'] = self.config.get('license_id', 'cc-by') + package_dict["license_id"] = self.config.get("license_id", "cc-by") # Tags / Keywords # `topicCat` can either be a single tag as a string or a list of tags - topic_cat = metashare_dict.get('topicCat', None) + topic_cat = metashare_dict.get("topicCat", None) if topic_cat: - package_dict['tags'] = get_tags(topic_cat) + package_dict["tags"] = get_tags(topic_cat) - package_dict['extract'] = '{}...'.format(package_dict['notes'].split(b'.')[0]) + package_dict["extract"] = "{}...".format(package_dict["notes"].split(b".")[0]) # There is no field in Data.Vic schema to store the source UUID of the harvested record # Therefore, we are using the `primary_purpose_of_collection` field if uuid: - package_dict['primary_purpose_of_collection'] = uuid + package_dict["primary_purpose_of_collection"] = uuid # @TODO: Consider this - in the field mapping spreadsheet: # https://docs.google.com/spreadsheets/d/112hzp6ZrTnp3fl_ZdmT6oHldUGf36LvEpLswAJDLdr0/edit#gid=1669999637 # The response from SDM was: # "We could either add Custodian to the Q Search results or just use resource owner. Given that it is # not publically displayed in DV, not sure it's worth the effort of adding the custodian" - res_owner = metashare_dict.get('resOwner', None) + res_owner = metashare_dict.get("resOwner", None) if res_owner: - package_dict['data_owner'] = res_owner.split(';')[0] + package_dict["data_owner"] = res_owner.split(";")[0] # Decision from discussion with Simon/DPC on 2020-10-13 is to assign all datasets to "Spatial Data" group # Data.Vic "category" field is equivalent to groups, but stored as an extra and only has 1 group - default_group_dicts = self.config.get('default_group_dicts', None) + default_group_dicts = self.config.get("default_group_dicts", None) if default_group_dicts and isinstance(default_group_dicts, list): - package_dict['groups'] = [{"id": group.get('id')} for group in default_group_dicts] + package_dict["groups"] = [ + {"id": group.get("id")} for group in default_group_dicts + ] category = default_group_dicts[0] if default_group_dicts else None if category: - package_dict['category'] = category.get('id') + package_dict["category"] = category.get("id") # @TODO: Default to UTC now if not available... OR try and get it from somewhere else in the record # date provided seems to be a bit of a mess , e.g. '2013-03-31t13:00:00.000z' # might need to run some regex on this - temp_extent_begin = metashare_dict.get('tempExtentBegin', None) + temp_extent_begin = metashare_dict.get("tempExtentBegin", None) if temp_extent_begin: - package_dict['date_created_data_asset'] = convert_date_to_isoformat(temp_extent_begin) + package_dict["date_created_data_asset"] = convert_date_to_isoformat( + temp_extent_begin + ) else: - print('WHAT DO WE DO HERE? tempExtentBegin does not exist for {}'.format(uuid)) + print( + "WHAT DO WE DO HERE? tempExtentBegin does not exist for {}".format(uuid) + ) # @TODO: Examples can be "2012-03-27" - do we need to convert this to UTC before inserting? # is a question for SDM - i.e. are their dates in UTC or Vic/Melb time? - package_dict['date_modified_data_asset'] = convert_date_to_isoformat(metashare_dict.get('revisionDate', None)) + package_dict["date_modified_data_asset"] = convert_date_to_isoformat( + metashare_dict.get("revisionDate", None) + ) - package_dict['update_frequency'] = map_update_frequency(get_datavic_update_frequencies(), - metashare_dict.get('maintenanceAndUpdateFrequency_text', 'unknown')) + package_dict["update_frequency"] = map_update_frequency( + get_datavic_update_frequencies(), + metashare_dict.get("maintenanceAndUpdateFrequency_text", "unknown"), + ) if full_metadata_url: - package_dict['full_metadata_url'] = full_metadata_url + package_dict["full_metadata_url"] = full_metadata_url # Create a single resource for the dataset resource = { - 'name': metashare_dict.get('altTitle') or metashare_dict.get('title'), - 'format': metashare_dict.get('spatialRepresentationType_text', None), - 'period_start': convert_date_to_isoformat(metashare_dict.get('tempExtentBegin', None)), - 'period_end': convert_date_to_isoformat(metashare_dict.get('tempExtentEnd', None)), - 'url': resource_url + "name": metashare_dict.get("altTitle") or metashare_dict.get("title"), + "format": metashare_dict.get("spatialRepresentationType_text", None), + "period_start": convert_date_to_isoformat( + metashare_dict.get("tempExtentBegin", None) + ), + "period_end": convert_date_to_isoformat( + metashare_dict.get("tempExtentEnd", None) + ), + "url": resource_url, } - attribution = self.config.get('resource_attribution', None) + attribution = self.config.get("resource_attribution", None) if attribution: - resource['attribution'] = attribution + resource["attribution"] = attribution - package_dict['resources'] = [resource] + package_dict["resources"] = [resource] # @TODO: What about these ones? # responsibleParty @@ -378,7 +407,7 @@ def _get_package_dict(self, harvest_object): def gather_stage(self, harvest_job): - log.debug('In MetaShareHarvester gather_stage') + log.debug("In MetaShareHarvester gather_stage") # # BEGIN: This section is copied from ckanext/dcat/harvesters/_json.py @@ -388,10 +417,11 @@ def gather_stage(self, harvest_job): ids = [] # Get the previous guids for this source - query = \ - model.Session.query(HarvestObject.guid, HarvestObject.package_id) \ - .filter(HarvestObject.current == True) \ + query = ( + model.Session.query(HarvestObject.guid, HarvestObject.package_id) + .filter(HarvestObject.current == True) .filter(HarvestObject.harvest_source_id == harvest_job.source.id) + ) guid_to_package_id = {} @@ -410,12 +440,18 @@ def gather_stage(self, harvest_job): # CKAN harvest default is 100, in testing 500 works pretty fast and is more efficient as it only needs 5 API calls instead of 19 for 1701 test datasets records_per_page = 500 - harvest_source_url = harvest_job.source.url[:-1] if harvest_job.source.url.endswith('?') else harvest_job.source.url + harvest_source_url = ( + harvest_job.source.url[:-1] + if harvest_job.source.url.endswith("?") + else harvest_job.source.url + ) # _get_page_of_records will return None if there are no more records records = True while records: - records = self._get_page_of_records(harvest_source_url, page, records_per_page) + records = self._get_page_of_records( + harvest_source_url, page, records_per_page + ) batch_guids = [] if records: @@ -433,26 +469,29 @@ def gather_stage(self, harvest_job): if guid in guids_in_db: # Dataset needs to be udpated obj = HarvestObject( - guid=guid, job=harvest_job, + guid=guid, + job=harvest_job, package_id=guid_to_package_id[guid], content=as_string, - extras=[HarvestObjectExtra(key='status', - value='change')]) + extras=[ + HarvestObjectExtra(key="status", value="change") + ], + ) else: # Dataset needs to be created obj = HarvestObject( - guid=guid, job=harvest_job, + guid=guid, + job=harvest_job, content=as_string, - extras=[HarvestObjectExtra(key='status', - value='new')]) + extras=[HarvestObjectExtra(key="status", value="new")], + ) obj.save() ids.append(obj.id) if len(batch_guids) > 0: - guids_in_source.extend(set(batch_guids) - - set(previous_guids)) + guids_in_source.extend(set(batch_guids) - set(previous_guids)) else: - log.debug('Empty document, no more records') + log.debug("Empty document, no more records") # Empty document, no more ids break # @@ -476,13 +515,15 @@ def gather_stage(self, harvest_job): guids_to_delete = set(guids_in_db) - set(guids_in_source) for guid in guids_to_delete: obj = HarvestObject( - guid=guid, job=harvest_job, + guid=guid, + job=harvest_job, package_id=guid_to_package_id[guid], - extras=[HarvestObjectExtra(key='status', value='delete')]) + extras=[HarvestObjectExtra(key="status", value="delete")], + ) ids.append(obj.id) - model.Session.query(HarvestObject).\ - filter_by(guid=guid).\ - update({'current': False}, False) + model.Session.query(HarvestObject).filter_by(guid=guid).update( + {"current": False}, False + ) obj.save() return ids @@ -499,54 +540,62 @@ def import_stage(self, harvest_object): :param harvest_object: :return: """ - log.debug('In MetaShareHarvester import_stage') + log.debug("In MetaShareHarvester import_stage") if not harvest_object: - log.error('No harvest object received') + log.error("No harvest object received") return False if self.force_import: - status = 'change' + status = "change" else: - status = self._get_object_extra(harvest_object, 'status') + status = self._get_object_extra(harvest_object, "status") context = { - 'user': self._get_user_name(), - 'return_id_only': True, - 'ignore_auth': True, - 'model': model, - 'session': model.Session + "user": self._get_user_name(), + "return_id_only": True, + "ignore_auth": True, + "model": model, + "session": model.Session, } - if status == 'delete': + if status == "delete": # Delete package - p.toolkit.get_action('package_delete')( - context, {'id': harvest_object.package_id}) - log.info('Deleted package {0} with guid {1}' - .format(harvest_object.package_id, harvest_object.guid)) + p.toolkit.get_action("package_delete")( + context, {"id": harvest_object.package_id} + ) + log.info( + "Deleted package {0} with guid {1}".format( + harvest_object.package_id, harvest_object.guid + ) + ) return True if harvest_object.content is None: self._save_object_error( - 'Empty content for object %s' % harvest_object.id, - harvest_object, 'Import') + "Empty content for object %s" % harvest_object.id, + harvest_object, + "Import", + ) return False if harvest_object.guid is None: self._save_object_error( - 'Empty guid for object %s' % harvest_object.id, - harvest_object, 'Import') + "Empty guid for object %s" % harvest_object.id, harvest_object, "Import" + ) return False self._set_config(harvest_object.source.config) # Get the last harvested object (if any) - previous_object = model.Session.query(HarvestObject) \ - .filter(HarvestObject.guid == harvest_object.guid) \ - .filter(HarvestObject.current == True) \ + previous_object = ( + model.Session.query(HarvestObject) + .filter(HarvestObject.guid == harvest_object.guid) + .filter(HarvestObject.current == True) .first() + ) # Flag previous object as not current anymore if previous_object and not self.force_import: @@ -558,48 +607,56 @@ def import_stage(self, harvest_object): if not package_dict: return False - if not package_dict.get('name'): - package_dict['name'] = self._get_package_name(harvest_object, package_dict['title']) + if not package_dict.get("name"): + package_dict["name"] = self._get_package_name( + harvest_object, package_dict["title"] + ) # Flag this object as the current one harvest_object.current = True harvest_object.add() try: - if status == 'new': + if status == "new": package_schema = logic.schema.default_create_package_schema() - context['schema'] = package_schema + context["schema"] = package_schema # We need to explicitly provide a package ID - package_dict['id'] = str(uuid.uuid4()) - package_schema['id'] = [str] + package_dict["id"] = str(uuid.uuid4()) + package_schema["id"] = [str] # Save reference to the package on the object - harvest_object.package_id = package_dict['id'] + harvest_object.package_id = package_dict["id"] harvest_object.add() # Defer constraints and flush so the dataset can be indexed with # the harvest object id (on the after_show hook from the harvester # plugin) model.Session.execute( - 'SET CONSTRAINTS harvest_object_package_id_fkey DEFERRED') + "SET CONSTRAINTS harvest_object_package_id_fkey DEFERRED" + ) model.Session.flush() - elif status == 'change': - package_dict['id'] = harvest_object.package_id + elif status == "change": + package_dict["id"] = harvest_object.package_id - if status in ['new', 'change']: - action = 'package_create' if status == 'new' else 'package_update' - message_status = 'Created' if status == 'new' else 'Updated' + if status in ["new", "change"]: + action = "package_create" if status == "new" else "package_update" + message_status = "Created" if status == "new" else "Updated" package_id = p.toolkit.get_action(action)(context, package_dict) - log.info('%s dataset with id %s', message_status, package_id) + log.info("%s dataset with id %s", message_status, package_id) except Exception as e: # dataset = json.loads(harvest_object.content) - dataset_name = package_dict.get('name', '') + dataset_name = package_dict.get("name", "") - self._save_object_error('Error importing dataset %s: %r / %s' % (dataset_name, e, traceback.format_exc()), harvest_object, 'Import') + self._save_object_error( + "Error importing dataset %s: %r / %s" + % (dataset_name, e, traceback.format_exc()), + harvest_object, + "Import", + ) return False finally: diff --git a/ckanext/datavic_harvester/helpers.py b/ckanext/datavic_harvester/helpers.py index d6fd097..dd974b2 100644 --- a/ckanext/datavic_harvester/helpers.py +++ b/ckanext/datavic_harvester/helpers.py @@ -4,6 +4,7 @@ log = logging.getLogger(__name__) + def convert_date_to_isoformat(value): """ Example dates: @@ -15,10 +16,10 @@ def convert_date_to_isoformat(value): date = None try: # Remove any microseconds - value = value.split('.')[0] - if 't' in value.lower(): - date = p.toolkit.get_converter('isodate')(value, {}) + value = value.split(".")[0] + if "t" in value.lower(): + date = p.toolkit.get_converter("isodate")(value, {}) except p.toolkit.Invalid as ex: - log.debug('Date format incorrect {0}'.format(value)) + log.debug("Date format incorrect {0}".format(value)) # TODO: Do we return None or value if date string cannot be converted? - return date.isoformat() if date else None \ No newline at end of file + return date.isoformat() if date else None diff --git a/ckanext/datavic_harvester/plugin.py b/ckanext/datavic_harvester/plugin.py index fba9938..e6269d4 100644 --- a/ckanext/datavic_harvester/plugin.py +++ b/ckanext/datavic_harvester/plugin.py @@ -20,9 +20,10 @@ class DataVicCKANHarvester(CKANHarvester): - ''' + """ A Harvester for CKAN Data.Vic instances - ''' + """ + config = None api_version = 2 @@ -30,25 +31,30 @@ class DataVicCKANHarvester(CKANHarvester): def info(self): return { - 'name': 'datavic_ckan_harvester', - 'title': 'CKAN Harvester for Data.Vic', - 'description': 'Harvests remote CKAN instances using the Data.Vic custom schema and performs some post-processing', - 'form_config_interface': 'Text' + "name": "datavic_ckan_harvester", + "title": "CKAN Harvester for Data.Vic", + "description": "Harvests remote CKAN instances using the Data.Vic custom schema and performs some post-processing", + "form_config_interface": "Text", } def import_stage(self, harvest_object): - log.debug('In DataVicCKANHarvester import_stage') + log.debug("In DataVicCKANHarvester import_stage") - base_context = {'model': model, 'session': model.Session, - 'user': self._get_user_name()} + base_context = { + "model": model, + "session": model.Session, + "user": self._get_user_name(), + } if not harvest_object: - log.error('No harvest object received') + log.error("No harvest object received") return False if harvest_object.content is None: - self._save_object_error('Empty content for object %s' % - harvest_object.id, - harvest_object, 'Import') + self._save_object_error( + "Empty content for object %s" % harvest_object.id, + harvest_object, + "Import", + ) return False self._set_config(harvest_object.job.source.config) @@ -57,243 +63,333 @@ def import_stage(self, harvest_object): package_dict = json.loads(harvest_object.content) try: - local_dataset = get_action('package_show')(base_context.copy(), {'id': package_dict['id']}) - except( NotFound) as e: + local_dataset = get_action("package_show")( + base_context.copy(), {"id": package_dict["id"]} + ) + except (NotFound) as e: local_dataset = {} - log.info('-- Package ID %s (%s) does not exist locally' % (package_dict['id'], package_dict['name'])) - - ignore_private = toolkit.asbool(self.config.get('ignore_private_datasets', False)) + log.info( + "-- Package ID %s (%s) does not exist locally" + % (package_dict["id"], package_dict["name"]) + ) + + ignore_private = toolkit.asbool( + self.config.get("ignore_private_datasets", False) + ) # DATAVIC-94 - Even if a dataset is marked Private we need to check if it exists locally in CKAN # If it exists then it needs to be removed - if ignore_private and toolkit.asbool(package_dict['private']) is True: + if ignore_private and toolkit.asbool(package_dict["private"]) is True: if local_dataset: - if not local_dataset['state'] == 'deleted': - get_action('package_delete')(base_context.copy(), {'id': local_dataset['id']}) + if not local_dataset["state"] == "deleted": + get_action("package_delete")( + base_context.copy(), {"id": local_dataset["id"]} + ) package_index = PackageSearchIndex() package_index.remove_dict(local_dataset) - log.info('REMOVING now Private record: ' + package_dict['name'] + ' - ID: ' + package_dict['id']) + log.info( + "REMOVING now Private record: " + + package_dict["name"] + + " - ID: " + + package_dict["id"] + ) # Return true regardless of if the local dataset is already deleted, because we need to avoid this # dataset harvest object from being processed any further. return True else: - log.info('IGNORING Private record: ' + package_dict['name'] + ' - ID: ' + package_dict['id']) + log.info( + "IGNORING Private record: " + + package_dict["name"] + + " - ID: " + + package_dict["id"] + ) return True - if package_dict.get('type') == 'harvest': - log.warn('Remote dataset is a harvest source, ignoring...') + if package_dict.get("type") == "harvest": + log.warn("Remote dataset is a harvest source, ignoring...") return True # Set default tags if needed - default_tags = self.config.get('default_tags', []) + default_tags = self.config.get("default_tags", []) if default_tags: - if not 'tags' in package_dict: - package_dict['tags'] = [] - package_dict['tags'].extend( - [t for t in default_tags if t not in package_dict['tags']]) - - remote_groups = self.config.get('remote_groups', None) - if not remote_groups in ('only_local', 'create'): + if not "tags" in package_dict: + package_dict["tags"] = [] + package_dict["tags"].extend( + [t for t in default_tags if t not in package_dict["tags"]] + ) + + remote_groups = self.config.get("remote_groups", None) + if not remote_groups in ("only_local", "create"): # Ignore remote groups - package_dict.pop('groups', None) + package_dict.pop("groups", None) else: - if not 'groups' in package_dict: - package_dict['groups'] = [] + if not "groups" in package_dict: + package_dict["groups"] = [] # check if remote groups exist locally, otherwise remove validated_groups = [] # Only process the first group that matches an existing group in CKAN - if len(package_dict['groups']) > 1: - package_group_names = [x['name'] for x in package_dict['groups']] + if len(package_dict["groups"]) > 1: + package_group_names = [x["name"] for x in package_dict["groups"]] # Get all the groups in CKAN - ckan_groups = get_action('group_list')(base_context.copy(), {}) + ckan_groups = get_action("group_list")(base_context.copy(), {}) for group_name in package_group_names: if group_name in ckan_groups: - package_dict['groups'] = [x for x in package_dict['groups'] if x['name'] == group_name] + package_dict["groups"] = [ + x + for x in package_dict["groups"] + if x["name"] == group_name + ] break - for group_ in package_dict['groups']: + for group_ in package_dict["groups"]: try: try: - if 'id' in group_: - data_dict = {'id': group_['id']} - group = get_action('group_show')(base_context.copy(), data_dict) + if "id" in group_: + data_dict = {"id": group_["id"]} + group = get_action("group_show")( + base_context.copy(), data_dict + ) else: raise NotFound except NotFound as e: - if 'name' in group_: - data_dict = {'id': group_['name']} - group = get_action('group_show')(base_context.copy(), data_dict) + if "name" in group_: + data_dict = {"id": group_["name"]} + group = get_action("group_show")( + base_context.copy(), data_dict + ) else: raise NotFound # Found local group - validated_groups.append({'id': group['id'], 'name': group['name']}) + validated_groups.append( + {"id": group["id"], "name": group["name"]} + ) except NotFound as e: - log.info('Group %s is not available', group_) - if remote_groups == 'create': + log.info("Group %s is not available", group_) + if remote_groups == "create": try: - group = self._get_group(harvest_object.source.url, group_) + group = self._get_group( + harvest_object.source.url, group_ + ) except RemoteResourceError: - log.error('Could not get remote group %s', group_) + log.error("Could not get remote group %s", group_) continue - for key in ['packages', 'created', 'users', 'groups', 'tags', 'extras', 'display_name']: + for key in [ + "packages", + "created", + "users", + "groups", + "tags", + "extras", + "display_name", + ]: group.pop(key, None) - get_action('group_create')(base_context.copy(), group) - log.info('Group %s has been newly created', group_) - validated_groups.append({'id': group['id'], 'name': group['name']}) + get_action("group_create")(base_context.copy(), group) + log.info("Group %s has been newly created", group_) + validated_groups.append( + {"id": group["id"], "name": group["name"]} + ) - package_dict['groups'] = validated_groups + package_dict["groups"] = validated_groups # Local harvest source organization - source_dataset = get_action('package_show')(base_context.copy(), {'id': harvest_object.source.id}) - local_org = source_dataset.get('owner_org') + source_dataset = get_action("package_show")( + base_context.copy(), {"id": harvest_object.source.id} + ) + local_org = source_dataset.get("owner_org") - remote_orgs = self.config.get('remote_orgs', None) + remote_orgs = self.config.get("remote_orgs", None) - if not remote_orgs in ('only_local', 'create'): + if not remote_orgs in ("only_local", "create"): # Assign dataset to the source organization - package_dict['owner_org'] = local_org + package_dict["owner_org"] = local_org else: - if not 'owner_org' in package_dict: - package_dict['owner_org'] = None + if not "owner_org" in package_dict: + package_dict["owner_org"] = None # check if remote org exist locally, otherwise remove validated_org = None - remote_org = package_dict['owner_org'] + remote_org = package_dict["owner_org"] if remote_org: try: - data_dict = {'id': remote_org} - org = get_action('organization_show')(base_context.copy(), data_dict) - validated_org = org['id'] + data_dict = {"id": remote_org} + org = get_action("organization_show")( + base_context.copy(), data_dict + ) + validated_org = org["id"] except NotFound as e: - log.info('Organization %s is not available', remote_org) - if remote_orgs == 'create': + log.info("Organization %s is not available", remote_org) + if remote_orgs == "create": try: try: - org = self._get_organization(harvest_object.source.url, remote_org) + org = self._get_organization( + harvest_object.source.url, remote_org + ) except RemoteResourceError: # fallback if remote CKAN exposes organizations as groups # this especially targets older versions of CKAN - org = self._get_group(harvest_object.source.url, remote_org) + org = self._get_group( + harvest_object.source.url, remote_org + ) # DATAVIC-8: Try and find a local org with the same name first.. try: - matching_local_org = get_action('organization_show')(base_context.copy(), {'id': org['name']}) - log.info("Found local org matching name: " + org['name']) - validated_org = matching_local_org['id'] + matching_local_org = get_action( + "organization_show" + )(base_context.copy(), {"id": org["name"]}) + log.info( + "Found local org matching name: " + org["name"] + ) + validated_org = matching_local_org["id"] except NotFound as e: - log.info("Did NOT find local org matching name: " + org['name'] + ' - attempting to create...') - for key in ['packages', 'created', 'users', 'groups', 'tags', 'extras', 'display_name', 'type']: + log.info( + "Did NOT find local org matching name: " + + org["name"] + + " - attempting to create..." + ) + for key in [ + "packages", + "created", + "users", + "groups", + "tags", + "extras", + "display_name", + "type", + ]: org.pop(key, None) - get_action('organization_create')(base_context.copy(), org) - log.info('Organization %s has been newly created', remote_org) - validated_org = org['id'] + get_action("organization_create")( + base_context.copy(), org + ) + log.info( + "Organization %s has been newly created", + remote_org, + ) + validated_org = org["id"] except (RemoteResourceError, ValidationError): - log.error('Could not get remote org %s', remote_org) + log.error("Could not get remote org %s", remote_org) - package_dict['owner_org'] = validated_org or local_org + package_dict["owner_org"] = validated_org or local_org # Set default groups if needed - default_groups = self.config.get('default_groups', []) + default_groups = self.config.get("default_groups", []) if default_groups: - if not 'groups' in package_dict: - package_dict['groups'] = [] - existing_group_ids = [g['id'] for g in package_dict['groups']] - package_dict['groups'].extend( - [g for g in self.config['default_group_dicts'] - if g['id'] not in existing_group_ids]) + if not "groups" in package_dict: + package_dict["groups"] = [] + existing_group_ids = [g["id"] for g in package_dict["groups"]] + package_dict["groups"].extend( + [ + g + for g in self.config["default_group_dicts"] + if g["id"] not in existing_group_ids + ] + ) # Set default extras if needed - default_extras = self.config.get('default_extras', {}) + default_extras = self.config.get("default_extras", {}) + def get_extra(key, package_dict): - for extra in package_dict.get('extras', []): - if extra['key'] == key: + for extra in package_dict.get("extras", []): + if extra["key"] == key: return extra + if default_extras: - override_extras = self.config.get('override_extras', False) - if not 'extras' in package_dict: - package_dict['extras'] = [] + override_extras = self.config.get("override_extras", False) + if not "extras" in package_dict: + package_dict["extras"] = [] for key, value in default_extras.items(): existing_extra = get_extra(key, package_dict) if existing_extra and not override_extras: continue # no need for the default if existing_extra: - package_dict['extras'].remove(existing_extra) + package_dict["extras"].remove(existing_extra) # Look for replacement strings if isinstance(value, six.string_types): value = value.format( harvest_source_id=harvest_object.job.source.id, - harvest_source_url= - harvest_object.job.source.url.strip('/'), - harvest_source_title= - harvest_object.job.source.title, + harvest_source_url=harvest_object.job.source.url.strip("/"), + harvest_source_title=harvest_object.job.source.title, harvest_job_id=harvest_object.job.id, harvest_object_id=harvest_object.id, - dataset_id=package_dict['id']) + dataset_id=package_dict["id"], + ) - package_dict['extras'].append({'key': key, 'value': value}) + package_dict["extras"].append({"key": key, "value": value}) - for resource in package_dict.get('resources', []): - if resource.get('url_type') == 'upload': + for resource in package_dict.get("resources", []): + if resource.get("url_type") == "upload": local_resource = next( - (x for x in local_dataset.get('resources', []) if resource.get('id') == x.get('id')), None) + ( + x + for x in local_dataset.get("resources", []) + if resource.get("id") == x.get("id") + ), + None, + ) # Check last modified date to see if resource file has been updated # Resource last_modified date is only updated when a file has been uploaded if not local_resource or ( - local_resource - and resource.get('last_modified', None) > local_resource.get('last_modified', None)): + local_resource + and resource.get("last_modified", None) + > local_resource.get("last_modified", None) + ): filename = self.copy_remote_file_to_filestore( - resource['id'], - resource['url'], - self.config.get('api_key') + resource["id"], resource["url"], self.config.get("api_key") ) if filename: - resource['url'] = filename + resource["url"] = filename else: # Clear remote url_type for resources (eg datastore, upload) as # we are only creating normal resources with links to the # remote ones - resource.pop('url_type', None) + resource.pop("url_type", None) # Clear revision_id as the revision won't exist on this CKAN # and saving it will cause an IntegrityError with the foreign # key. - resource.pop('revision_id', None) + resource.pop("revision_id", None) # Copy `citation` from the dataset to the resource (for Legacy Data.Vic records) - citation = package_dict.get('citation', None) + citation = package_dict.get("citation", None) if citation is not None: - resource['attribution'] = citation + resource["attribution"] = citation # DATAVIC-61: Add any additional schema fields not existing in Data.Vic schema as extras # if identified within the harvest configuration - additional_fields_as_extras = self.config.get('additional_fields_as_extras', {}) + additional_fields_as_extras = self.config.get( + "additional_fields_as_extras", {} + ) if additional_fields_as_extras: for key in additional_fields_as_extras: if package_dict[key]: - package_dict['extras'].append({'key': key, 'value': package_dict[key]}) + package_dict["extras"].append( + {"key": key, "value": package_dict[key]} + ) # Use the same harvester for the different scenarios, e.g. - additional_fields = self.config.get('additional_fields', {}) + additional_fields = self.config.get("additional_fields", {}) if additional_fields: - if not 'extras' in package_dict: - package_dict['extras'] = [] + if not "extras" in package_dict: + package_dict["extras"] = [] for key in additional_fields: if key in package_dict: - package_dict['extras'].append({'key': key, 'value': package_dict[key]}) + package_dict["extras"].append( + {"key": key, "value": package_dict[key]} + ) result = self._create_or_update_package( - package_dict, harvest_object, package_dict_form='package_show') + package_dict, harvest_object, package_dict_form="package_show" + ) # DATAVIC: workflow_status and organization_visibility are now set in the ckanext-workflow extension: # file: ckanext-workflow/ckanext/workflow/plugin.py @@ -302,15 +398,24 @@ def get_extra(key, package_dict): return result except (ValidationError) as e: - self._save_object_error('Invalid package with GUID %s: %r' % - (harvest_object.guid, e.error_dict), - harvest_object, 'Import') + self._save_object_error( + "Invalid package with GUID %s: %r" + % (harvest_object.guid, e.error_dict), + harvest_object, + "Import", + ) except (Exception) as e: - self._save_object_error('%s' % e, harvest_object, 'Import') + self._save_object_error("%s" % e, harvest_object, "Import") def copy_remote_file_to_filestore(self, resource_id, resource_url, apikey=None): try: - resources_path, parent_dir, sub_dir, filename, full_path = self.get_paths_from_resource_id(resource_id) + ( + resources_path, + parent_dir, + sub_dir, + filename, + full_path, + ) = self.get_paths_from_resource_id(resource_id) # Check to see if the full path, i.e. file already exists - if so delete it if os.path.exists(full_path): @@ -323,16 +428,24 @@ def copy_remote_file_to_filestore(self, resource_id, resource_url, apikey=None): if apikey: headers["Authorization"] = apikey r = requests.get(resource_url, headers=headers) - open(full_path, 'wb').write(r.content) - log.info('Downloaded resource {0} to {1}'.format(resource_url, full_path)) + open(full_path, "wb").write(r.content) + log.info( + "Downloaded resource {0} to {1}".format(resource_url, full_path) + ) else: - log.error('Directory for local resource {0} does not exist'.format(sub_dir)) + log.error( + "Directory for local resource {0} does not exist".format(sub_dir) + ) # Return the actual filename of the remote resource - return resource_url.split('/')[-1] + return resource_url.split("/")[-1] except Exception as e: - log.error('Error copying remote file {0} to local {1}'.format(resource_url, full_path)) - log.error('Exception: {0}'.format(e)) + log.error( + "Error copying remote file {0} to local {1}".format( + resource_url, full_path + ) + ) + log.error("Exception: {0}".format(e)) return None def resource_directory_exists(self, parent_dir, sub_dir): @@ -345,7 +458,7 @@ def resource_directory_exists(self, parent_dir, sub_dir): self.create_resource_directory(sub_dir) return True except Exception as e: - log.error('`resource_directory_exists` Exception: {0}'.format(e)) + log.error("`resource_directory_exists` Exception: {0}".format(e)) return False def create_resource_directory(self, directory): @@ -353,20 +466,24 @@ def create_resource_directory(self, directory): os.mkdir(directory) return True except Exception as e: - log.error('`create_resource_directory` Error creating directory: {0}'.format(directory)) - log.error('`create_resource_directory` Exception: {0}'.format(e)) + log.error( + "`create_resource_directory` Error creating directory: {0}".format( + directory + ) + ) + log.error("`create_resource_directory` Exception: {0}".format(e)) return False def get_paths_from_resource_id(self, resource_id): # Our base path for storing resource files - resources_path = '/'.join([config.get('ckan.storage_path'), 'resources']) + resources_path = "/".join([config.get("ckan.storage_path"), "resources"]) # Separate the resource ID into the necessary chunks for filestore resource directory structure - parent_dir = '/'.join([resources_path, resource_id[0:3]]) - sub_dir = '/'.join([parent_dir, resource_id[3:6]]) + parent_dir = "/".join([resources_path, resource_id[0:3]]) + sub_dir = "/".join([parent_dir, resource_id[3:6]]) filename = resource_id[6:] - full_path = '/'.join([sub_dir, filename]) + full_path = "/".join([sub_dir, filename]) return resources_path, parent_dir, sub_dir, filename, full_path diff --git a/setup.py b/setup.py index 559bbd2..c528c7c 100644 --- a/setup.py +++ b/setup.py @@ -6,79 +6,63 @@ here = path.abspath(path.dirname(__file__)) # Get the long description from the relevant file -with open(path.join(here, 'README.rst'), encoding='utf-8') as f: +with open(path.join(here, "README.rst"), encoding="utf-8") as f: long_description = f.read() setup( - name='''ckanext-datavic-harvester''', - + name="""ckanext-datavic-harvester""", # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # http://packaging.python.org/en/latest/tutorial.html#version - version='0.0.1', - - description='''A harvester for the Data.Vic custom schema''', + version="0.0.1", + description="""A harvester for the Data.Vic custom schema""", long_description=long_description, - # The project's main homepage. - url='https://github.com//ckanext-datavic-harvester', - + url="https://github.com//ckanext-datavic-harvester", # Author details - author='''Salsa Digital''', - author_email='''''', - + author="""Salsa Digital""", + author_email="""""", # Choose your license - license='AGPL', - + license="AGPL", # See https://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ # How mature is this project? Common values are # 3 - Alpha # 4 - Beta # 5 - Production/Stable - 'Development Status :: 4 - Beta', - + "Development Status :: 4 - Beta", # Pick your license as you wish (should match "license" above) - 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', - + "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", # Specify the Python versions you support here. In particular, ensure # that you indicate whether you support Python 2, Python 3 or both. - 'Programming Language :: Python :: 3.7', + "Programming Language :: Python :: 3.7", ], - - # What does your project relate to? - keywords='''CKAN harvest''', - + keywords="""CKAN harvest""", # You can just specify the packages manually here if your project is # simple. Or you can use find_packages(). - packages=find_packages(exclude=['contrib', 'docs', 'tests*']), - namespace_packages=['ckanext'], - + packages=find_packages(exclude=["contrib", "docs", "tests*"]), + namespace_packages=["ckanext"], install_requires=[ - # CKAN extensions should not list dependencies here, but in a separate - # ``requirements.txt`` file. - # - # http://docs.ckan.org/en/latest/extensions/best-practices.html#add-third-party-libraries-to-requirements-txt + # CKAN extensions should not list dependencies here, but in a separate + # ``requirements.txt`` file. + # + # http://docs.ckan.org/en/latest/extensions/best-practices.html#add-third-party-libraries-to-requirements-txt ], - # If there are data files included in your packages that need to be # installed, specify them here. If using Python 2.6 or less, then these # have to be included in MANIFEST.in as well. include_package_data=True, - package_data={ - }, - + package_data={}, # Although 'package_data' is the preferred approach, in some case you may # need to place data files outside of your packages. # see http://docs.python.org/3.4/distutils/setupscript.html#installing-additional-files # In this case, 'data_file' will be installed into '/my_data' data_files=[], - # To provide executable scripts, use entry points in preference to the # "scripts" keyword. Entry points provide cross-platform support and allow # pip to create the appropriate form of executable for the target platform. - entry_points=''' + entry_points=""" [ckan.plugins] datavic_ckan_harvester=ckanext.datavic_harvester.plugin:DataVicCKANHarvester datavic_dcat_json_harvester=ckanext.datavic_harvester.harvesters:DataVicDCATJSONHarvester @@ -87,17 +71,16 @@ [babel.extractors] ckan = ckan.lib.extract:extract_ckan - ''', - + """, # If you are changing from the default layout of your extension, you may # have to change the message extractors, you can read more about babel # message extraction at # http://babel.pocoo.org/docs/messages/#extraction-method-mapping-and-configuration message_extractors={ - 'ckanext': [ - ('**.py', 'python', None), - ('**.js', 'javascript', None), - ('**/templates/**.html', 'ckan', None), + "ckanext": [ + ("**.py", "python", None), + ("**.js", "javascript", None), + ("**/templates/**.html", "ckan", None), ], - } + }, ) From bf691b64ed1253c973ba9144fa6ea34fac4779c3 Mon Sep 17 00:00:00 2001 From: mutantsan Date: Thu, 19 Jan 2023 11:52:28 +0200 Subject: [PATCH 08/21] SXDEDPCXZIC-90_DATAVIC-470 / Remove redundant directories and files --- ckanext/datavic_harvester/fanstatic/.gitignore | 0 ckanext/datavic_harvester/public/.gitignore | 0 ckanext/datavic_harvester/templates/.gitignore | 0 ckanext/datavic_harvester/tests/test_plugin.py | 5 ----- 4 files changed, 5 deletions(-) delete mode 100644 ckanext/datavic_harvester/fanstatic/.gitignore delete mode 100644 ckanext/datavic_harvester/public/.gitignore delete mode 100644 ckanext/datavic_harvester/templates/.gitignore delete mode 100644 ckanext/datavic_harvester/tests/test_plugin.py diff --git a/ckanext/datavic_harvester/fanstatic/.gitignore b/ckanext/datavic_harvester/fanstatic/.gitignore deleted file mode 100644 index e69de29..0000000 diff --git a/ckanext/datavic_harvester/public/.gitignore b/ckanext/datavic_harvester/public/.gitignore deleted file mode 100644 index e69de29..0000000 diff --git a/ckanext/datavic_harvester/templates/.gitignore b/ckanext/datavic_harvester/templates/.gitignore deleted file mode 100644 index e69de29..0000000 diff --git a/ckanext/datavic_harvester/tests/test_plugin.py b/ckanext/datavic_harvester/tests/test_plugin.py deleted file mode 100644 index b8122d3..0000000 --- a/ckanext/datavic_harvester/tests/test_plugin.py +++ /dev/null @@ -1,5 +0,0 @@ -"""Tests for plugin.py.""" -import ckanext.datavic-harvester.plugin as plugin - -def test_plugin(): - pass \ No newline at end of file From 0a3822d4f077b981da689e68467919bb68ab2578 Mon Sep 17 00:00:00 2001 From: mutantsan Date: Thu, 19 Jan 2023 12:06:05 +0200 Subject: [PATCH 09/21] SXDEDPCXZIC-90_DATAVIC-470 / move harvesters --- .../datavic_harvester/harvesters/__init__.py | 3 ++- .../{plugin.py => harvesters/datavic_ckan.py} | 18 +----------------- .../harvesters/{_json.py => dcat_json.py} | 0 setup.py | 2 +- 4 files changed, 4 insertions(+), 19 deletions(-) rename ckanext/datavic_harvester/{plugin.py => harvesters/datavic_ckan.py} (99%) rename ckanext/datavic_harvester/harvesters/{_json.py => dcat_json.py} (100%) diff --git a/ckanext/datavic_harvester/harvesters/__init__.py b/ckanext/datavic_harvester/harvesters/__init__.py index f333bdf..fbbaa08 100644 --- a/ckanext/datavic_harvester/harvesters/__init__.py +++ b/ckanext/datavic_harvester/harvesters/__init__.py @@ -1,3 +1,4 @@ -from ckanext.datavic_harvester.harvesters._json import DataVicDCATJSONHarvester +from ckanext.datavic_harvester.harvesters.dcat_json import DataVicDCATJSONHarvester from ckanext.datavic_harvester.harvesters.metashare import MetaShareHarvester from ckanext.datavic_harvester.harvesters.delwp import DelwpHarvester +from ckanext.datavic_harvester.harvesters.datavic_ckan import DataVicCKANHarvester diff --git a/ckanext/datavic_harvester/plugin.py b/ckanext/datavic_harvester/harvesters/datavic_ckan.py similarity index 99% rename from ckanext/datavic_harvester/plugin.py rename to ckanext/datavic_harvester/harvesters/datavic_ckan.py index e6269d4..2579140 100644 --- a/ckanext/datavic_harvester/plugin.py +++ b/ckanext/datavic_harvester/harvesters/datavic_ckan.py @@ -16,7 +16,7 @@ log = logging.getLogger(__name__) -from ckanext.harvest.harvesters.ckanharvester import CKANHarvester +from ckanext.harvest.harvesters.ckanharvester import CKANHarvester, RemoteResourceError class DataVicCKANHarvester(CKANHarvester): @@ -486,19 +486,3 @@ def get_paths_from_resource_id(self, resource_id): full_path = "/".join([sub_dir, filename]) return resources_path, parent_dir, sub_dir, filename, full_path - - -class ContentFetchError(Exception): - pass - - -class ContentNotFoundError(ContentFetchError): - pass - - -class RemoteResourceError(Exception): - pass - - -class SearchError(Exception): - pass diff --git a/ckanext/datavic_harvester/harvesters/_json.py b/ckanext/datavic_harvester/harvesters/dcat_json.py similarity index 100% rename from ckanext/datavic_harvester/harvesters/_json.py rename to ckanext/datavic_harvester/harvesters/dcat_json.py diff --git a/setup.py b/setup.py index c528c7c..cdd233b 100644 --- a/setup.py +++ b/setup.py @@ -64,7 +64,7 @@ # pip to create the appropriate form of executable for the target platform. entry_points=""" [ckan.plugins] - datavic_ckan_harvester=ckanext.datavic_harvester.plugin:DataVicCKANHarvester + datavic_ckan_harvester=ckanext.datavic_harvester.harvesters:DataVicCKANHarvester datavic_dcat_json_harvester=ckanext.datavic_harvester.harvesters:DataVicDCATJSONHarvester metashare_harvester=ckanext.datavic_harvester.harvesters:MetaShareHarvester delwp_harvester = ckanext.datavic_harvester.harvesters:DelwpHarvester From 130379bd62208a60e1d652c6281b260bdd7a4d29 Mon Sep 17 00:00:00 2001 From: mutantsan Date: Thu, 19 Jan 2023 12:24:04 +0200 Subject: [PATCH 10/21] SXDEDPCXZIC-90_DATAVIC-470 / refine imports and related code --- .../harvesters/datavic_ckan.py | 59 +++++++++---------- .../datavic_harvester/harvesters/dcat_json.py | 22 +++---- ckanext/datavic_harvester/harvesters/delwp.py | 41 +++++++------ .../datavic_harvester/harvesters/metashare.py | 27 ++++----- ckanext/datavic_harvester/helpers.py | 7 ++- 5 files changed, 75 insertions(+), 81 deletions(-) diff --git a/ckanext/datavic_harvester/harvesters/datavic_ckan.py b/ckanext/datavic_harvester/harvesters/datavic_ckan.py index 2579140..c39d170 100644 --- a/ckanext/datavic_harvester/harvesters/datavic_ckan.py +++ b/ckanext/datavic_harvester/harvesters/datavic_ckan.py @@ -1,23 +1,18 @@ -from __future__ import print_function +import os +import logging import requests -import os -import six from ckan import model -from ckan.logic import ValidationError, NotFound, get_action +from ckan.plugins import toolkit as tk from ckan.lib.helpers import json from ckan.lib.search.index import PackageSearchIndex -from ckan.plugins import toolkit -from ckan.common import config +from ckanext.harvest.harvesters.ckanharvester import CKANHarvester, RemoteResourceError -import logging log = logging.getLogger(__name__) -from ckanext.harvest.harvesters.ckanharvester import CKANHarvester, RemoteResourceError - class DataVicCKANHarvester(CKANHarvester): """ @@ -63,25 +58,25 @@ def import_stage(self, harvest_object): package_dict = json.loads(harvest_object.content) try: - local_dataset = get_action("package_show")( + local_dataset = tk.get_action("package_show")( base_context.copy(), {"id": package_dict["id"]} ) - except (NotFound) as e: + except (tk.ObjectNotFound) as e: local_dataset = {} log.info( "-- Package ID %s (%s) does not exist locally" % (package_dict["id"], package_dict["name"]) ) - ignore_private = toolkit.asbool( + ignore_private = tk.asbool( self.config.get("ignore_private_datasets", False) ) # DATAVIC-94 - Even if a dataset is marked Private we need to check if it exists locally in CKAN # If it exists then it needs to be removed - if ignore_private and toolkit.asbool(package_dict["private"]) is True: + if ignore_private and tk.asbool(package_dict["private"]) is True: if local_dataset: if not local_dataset["state"] == "deleted": - get_action("package_delete")( + tk.get_action("package_delete")( base_context.copy(), {"id": local_dataset["id"]} ) package_index = PackageSearchIndex() @@ -132,7 +127,7 @@ def import_stage(self, harvest_object): if len(package_dict["groups"]) > 1: package_group_names = [x["name"] for x in package_dict["groups"]] # Get all the groups in CKAN - ckan_groups = get_action("group_list")(base_context.copy(), {}) + ckan_groups = tk.get_action("group_list")(base_context.copy(), {}) for group_name in package_group_names: if group_name in ckan_groups: package_dict["groups"] = [ @@ -147,26 +142,26 @@ def import_stage(self, harvest_object): try: if "id" in group_: data_dict = {"id": group_["id"]} - group = get_action("group_show")( + group = tk.get_action("group_show")( base_context.copy(), data_dict ) else: - raise NotFound + raise tk.ObjectNotFound - except NotFound as e: + except tk.ObjectNotFound as e: if "name" in group_: data_dict = {"id": group_["name"]} - group = get_action("group_show")( + group = tk.get_action("group_show")( base_context.copy(), data_dict ) else: - raise NotFound + raise tk.ObjectNotFound # Found local group validated_groups.append( {"id": group["id"], "name": group["name"]} ) - except NotFound as e: + except tk.ObjectNotFound as e: log.info("Group %s is not available", group_) if remote_groups == "create": try: @@ -188,7 +183,7 @@ def import_stage(self, harvest_object): ]: group.pop(key, None) - get_action("group_create")(base_context.copy(), group) + tk.get_action("group_create")(base_context.copy(), group) log.info("Group %s has been newly created", group_) validated_groups.append( {"id": group["id"], "name": group["name"]} @@ -197,7 +192,7 @@ def import_stage(self, harvest_object): package_dict["groups"] = validated_groups # Local harvest source organization - source_dataset = get_action("package_show")( + source_dataset = tk.get_action("package_show")( base_context.copy(), {"id": harvest_object.source.id} ) local_org = source_dataset.get("owner_org") @@ -218,11 +213,11 @@ def import_stage(self, harvest_object): if remote_org: try: data_dict = {"id": remote_org} - org = get_action("organization_show")( + org = tk.get_action("organization_show")( base_context.copy(), data_dict ) validated_org = org["id"] - except NotFound as e: + except tk.ObjectNotFound as e: log.info("Organization %s is not available", remote_org) if remote_orgs == "create": try: @@ -239,14 +234,14 @@ def import_stage(self, harvest_object): # DATAVIC-8: Try and find a local org with the same name first.. try: - matching_local_org = get_action( + matching_local_org = tk.get_action( "organization_show" )(base_context.copy(), {"id": org["name"]}) log.info( "Found local org matching name: " + org["name"] ) validated_org = matching_local_org["id"] - except NotFound as e: + except tk.ObjectNotFound as e: log.info( "Did NOT find local org matching name: " + org["name"] @@ -263,7 +258,7 @@ def import_stage(self, harvest_object): "type", ]: org.pop(key, None) - get_action("organization_create")( + tk.get_action("organization_create")( base_context.copy(), org ) log.info( @@ -271,7 +266,7 @@ def import_stage(self, harvest_object): remote_org, ) validated_org = org["id"] - except (RemoteResourceError, ValidationError): + except (RemoteResourceError, tk.ValidationError): log.error("Could not get remote org %s", remote_org) package_dict["owner_org"] = validated_org or local_org @@ -309,7 +304,7 @@ def get_extra(key, package_dict): if existing_extra: package_dict["extras"].remove(existing_extra) # Look for replacement strings - if isinstance(value, six.string_types): + if isinstance(value, str): value = value.format( harvest_source_id=harvest_object.job.source.id, harvest_source_url=harvest_object.job.source.url.strip("/"), @@ -397,7 +392,7 @@ def get_extra(key, package_dict): return result - except (ValidationError) as e: + except (tk.ValidationError) as e: self._save_object_error( "Invalid package with GUID %s: %r" % (harvest_object.guid, e.error_dict), @@ -476,7 +471,7 @@ def create_resource_directory(self, directory): def get_paths_from_resource_id(self, resource_id): # Our base path for storing resource files - resources_path = "/".join([config.get("ckan.storage_path"), "resources"]) + resources_path = "/".join([tk.config.get("ckan.storage_path"), "resources"]) # Separate the resource ID into the necessary chunks for filestore resource directory structure parent_dir = "/".join([resources_path, resource_id[0:3]]) diff --git a/ckanext/datavic_harvester/harvesters/dcat_json.py b/ckanext/datavic_harvester/harvesters/dcat_json.py index 761b7d2..cc7a88c 100644 --- a/ckanext/datavic_harvester/harvesters/dcat_json.py +++ b/ckanext/datavic_harvester/harvesters/dcat_json.py @@ -1,16 +1,18 @@ import json -import six import logging -from ckan import model -from ckan.logic import ValidationError, NotFound, get_action -from ckan.plugins import toolkit from bs4 import BeautifulSoup -from ckanext.datavic_harvester import bs4_helpers, helpers + +from ckan import model +from ckan.plugins import toolkit as tk + from ckanext.dcat import converters from ckanext.dcat.harvesters._json import DCATJSONHarvester from ckanext.harvest.model import HarvestSource +from ckanext.datavic_harvester import bs4_helpers, helpers + + log = logging.getLogger(__name__) @@ -47,7 +49,7 @@ def validate_config(self, config): "default_groups must be a *list* of group" " names/ids" ) if config_obj["default_groups"] and not isinstance( - config_obj["default_groups"][0], six.string_types + config_obj["default_groups"][0], str ): raise ValueError( "default_groups must be a list of group " @@ -55,11 +57,11 @@ def validate_config(self, config): ) # Check if default groups exist - context = {"model": model, "user": toolkit.c.user} + context = {"model": model, "user": tk.g.user} config_obj["default_group_dicts"] = [] for group_name_or_id in config_obj["default_groups"]: try: - group = get_action("group_show")( + group = tk.get_action("group_show")( context, {"id": group_name_or_id} ) # save the dict to the config object, as we'll need it @@ -67,7 +69,7 @@ def validate_config(self, config): config_obj["default_group_dicts"].append( {"id": group["id"], "name": group["name"]} ) - except NotFound as e: + except tk.ObjectNotFound as e: raise ValueError("Default group not found") config = json.dumps(config_obj, indent=1) @@ -319,4 +321,4 @@ def _get_existing_dataset(self, guid): "Found more than one dataset with the same guid: {0}".format(guid) ) context = {"user": self._get_user_name(), "ignore_auth": True} - return toolkit.get_action("package_show")(context, {"id": datasets[0][0]}) + return tk.get_action("package_show")(context, {"id": datasets[0][0]}) diff --git a/ckanext/datavic_harvester/harvesters/delwp.py b/ckanext/datavic_harvester/harvesters/delwp.py index a9e2ef4..03f0de7 100644 --- a/ckanext/datavic_harvester/harvesters/delwp.py +++ b/ckanext/datavic_harvester/harvesters/delwp.py @@ -1,21 +1,20 @@ -from datetime import datetime import json import logging -import requests import traceback import uuid import re -import six + +import requests from bs4 import BeautifulSoup -from ckan import logic from ckan import model +from ckan.plugins import toolkit as tk +from ckan.logic.schema import default_create_package_schema + from ckanext.harvest.harvesters import HarvesterBase from ckanext.harvest.model import HarvestObject, HarvestObjectExtra -from hashlib import sha1 -from ckan.plugins import toolkit as toolkit +from ckanext.datavicmain import helpers -import ckanext.datavicmain.helpers as helpers log = logging.getLogger(__name__) @@ -56,7 +55,7 @@ def convert_date_to_isoformat(value, key, dataset_name): try: # Remove any timezone with time value = value.lower().split("t")[0] - date = toolkit.get_converter("isodate")(value, {}) + date = tk.get_converter("isodate")(value, {}) except Exception as ex: log.debug( "{0}: Date format incorrect {1} for key {2}".format( @@ -129,18 +128,18 @@ def _get_organisation(organisation_mapping, resowner, harvest_object, context): "include_tags": False, "include_followers": False, } - organisation = toolkit.get_action("organization_show")( + organisation = tk.get_action("organization_show")( context.copy(), data_dict ) org_id = organisation.get("id") - except toolkit.ObjectNotFound: + except tk.ObjectNotFound: log.warning( f"DELWP harvester _get_organisation: Organisation does not exist {org_id}" ) # Organisation does not exist so create it and use it try: # organization_create will return organisation id because context has 'return_id_only' to true - org_id = toolkit.get_action("organization_create")( + org_id = tk.get_action("organization_create")( context.copy(), {"name": org_name, "title": org_title} ) except Exception as e: @@ -149,7 +148,7 @@ def _get_organisation(organisation_mapping, resowner, harvest_object, context): ) log.error(f"DELWP harvester _get_organisation: {str(e)}") # Fallback to using organisation from harvest source - source_dict = logic.get_action("package_show")( + source_dict = tk.get_action("package_show")( context.copy(), {"id": harvest_object.harvest_source_id} ) org_id = source_dict.get("owner_org") @@ -247,14 +246,14 @@ def validate_config(self, config): try: config_obj = json.loads(config) - context = {"model": model, "user": toolkit.g.user} + context = {"model": model, "user": tk.g.user} if "default_groups" in config_obj: if not isinstance(config_obj["default_groups"], list): raise ValueError( "default_groups must be a *list* of group" " names/ids" ) if config_obj["default_groups"] and not isinstance( - config_obj["default_groups"][0], six.string_types + config_obj["default_groups"][0], str ): raise ValueError( "default_groups must be a list of group " @@ -265,13 +264,13 @@ def validate_config(self, config): config_obj["default_group_dicts"] = [] for group_name_or_id in config_obj["default_groups"]: try: - group = toolkit.get_action("group_show")( + group = tk.get_action("group_show")( context.copy(), {"id": group_name_or_id} ) # save the dict to the config object, as we'll need it # in the import_stage of every dataset config_obj["default_group_dicts"].append(group) - except toolkit.ObjectNotFound: + except tk.ObjectNotFound: raise ValueError("Default group not found") config = json.dumps(config_obj) else: @@ -320,10 +319,10 @@ def validate_config(self, config): 'organisation_mapping item must have property *org-name*. eg "org-name": "organisation-a"}' ) try: - group = toolkit.get_action("organization_show")( + group = tk.get_action("organization_show")( context.copy(), {"id": organisation_mapping.get("org-name")} ) - except toolkit.ObjectNotFound: + except tk.ObjectNotFound: raise ValueError( f'Organisation {organisation_mapping.get("org-name")} not found' ) @@ -753,7 +752,7 @@ def import_stage(self, harvest_object): if status == "delete": # Delete package - toolkit.get_action("package_delete")( + tk.get_action("package_delete")( context.copy(), {"id": harvest_object.package_id} ) log.info( @@ -809,7 +808,7 @@ def import_stage(self, harvest_object): try: if status == "new": - package_schema = logic.schema.default_create_package_schema() + package_schema = default_create_package_schema() context["schema"] = package_schema # We need to explicitly provide a package ID @@ -836,7 +835,7 @@ def import_stage(self, harvest_object): message_status = "Created" if status == "new" else "Updated" if "package" in context: del context["package"] - package_id = toolkit.get_action(action)(context.copy(), package_dict) + package_id = tk.get_action(action)(context.copy(), package_dict) log.info("%s dataset with id %s", message_status, package_id) except Exception as e: diff --git a/ckanext/datavic_harvester/harvesters/metashare.py b/ckanext/datavic_harvester/harvesters/metashare.py index 0df5cb4..c8e3470 100644 --- a/ckanext/datavic_harvester/harvesters/metashare.py +++ b/ckanext/datavic_harvester/harvesters/metashare.py @@ -1,21 +1,18 @@ -from datetime import datetime import json import logging -import requests import traceback import uuid import re -import six + +import requests from ckan import logic from ckan import model -from ckan import plugins as p +from ckan.plugins import toolkit as tk + from ckanext.harvest.harvesters import HarvesterBase from ckanext.harvest.model import HarvestObject, HarvestObjectExtra -from hashlib import sha1 -from ckan.plugins import toolkit as toolkit - -import ckanext.datavicmain.helpers as helpers +from ckanext.datavicmain import helpers log = logging.getLogger(__name__) @@ -57,7 +54,7 @@ def convert_date_to_isoformat(value): # Remove any microseconds value = value.split(".")[0] if "t" in value: - date = p.toolkit.get_converter("isodate")(value, {}) + date = tk.get_converter("isodate")(value, {}) except Exception as ex: log.debug("Date format incorrect {0}".format(value)) log.debug(ex) @@ -178,7 +175,7 @@ def validate_config(self, config): "default_groups must be a *list* of group" " names/ids" ) if config_obj["default_groups"] and not isinstance( - config_obj["default_groups"][0], six.string_types + config_obj["default_groups"][0], str ): raise ValueError( "default_groups must be a list of group " @@ -186,17 +183,17 @@ def validate_config(self, config): ) # Check if default groups exist - context = {"model": model, "user": toolkit.g.user} + context = {"model": model, "user": tk.g.user} config_obj["default_group_dicts"] = [] for group_name_or_id in config_obj["default_groups"]: try: - group = toolkit.get_action("group_show")( + group = tk.get_action("group_show")( context, {"id": group_name_or_id} ) # save the dict to the config object, as we'll need it # in the import_stage of every dataset config_obj["default_group_dicts"].append(group) - except toolkit.ObjectNotFound: + except tk.ObjectNotFound: raise ValueError("Default group not found") config = json.dumps(config_obj) else: @@ -562,7 +559,7 @@ def import_stage(self, harvest_object): if status == "delete": # Delete package - p.toolkit.get_action("package_delete")( + tk.get_action("package_delete")( context, {"id": harvest_object.package_id} ) log.info( @@ -644,7 +641,7 @@ def import_stage(self, harvest_object): action = "package_create" if status == "new" else "package_update" message_status = "Created" if status == "new" else "Updated" - package_id = p.toolkit.get_action(action)(context, package_dict) + package_id = tk.get_action(action)(context, package_dict) log.info("%s dataset with id %s", message_status, package_id) except Exception as e: diff --git a/ckanext/datavic_harvester/helpers.py b/ckanext/datavic_harvester/helpers.py index dd974b2..68912de 100644 --- a/ckanext/datavic_harvester/helpers.py +++ b/ckanext/datavic_harvester/helpers.py @@ -1,6 +1,7 @@ import logging -from ckan import plugins as p +import ckan.plugins.toolkit as tk + log = logging.getLogger(__name__) @@ -18,8 +19,8 @@ def convert_date_to_isoformat(value): # Remove any microseconds value = value.split(".")[0] if "t" in value.lower(): - date = p.toolkit.get_converter("isodate")(value, {}) - except p.toolkit.Invalid as ex: + date = tk.get_converter("isodate")(value, {}) + except tk.Invalid as ex: log.debug("Date format incorrect {0}".format(value)) # TODO: Do we return None or value if date string cannot be converted? return date.isoformat() if date else None From 83fc9b76342f943b60b1a978b310f86b401119a8 Mon Sep 17 00:00:00 2001 From: mutantsan Date: Thu, 19 Jan 2023 16:30:46 +0200 Subject: [PATCH 11/21] SXDEDPCXZIC-90_DATAVIC-470 / refactor helpers --- ckanext/datavic_harvester/bs4_helpers.py | 83 --------- .../datavic_harvester/harvesters/dcat_json.py | 41 ++-- ckanext/datavic_harvester/harvesters/delwp.py | 90 ++------- .../datavic_harvester/harvesters/metashare.py | 98 +++------- ckanext/datavic_harvester/helpers.py | 176 ++++++++++++++++-- 5 files changed, 229 insertions(+), 259 deletions(-) delete mode 100644 ckanext/datavic_harvester/bs4_helpers.py diff --git a/ckanext/datavic_harvester/bs4_helpers.py b/ckanext/datavic_harvester/bs4_helpers.py deleted file mode 100644 index 46fae1e..0000000 --- a/ckanext/datavic_harvester/bs4_helpers.py +++ /dev/null @@ -1,83 +0,0 @@ -# Based on https://gist.github.com/revotu/21d52bd20a073546983985ba3bf55deb -import requests - -from bs4 import BeautifulSoup - - -# remove all attributes -def _remove_all_attrs(soup): - for tag in soup.find_all(True): - tag.attrs = {} - return soup - - -# remove all attributes except some tags -def _remove_all_attrs_except(soup): - whitelist = ["a"] - for tag in soup.find_all(True): - if tag.name not in whitelist: - tag.attrs = {} - return soup - - -# remove all attributes except some tags(only saving ['href','src'] attr) -def _remove_all_attrs_except_saving(soup): - whitelist = ["a", "br"] - for tag in soup.find_all(True): - if tag.name not in whitelist: - tag.attrs = {} - else: - attrs = dict(tag.attrs) - for attr in attrs: - if attr not in ["target", "href"]: - del tag.attrs[attr] - return soup - - -def _unwrap_all_except(soup, whitelist): - for tag in soup.find_all(True): - if tag.name not in whitelist: - tag.unwrap() - return str(soup) - - -def _extract_metadata_url(soup, base_url): - url = None - for tag in soup.find_all("a"): - if "href" in tag.attrs and base_url in tag["href"]: - url = tag["href"] - return url - - -def _fetch_update_frequency(full_metadata_url): - update_frequency = "unknown" - try: - response = requests.get(full_metadata_url) - soup = BeautifulSoup(response.content, "html.parser") - - for tag in soup( - "script", attrs={"id": "tpx_ExternalView_Frequency_of_Updates"} - ): - tag_text = tag.get_text() - if "deemed" in tag_text: - update_frequency = "asNeeded" - break - elif "week " in tag_text: - update_frequency = "weekly" - break - elif "twice" in tag_text: - update_frequency = "biannually" - break - elif "year" in tag_text: - update_frequency = "annually" - break - elif "month" in tag_text: - update_frequency = "monthly" - break - elif "quarter" in tag_text: - update_frequency = "quarterly" - break - except Exception as e: - print("An error occured: %s" % str(e)) - - return update_frequency diff --git a/ckanext/datavic_harvester/harvesters/dcat_json.py b/ckanext/datavic_harvester/harvesters/dcat_json.py index cc7a88c..1844b01 100644 --- a/ckanext/datavic_harvester/harvesters/dcat_json.py +++ b/ckanext/datavic_harvester/harvesters/dcat_json.py @@ -1,5 +1,8 @@ +from __future__ import annotations + import json import logging +from typing import Optional from bs4 import BeautifulSoup @@ -10,7 +13,7 @@ from ckanext.dcat.harvesters._json import DCATJSONHarvester from ckanext.harvest.model import HarvestSource -from ckanext.datavic_harvester import bs4_helpers, helpers +from ckanext.datavic_harvester import helpers log = logging.getLogger(__name__) @@ -109,15 +112,15 @@ def set_description_and_extract(self, package_dict, soup): package_dict["notes"] = "No description has been entered for this dataset." package_dict["extract"] = "No abstract has been entered for this dataset." else: - package_dict["notes"] = bs4_helpers._unwrap_all_except( - bs4_helpers._remove_all_attrs_except_saving(soup), - # allowed tags - ["a", "br"], + allowed_tags: list[str] = ["a", "br"] + package_dict["notes"] = helpers.unwrap_all_except( + helpers.remove_all_attrs_except_for(soup, allowed_tags), + allowed_tags, ) package_dict["extract"] = self.generate_extract(soup) def set_full_metadata_url_and_update_frequency( - self, harvest_config, package_dict, soup + self, harvest_config, package_dict, soup: BeautifulSoup ): """ Try and extract the full metadata URL from the dataset description and then the update frequency from the @@ -142,15 +145,17 @@ def set_full_metadata_url_and_update_frequency( # Try and extract a full metadata url from the description based on # a pattern defined in the harvest source config if "full_metadata_url_pattern" in harvest_config: - desc_full_metadata_url = bs4_helpers._extract_metadata_url( + desciption_full_metadata_url: Optional[ + str + ] = helpers.extract_metadata_url( soup, harvest_config["full_metadata_url_pattern"] ) - if desc_full_metadata_url: - full_metadata_url = desc_full_metadata_url + if desciption_full_metadata_url: + full_metadata_url = desciption_full_metadata_url # Attempt to extract the update frequency from the full metadata page - package_dict[ - "update_frequency" - ] = bs4_helpers._fetch_update_frequency(full_metadata_url) + package_dict["update_frequency"] = helpers.fetch_update_frequency( + full_metadata_url + ) if full_metadata_url: package_dict["full_metadata_url"] = full_metadata_url @@ -227,8 +232,10 @@ def set_required_fields_defaults(self, harvest_config, dcat_dict, package_dict): if extra["key"] == "date_created_data_asset" ] if issued and not date_created_data_asset: - package_dict["date_created_data_asset"] = helpers.convert_date_to_isoformat( - issued + package_dict[ + "date_created_data_asset" + ] = helpers.convert_date_str_to_isoformat( + issued, "issued", package_dict["title"] ) modified = dcat_dict.get("modified") @@ -241,7 +248,9 @@ def set_required_fields_defaults(self, harvest_config, dcat_dict, package_dict): if modified and not date_modified_data_asset: package_dict[ "date_modified_data_asset" - ] = helpers.convert_date_to_isoformat(modified) + ] = helpers.convert_date_str_to_isoformat( + modified, "modified", package_dict["title"] + ) landing_page = dcat_dict.get("landingPage") full_metadata_url = [ @@ -287,7 +296,7 @@ def _get_package_dict(self, harvest_object): except Exception: harvest_config = None - soup = BeautifulSoup(package_dict["notes"], "html.parser") + soup: BeautifulSoup = BeautifulSoup(package_dict["notes"], "html.parser") self.set_description_and_extract(package_dict, soup) diff --git a/ckanext/datavic_harvester/harvesters/delwp.py b/ckanext/datavic_harvester/harvesters/delwp.py index 03f0de7..fdd9664 100644 --- a/ckanext/datavic_harvester/harvesters/delwp.py +++ b/ckanext/datavic_harvester/harvesters/delwp.py @@ -15,20 +15,14 @@ from ckanext.harvest.model import HarvestObject, HarvestObjectExtra from ckanext.datavicmain import helpers +from ckanext.datavic_harvester.helpers import ( + convert_date_str_to_isoformat, + get_from_to, + munge_title_to_name, +) -log = logging.getLogger(__name__) - - -def _get_from_to(page, datasets_per_page): - # if ... else expanded for readability - if page == 1: - _from = 1 - _to = page * datasets_per_page - else: - _from = ((page - 1) * datasets_per_page) + 1 - _to = page * datasets_per_page - return _from, _to +log = logging.getLogger(__name__) def get_tags(value): @@ -43,30 +37,6 @@ def get_tags(value): return tags -def convert_date_to_isoformat(value, key, dataset_name): - """ - Example dates: - '2020-10-13t05:00:11' - u'2006-12-31t13:00:00.000z' - :param value: - :return: - """ - date = None - try: - # Remove any timezone with time - value = value.lower().split("t")[0] - date = tk.get_converter("isodate")(value, {}) - except Exception as ex: - log.debug( - "{0}: Date format incorrect {1} for key {2}".format( - dataset_name, value, key - ) - ) - log.debug(ex) - # TODO: Do we return None or value if date string cannot be converted? - return date.isoformat() if date else None - - def get_datavic_update_frequencies(): return helpers.field_choices("update_frequency") @@ -81,24 +51,6 @@ def map_update_frequency(datavic_update_frequencies, value): return "unknown" -def munge_title_to_name(name): - """Munge a package title into a package name. - Copied from vicmaps-harvest.py to use the same code to create name from title - This is required to match existing pacakge names - """ - # convert spaces and separators - name = re.sub("[ .:/,]", "-", name) - # take out not-allowed characters - name = re.sub("[^a-zA-Z0-9-_]", "", name).lower() - # remove doubles - name = re.sub("---", "-", name) - name = re.sub("--", "-", name) - name = re.sub("--", "-", name) - # remove leading or trailing hyphens - name = name.strip("-")[:99] - return name - - def _get_organisation(organisation_mapping, resowner, harvest_object, context): org_name = next( ( @@ -128,9 +80,7 @@ def _get_organisation(organisation_mapping, resowner, harvest_object, context): "include_tags": False, "include_followers": False, } - organisation = tk.get_action("organization_show")( - context.copy(), data_dict - ) + organisation = tk.get_action("organization_show")(context.copy(), data_dict) org_id = organisation.get("id") except tk.ObjectNotFound: log.warning( @@ -338,7 +288,7 @@ def validate_config(self, config): def _get_page_of_records( self, url, dataset_type, api_auth, page, datasets_per_page=100 ): - _from, _to = _get_from_to(page, datasets_per_page) + _from, _to = get_from_to(page, datasets_per_page) records = None try: request_url = "{0}?dataset={1}&start={2}&rows={3}&format=json".format( @@ -477,14 +427,14 @@ def _get_package_dict(self, harvest_object, context): # date provided seems to be a bit of a mess , e.g. '2013-03-31t13:00:00.000z' # might need to run some regex on this # temp_extent_begin = metashare_dict.get('tempextentbegin', None) - date_created_data_asset = convert_date_to_isoformat( - metashare_dict.get("publicationdate", ""), + date_created_data_asset = convert_date_str_to_isoformat( + metashare_dict.get("publicationdate"), "publicationdate", metashare_dict.get("name"), ) if not date_created_data_asset: - date_created_data_asset = convert_date_to_isoformat( - metashare_dict.get("geonet_info_createdate", ""), + date_created_data_asset = convert_date_str_to_isoformat( + metashare_dict.get("geonet_info_createdate"), "geonet_info_createdate", metashare_dict.get("name"), ) @@ -492,14 +442,14 @@ def _get_package_dict(self, harvest_object, context): # @TODO: Examples can be "2012-03-27" - do we need to convert this to UTC before inserting? # is a question for SDM - i.e. are their dates in UTC or Vic/Melb time? - date_modified_data_asset = convert_date_to_isoformat( - metashare_dict.get("revisiondate", ""), + date_modified_data_asset = convert_date_str_to_isoformat( + metashare_dict.get("revisiondate"), "revisiondate", metashare_dict.get("name"), ) if not date_modified_data_asset: - date_modified_data_asset = convert_date_to_isoformat( - metashare_dict.get("geonet_info_changedate", ""), + date_modified_data_asset = convert_date_str_to_isoformat( + metashare_dict.get("geonet_info_changedate"), "geonet_info_changedate", metashare_dict.get("name"), ) @@ -525,13 +475,13 @@ def _get_package_dict(self, harvest_object, context): "name": metashare_dict.get("alttitle") or metashare_dict.get("title"), "format": format, - "period_start": convert_date_to_isoformat( - metashare_dict.get("tempextentbegin", ""), + "period_start": convert_date_str_to_isoformat( + metashare_dict.get("tempextentbegin"), "tempextentbegin", metashare_dict.get("name"), ), - "period_end": convert_date_to_isoformat( - metashare_dict.get("tempextentend", ""), + "period_end": convert_date_str_to_isoformat( + metashare_dict.get("tempextentend"), "tempextentend", metashare_dict.get("name"), ), diff --git a/ckanext/datavic_harvester/harvesters/metashare.py b/ckanext/datavic_harvester/harvesters/metashare.py index c8e3470..6c5ee4d 100644 --- a/ckanext/datavic_harvester/harvesters/metashare.py +++ b/ckanext/datavic_harvester/harvesters/metashare.py @@ -2,7 +2,6 @@ import logging import traceback import uuid -import re import requests @@ -14,20 +13,10 @@ from ckanext.harvest.model import HarvestObject, HarvestObjectExtra from ckanext.datavicmain import helpers +from ckanext.datavic_harvester.helpers import convert_date_str_to_isoformat, get_from_to -log = logging.getLogger(__name__) - - -def _get_from_to(page, datasets_per_page): - # if ... else expanded for readability - if page == 1: - _from = 1 - _to = page * datasets_per_page - else: - _from = ((page - 1) * datasets_per_page) + 1 - _to = page * datasets_per_page - return _from, _to +log = logging.getLogger(__name__) def get_tags(value): @@ -41,27 +30,6 @@ def get_tags(value): return tags -def convert_date_to_isoformat(value): - """ - Example dates: - '2020-10-13t05:00:11' - u'2006-12-31t13:00:00.000z' - :param value: - :return: - """ - date = None - try: - # Remove any microseconds - value = value.split(".")[0] - if "t" in value: - date = tk.get_converter("isodate")(value, {}) - except Exception as ex: - log.debug("Date format incorrect {0}".format(value)) - log.debug(ex) - # TODO: Do we return None or value if date string cannot be converted? - return date.isoformat() if date else None - - def get_datavic_update_frequencies(): return helpers.field_choices("update_frequency") @@ -76,24 +44,6 @@ def map_update_frequency(datavic_update_frequencies, value): return "unknown" -def munge_title_to_name(name): - """Munge a package title into a package name. - Copied from vicmaps-harvest.py to use the same code to create name from title - This is required to match existing pacakge names - """ - # convert spaces and separators - name = re.sub("[ .:/,]", "-", name) - # take out not-allowed characters - name = re.sub("[^a-zA-Z0-9-_]", "", name).lower() - # remove doubles - name = re.sub("---", "-", name) - name = re.sub("--", "-", name) - name = re.sub("--", "-", name) - # remove leading or trailing hyphens - name = name.strip("-")[:99] - return name - - class MetaShareHarvester(HarvesterBase): config = None @@ -221,7 +171,7 @@ def validate_config(self, config): return config def _get_page_of_records(self, url, page, datasets_per_page=100): - _from, _to = _get_from_to(page, datasets_per_page) + _from, _to = get_from_to(page, datasets_per_page) records = None try: request_url = "{0}?from={1}&to={2}&_content_type=json&fast=index".format( @@ -348,24 +298,16 @@ def _get_package_dict(self, harvest_object): if category: package_dict["category"] = category.get("id") - # @TODO: Default to UTC now if not available... OR try and get it from somewhere else in the record - # date provided seems to be a bit of a mess , e.g. '2013-03-31t13:00:00.000z' - # might need to run some regex on this - temp_extent_begin = metashare_dict.get("tempExtentBegin", None) - if temp_extent_begin: - package_dict["date_created_data_asset"] = convert_date_to_isoformat( - temp_extent_begin - ) - else: - print( - "WHAT DO WE DO HERE? tempExtentBegin does not exist for {}".format(uuid) - ) - - # @TODO: Examples can be "2012-03-27" - do we need to convert this to UTC before inserting? - # is a question for SDM - i.e. are their dates in UTC or Vic/Melb time? + package_dict["date_created_data_asset"] = convert_date_str_to_isoformat( + metashare_dict.get("tempExtentBegin"), + "tempExtentBegin", + package_dict["title"], + ) - package_dict["date_modified_data_asset"] = convert_date_to_isoformat( - metashare_dict.get("revisionDate", None) + package_dict["date_modified_data_asset"] = convert_date_str_to_isoformat( + metashare_dict.get("revisionDate"), + "revisionDate", + package_dict["title"], ) package_dict["update_frequency"] = map_update_frequency( @@ -380,11 +322,15 @@ def _get_package_dict(self, harvest_object): resource = { "name": metashare_dict.get("altTitle") or metashare_dict.get("title"), "format": metashare_dict.get("spatialRepresentationType_text", None), - "period_start": convert_date_to_isoformat( - metashare_dict.get("tempExtentBegin", None) + "period_start": convert_date_str_to_isoformat( + metashare_dict.get("tempExtentBegin"), + "tempExtentBegin", + metashare_dict.get("altTitle") or metashare_dict.get("title"), ), - "period_end": convert_date_to_isoformat( - metashare_dict.get("tempExtentEnd", None) + "period_end": convert_date_str_to_isoformat( + metashare_dict.get("tempExtentEnd"), + "tempExtentEnd", + metashare_dict.get("altTitle") or metashare_dict.get("title"), ), "url": resource_url, } @@ -559,9 +505,7 @@ def import_stage(self, harvest_object): if status == "delete": # Delete package - tk.get_action("package_delete")( - context, {"id": harvest_object.package_id} - ) + tk.get_action("package_delete")(context, {"id": harvest_object.package_id}) log.info( "Deleted package {0} with guid {1}".format( harvest_object.package_id, harvest_object.guid diff --git a/ckanext/datavic_harvester/helpers.py b/ckanext/datavic_harvester/helpers.py index 68912de..4fa05b7 100644 --- a/ckanext/datavic_harvester/helpers.py +++ b/ckanext/datavic_harvester/helpers.py @@ -1,4 +1,11 @@ +from __future__ import annotations + +import re import logging +from typing import Optional + +import requests +from bs4 import BeautifulSoup import ckan.plugins.toolkit as tk @@ -6,21 +13,164 @@ log = logging.getLogger(__name__) -def convert_date_to_isoformat(value): +def remove_all_attrs_except_for( + soup: BeautifulSoup, allowed_tags: list[str] = ["a", "br"] +) -> BeautifulSoup: + """Remove all attributes from tags inside soup except for the listed ones + Leave only "target" and "href" attributes for allowed ones. + + Args: + soup (BeautifulSoup): Instance of BeautifulSoup + allowed_tags (list[str], optional): list of allowed tags. Defaults to ["a", "br"]. + + Returns: + BeautifulSoup: Instance of BeautifulSoup """ - Example dates: - '2020-10-13t05:00:11' - u'2006-12-31t13:00:00.000z' - :param value: - :return: + + for tag in soup.find_all(True): + if tag.name not in allowed_tags: + tag.attrs = {} + else: + attrs = dict(tag.attrs) + for attr in attrs: + if attr not in ["target", "href"]: + del tag.attrs[attr] + return soup + + +def unwrap_all_except( + soup: BeautifulSoup, allowed_tags: list[str] = ["a", "br"] +) -> str: + """Removes all tags from soup obj except for allowed ones + + Args: + soup (BeautifulSoup): Instance of BeautifulSoup + allowed_tags (list[str], optional): list of allowed tags. Defaults to ["a", "br"]. + + Returns: + str: stringified version of BeautifulSoup instance + """ + for tag in soup.find_all(True): + if tag.name not in allowed_tags: + tag.unwrap() + + return str(soup) + + +def extract_metadata_url(soup: BeautifulSoup, base_url: str) -> Optional[str]: + """Extract a metadata URL from a soup obj + + Args: + soup (BeautifulSoup): Instance of BeautifulSoup + base_url (str): full metadata url pattern + + Returns: + str: metadata URL + """ + + for tag in soup.find_all("a"): + if "href" in tag.attrs and base_url in tag["href"]: + return tag["href"] + + +def fetch_update_frequency(full_metadata_url: str) -> str: + """Fetch an update_frequency from full_metadata_url + + Args: + full_metadata_url (str): full metadata URL + + Returns: + str: update_frequency value + """ + + update_frequency: str = "unknown" + + try: + response: requests.Response = requests.get(full_metadata_url) + except requests.RequestException as e: + log.error(f"Request error occured during fetching update_frequency: {e}") + return update_frequency + + soup: BeautifulSoup = BeautifulSoup(response.content, "html.parser") + + frequency_mapping: dict[str, str] = { + "deemed": "asNeeded", + "week": "weekly", + "twice": "biannually", + "year": "annually", + "month": "monthly", + "quarter": "quarterly", + } + + for tag in soup("script", attrs={"id": "tpx_ExternalView_Frequency_of_Updates"}): + tag_text: str = tag.get_text() + + for k, v in frequency_mapping.items(): + if k in tag_text: + return v + + return update_frequency + + +def convert_date_str_to_isoformat( + value: str, key: str, dataset_name: str, with_tz=False +) -> Optional[str]: + """Convert a date string to isoformat + + Args: + value (str): date + key (str): metadata field key + dataset_name (str): dataset name + + Returns: + Optional[str]: isoformat date """ date = None + + if not value: + return log.debug(f"{dataset_name}: Missing date for key {key}") + + value = value.lower().split("t")[0] if with_tz else value.split(".")[0] + try: - # Remove any microseconds - value = value.split(".")[0] - if "t" in value.lower(): - date = tk.get_converter("isodate")(value, {}) - except tk.Invalid as ex: - log.debug("Date format incorrect {0}".format(value)) - # TODO: Do we return None or value if date string cannot be converted? + date = tk.get_converter("isodate")(value, {}) + except tk.Invalid: + return log.debug(f"{dataset_name}: date format incorrect {value} for key {key}") + return date.isoformat() if date else None + + +def get_from_to(page: int, datasets_per_page: int) -> tuple[int, int]: + """Calculate offset to make request with pagination by N records + + Args: + page (int): page number + datasets_per_page (int): limit of datasets per pae + + Returns: + tuple[int, int]: start and end + """ + + if page == 1: + _from: int = 1 + _to: int = page * datasets_per_page + else: + _from: int = ((page - 1) * datasets_per_page) + 1 + _to: int = page * datasets_per_page + + return _from, _to + + +def munge_title_to_name(package_title: str) -> str: + """Munge a package title into a package name + + Args: + package_title (str): package_title + + Returns: + str: package name + """ + name = re.sub("[ .:/,]", "-", package_title) + name = re.sub("[^a-zA-Z0-9-_]", "", name).lower() + name = re.sub("[-]+", "-", name) + return name.strip("-")[:99] From 98b99709e8c4cd9ed4b4d7cdc12fa22a17486ec9 Mon Sep 17 00:00:00 2001 From: mutantsan Date: Thu, 19 Jan 2023 16:54:57 +0200 Subject: [PATCH 12/21] SXDEDPCXZIC-90_DATAVIC-470 / replace % and format string interpolation --- .../harvesters/datavic_ckan.py | 39 +++++++------------ .../datavic_harvester/harvesters/dcat_json.py | 6 +-- ckanext/datavic_harvester/harvesters/delwp.py | 30 ++++++-------- .../datavic_harvester/harvesters/metashare.py | 28 +++++-------- 4 files changed, 36 insertions(+), 67 deletions(-) diff --git a/ckanext/datavic_harvester/harvesters/datavic_ckan.py b/ckanext/datavic_harvester/harvesters/datavic_ckan.py index c39d170..5b68a36 100644 --- a/ckanext/datavic_harvester/harvesters/datavic_ckan.py +++ b/ckanext/datavic_harvester/harvesters/datavic_ckan.py @@ -46,7 +46,7 @@ def import_stage(self, harvest_object): if harvest_object.content is None: self._save_object_error( - "Empty content for object %s" % harvest_object.id, + f"Empty content for object {harvest_object.id}", harvest_object, "Import", ) @@ -64,8 +64,8 @@ def import_stage(self, harvest_object): except (tk.ObjectNotFound) as e: local_dataset = {} log.info( - "-- Package ID %s (%s) does not exist locally" - % (package_dict["id"], package_dict["name"]) + "-- Package ID %s (%s) does not exist locally", + package_dict["id"], package_dict["name"] ) ignore_private = tk.asbool( @@ -392,15 +392,14 @@ def get_extra(key, package_dict): return result - except (tk.ValidationError) as e: + except tk.ValidationError as e: self._save_object_error( - "Invalid package with GUID %s: %r" - % (harvest_object.guid, e.error_dict), + f"Invalid package with GUID {harvest_object.guid}: {e.error_dict}", harvest_object, "Import", ) - except (Exception) as e: - self._save_object_error("%s" % e, harvest_object, "Import") + except Exception as e: + self._save_object_error(str(e), harvest_object, "Import") def copy_remote_file_to_filestore(self, resource_id, resource_url, apikey=None): try: @@ -424,23 +423,15 @@ def copy_remote_file_to_filestore(self, resource_id, resource_url, apikey=None): headers["Authorization"] = apikey r = requests.get(resource_url, headers=headers) open(full_path, "wb").write(r.content) - log.info( - "Downloaded resource {0} to {1}".format(resource_url, full_path) - ) + log.info(f"Downloaded resource {resource_url} to {full_path}") else: - log.error( - "Directory for local resource {0} does not exist".format(sub_dir) - ) + log.error(f"Directory for local resource {sub_dir} does not exist") # Return the actual filename of the remote resource return resource_url.split("/")[-1] except Exception as e: - log.error( - "Error copying remote file {0} to local {1}".format( - resource_url, full_path - ) - ) - log.error("Exception: {0}".format(e)) + log.error(f"Error copying remote file {resource_url} to local {full_path}") + log.error(f"Exception: {e}") return None def resource_directory_exists(self, parent_dir, sub_dir): @@ -453,7 +444,7 @@ def resource_directory_exists(self, parent_dir, sub_dir): self.create_resource_directory(sub_dir) return True except Exception as e: - log.error("`resource_directory_exists` Exception: {0}".format(e)) + log.error(f"`resource_directory_exists` Exception: {e}") return False def create_resource_directory(self, directory): @@ -462,11 +453,9 @@ def create_resource_directory(self, directory): return True except Exception as e: log.error( - "`create_resource_directory` Error creating directory: {0}".format( - directory - ) + f"`create_resource_directory` Error creating directory: {directory}" ) - log.error("`create_resource_directory` Exception: {0}".format(e)) + log.error(f"`create_resource_directory` Exception: {e}") return False def get_paths_from_resource_id(self, resource_id): diff --git a/ckanext/datavic_harvester/harvesters/dcat_json.py b/ckanext/datavic_harvester/harvesters/dcat_json.py index 1844b01..c21f6c0 100644 --- a/ckanext/datavic_harvester/harvesters/dcat_json.py +++ b/ckanext/datavic_harvester/harvesters/dcat_json.py @@ -103,7 +103,7 @@ def generate_extract(self, soup): index = notes.index(".") notes = notes[: index + 1] except Exception as ex: - log.error("Generate extract error for: {0}".format(str(soup))) + log.error(f"Generate extract error for: {soup}") log.error(str(ex)) return notes @@ -326,8 +326,6 @@ def _get_existing_dataset(self, guid): if not datasets: return None elif len(datasets) > 1: - log.error( - "Found more than one dataset with the same guid: {0}".format(guid) - ) + log.error(f"Found more than one dataset with the same guid: {guid}") context = {"user": self._get_user_name(), "ignore_auth": True} return tk.get_action("package_show")(context, {"id": datasets[0][0]}) diff --git a/ckanext/datavic_harvester/harvesters/delwp.py b/ckanext/datavic_harvester/harvesters/delwp.py index fdd9664..7d2a19a 100644 --- a/ckanext/datavic_harvester/harvesters/delwp.py +++ b/ckanext/datavic_harvester/harvesters/delwp.py @@ -291,10 +291,11 @@ def _get_page_of_records( _from, _to = get_from_to(page, datasets_per_page) records = None try: - request_url = "{0}?dataset={1}&start={2}&rows={3}&format=json".format( - url, dataset_type, _from, _to + request_url = ( + f"{url}?dataset={dataset_type}&start={_from}&rows={_to}&format=json" ) - log.debug("Getting page of records {}".format(request_url)) + log.debug(f"Getting page of records {request_url}") + r = requests.get(request_url, headers={"Authorization": api_auth}) if r.status_code == 200: @@ -320,7 +321,7 @@ def _get_guids_and_datasets(self, datasets): if isinstance(datasets, dict): datasets = [datasets] else: - log.debug("Datasets data is not a list: {}".format(type(datasets))) + log.debug(f"Datasets data is not a list: {type(datasets)}") raise ValueError("Wrong JSON object") for dataset in datasets: @@ -352,9 +353,7 @@ def _get_package_dict(self, harvest_object, context): else "" ) resource_url_prefix = self.config.get("resource_url_prefix", None) - resource_url = ( - "{0}{1}".format(resource_url_prefix, uuid) if resource_url_prefix else "" - ) + resource_url = f"{resource_url_prefix}{uuid}" if resource_url_prefix else "" # Set the package_dict package_dict = {} @@ -396,7 +395,7 @@ def _get_package_dict(self, harvest_object, context): ) # TODO: Remove extras to package_dict - package_dict["extract"] = "{}...".format(package_dict["notes"].split(".")[0]) + package_dict["extract"] = f"{package_dict['notes'].split('.')[0]}..." # There is no field in Data.Vic schema to store the source UUID of the harvested record # Therefore, we are using the `primary_purpose_of_collection` field @@ -600,9 +599,6 @@ def gather_stage(self, harvest_job): # BEGIN: This section is copied from ckanext/dcat/harvesters/_json.py # for guid, as_string in self._get_guids_and_datasets(records): - # Only add back for debugging as it pollutes the logs with 1700+ guids - # log.debug('Got identifier: {0}' - # .format(guid.encode('utf8'))) batch_guids.append(guid) if guid not in previous_guids: @@ -706,16 +702,14 @@ def import_stage(self, harvest_object): context.copy(), {"id": harvest_object.package_id} ) log.info( - "Deleted package {0} with guid {1}".format( - harvest_object.package_id, harvest_object.guid - ) + f"Deleted package {harvest_object.package_id} with guid {harvest_object.guid}" ) return True if harvest_object.content is None: self._save_object_error( - "Empty content for object %s" % harvest_object.id, + f"Empty content for object {harvest_object.id}", harvest_object, "Import", ) @@ -723,7 +717,7 @@ def import_stage(self, harvest_object): if harvest_object.guid is None: self._save_object_error( - "Empty guid for object %s" % harvest_object.id, harvest_object, "Import" + f"Empty guid for object {harvest_object.id}", harvest_object, "Import" ) return False @@ -789,12 +783,10 @@ def import_stage(self, harvest_object): log.info("%s dataset with id %s", message_status, package_id) except Exception as e: - # dataset = json.loads(harvest_object.content) dataset_name = package_dict.get("name", "") self._save_object_error( - "Error importing dataset %s: %r / %s" - % (dataset_name, e, traceback.format_exc()), + f"Error importing dataset {dataset_name}: {e} / {traceback.format_exc()}", harvest_object, "Import", ) diff --git a/ckanext/datavic_harvester/harvesters/metashare.py b/ckanext/datavic_harvester/harvesters/metashare.py index 6c5ee4d..e8fd71c 100644 --- a/ckanext/datavic_harvester/harvesters/metashare.py +++ b/ckanext/datavic_harvester/harvesters/metashare.py @@ -174,10 +174,8 @@ def _get_page_of_records(self, url, page, datasets_per_page=100): _from, _to = get_from_to(page, datasets_per_page) records = None try: - request_url = "{0}?from={1}&to={2}&_content_type=json&fast=index".format( - url, _from, _to - ) - log.debug("Getting page of records {}".format(request_url)) + request_url = f"{url}?from={_from}&to={_to}&_content_type=json&fast=index" + log.debug(f"Getting page of records {request_url}") r = requests.get(request_url) if r.status_code == 200: @@ -204,7 +202,7 @@ def _get_guids_and_datasets(self, datasets): if isinstance(datasets, dict): datasets = [datasets] else: - log.debug("Datasets data is not a list: {}".format(type(datasets))) + log.debug(f"Datasets data is not a list: {type(datasets)}") raise ValueError("Wrong JSON object") for dataset in datasets: @@ -237,9 +235,7 @@ def _get_package_dict(self, harvest_object): else "" ) resource_url_prefix = self.config.get("resource_url_prefix", None) - resource_url = ( - "{0}{1}".format(resource_url_prefix, uuid) if resource_url_prefix else "" - ) + resource_url = f"{resource_url_prefix}{uuid}" if resource_url_prefix else "" package_dict = {} @@ -271,7 +267,7 @@ def _get_package_dict(self, harvest_object): if topic_cat: package_dict["tags"] = get_tags(topic_cat) - package_dict["extract"] = "{}...".format(package_dict["notes"].split(b".")[0]) + package_dict["extract"] = f"{package_dict['notes'].split(b'.')[0]}..." # There is no field in Data.Vic schema to store the source UUID of the harvested record # Therefore, we are using the `primary_purpose_of_collection` field @@ -402,9 +398,6 @@ def gather_stage(self, harvest_job): # BEGIN: This section is copied from ckanext/dcat/harvesters/_json.py # for guid, as_string in self._get_guids_and_datasets(records): - # Only add back for debugging as it pollutes the logs with 1700+ guids - # log.debug('Got identifier: {0}' - # .format(guid.encode('utf8'))) batch_guids.append(guid) if guid not in previous_guids: @@ -507,16 +500,14 @@ def import_stage(self, harvest_object): tk.get_action("package_delete")(context, {"id": harvest_object.package_id}) log.info( - "Deleted package {0} with guid {1}".format( - harvest_object.package_id, harvest_object.guid - ) + f"Deleted package {harvest_object.package_id} with guid {harvest_object.guid}" ) return True if harvest_object.content is None: self._save_object_error( - "Empty content for object %s" % harvest_object.id, + f"Empty content for object {harvest_object.id}", harvest_object, "Import", ) @@ -524,7 +515,7 @@ def import_stage(self, harvest_object): if harvest_object.guid is None: self._save_object_error( - "Empty guid for object %s" % harvest_object.id, harvest_object, "Import" + f"Empty guid for object {harvest_object.id}", harvest_object, "Import" ) return False @@ -593,8 +584,7 @@ def import_stage(self, harvest_object): dataset_name = package_dict.get("name", "") self._save_object_error( - "Error importing dataset %s: %r / %s" - % (dataset_name, e, traceback.format_exc()), + f"Error importing dataset {dataset_name}: {e} / {traceback.format_exc()}", harvest_object, "Import", ) From 562c47b2250badc8fbc9ca5f493ecd26ea50aae9 Mon Sep 17 00:00:00 2001 From: mutantsan Date: Mon, 23 Jan 2023 15:37:56 +0200 Subject: [PATCH 13/21] SXDEDPCXZIC-90_DATAVIC-470 / commit last changes to datavic_ckan and metashare harvesters --- .../harvesters/datavic_ckan.py | 12 +- .../datavic_harvester/harvesters/metashare.py | 259 +++++------------- 2 files changed, 72 insertions(+), 199 deletions(-) diff --git a/ckanext/datavic_harvester/harvesters/datavic_ckan.py b/ckanext/datavic_harvester/harvesters/datavic_ckan.py index 5b68a36..a97350c 100644 --- a/ckanext/datavic_harvester/harvesters/datavic_ckan.py +++ b/ckanext/datavic_harvester/harvesters/datavic_ckan.py @@ -19,11 +19,6 @@ class DataVicCKANHarvester(CKANHarvester): A Harvester for CKAN Data.Vic instances """ - config = None - - api_version = 2 - action_api_version = 3 - def info(self): return { "name": "datavic_ckan_harvester", @@ -65,7 +60,8 @@ def import_stage(self, harvest_object): local_dataset = {} log.info( "-- Package ID %s (%s) does not exist locally", - package_dict["id"], package_dict["name"] + package_dict["id"], + package_dict["name"], ) ignore_private = tk.asbool( @@ -404,10 +400,10 @@ def get_extra(key, package_dict): def copy_remote_file_to_filestore(self, resource_id, resource_url, apikey=None): try: ( - resources_path, + _, parent_dir, sub_dir, - filename, + _, full_path, ) = self.get_paths_from_resource_id(resource_id) diff --git a/ckanext/datavic_harvester/harvesters/metashare.py b/ckanext/datavic_harvester/harvesters/metashare.py index e8fd71c..186cbfc 100644 --- a/ckanext/datavic_harvester/harvesters/metashare.py +++ b/ckanext/datavic_harvester/harvesters/metashare.py @@ -1,191 +1,55 @@ +from __future__ import annotations + import json import logging import traceback import uuid +from typing import Optional, Any -import requests - -from ckan import logic from ckan import model from ckan.plugins import toolkit as tk +from ckan.logic.schema import default_create_package_schema -from ckanext.harvest.harvesters import HarvesterBase from ckanext.harvest.model import HarvestObject, HarvestObjectExtra from ckanext.datavicmain import helpers -from ckanext.datavic_harvester.helpers import convert_date_str_to_isoformat, get_from_to +from ckanext.datavic_harvester.harvesters.base import DataVicBaseHarvester +from ckanext.datavic_harvester.helpers import convert_date_to_isoformat, get_from_to log = logging.getLogger(__name__) -def get_tags(value): - tags = [] - if isinstance(value, list): - for tag in value: - tags.append({"name": tag}) - else: - tags.append({"name": value}) - - return tags - - -def get_datavic_update_frequencies(): - return helpers.field_choices("update_frequency") - - -def map_update_frequency(datavic_update_frequencies, value): - # Check if the value from SDM matches one of those, if so just return original value - for frequency in datavic_update_frequencies: - if frequency["label"].lower() == value.lower(): - return frequency["value"] - - # Otherwise return the default of 'unknown' - return "unknown" - - -class MetaShareHarvester(HarvesterBase): - - config = None - force_import = False - - # Copied from `ckanext/harvest/harvesters/ckanharvester.py` - def _set_config(self, config_str): - if config_str: - self.config = json.loads(config_str) - if "api_version" in self.config: - self.api_version = int(self.config["api_version"]) - - log.debug("Using config: %r", self.config) - else: - self.config = {} - - # Copied from `ckanext/dcat/harvesters/base.py` - def _get_object_extra(self, harvest_object, key): - """ - Helper function for retrieving the value from a harvest object extra, - given the key - """ - for extra in harvest_object.extras: - if extra.key == key: - return extra.value - return None - - # Copied from `ckanext/dcat/harvesters/base.py` - def _get_package_name(self, harvest_object, title): - - package = harvest_object.package - if package is None or package.title != title: - name = self._gen_new_name(title) - if not name: - raise Exception( - "Could not generate a unique name from the title or the " - "GUID. Please choose a more unique title." - ) - else: - name = package.name - - return name - +class MetaShareHarvester(DataVicBaseHarvester): def info(self): return { "name": "metashare", "title": "MetaShare Harvester", - "description": "Harvester for MetaShare dataset descriptions " - + "serialized as JSON", - } - - def validate_config(self, config): - """ - Harvesters can provide this method to validate the configuration - entered in the form. It should return a single string, which will be - stored in the database. Exceptions raised will be shown in the form's - error messages. - - Validates the default_group entered exists and creates default_group_dicts - - :param harvest_object_id: Config string coming from the form - :returns: A string with the validated configuration options - """ - if not config: - raise ValueError("No config options set") - { - "default_groups": ["spatial-data"], - "full_metadata_url_prefix": "https://metashare.maps.vic.gov.au/geonetwork/srv/api/records/{UUID}/formatters/sdm-html?root=html&output=html", - "resource_url_prefix": "https://datashare.maps.vic.gov.au/search?md=", - "resource_attribution": "Copyright (c) The State of Victoria, Department of Environment, Land, Water & Planning", - "license_id": "cc-by", + "description": "Harvester for MetaShare dataset descriptions serialized as JSON", } - try: - config_obj = json.loads(config) - - if "default_groups" in config_obj: - if not isinstance(config_obj["default_groups"], list): - raise ValueError( - "default_groups must be a *list* of group" " names/ids" - ) - if config_obj["default_groups"] and not isinstance( - config_obj["default_groups"][0], str - ): - raise ValueError( - "default_groups must be a list of group " - "names/ids (i.e. strings)" - ) - - # Check if default groups exist - context = {"model": model, "user": tk.g.user} - config_obj["default_group_dicts"] = [] - for group_name_or_id in config_obj["default_groups"]: - try: - group = tk.get_action("group_show")( - context, {"id": group_name_or_id} - ) - # save the dict to the config object, as we'll need it - # in the import_stage of every dataset - config_obj["default_group_dicts"].append(group) - except tk.ObjectNotFound: - raise ValueError("Default group not found") - config = json.dumps(config_obj) - else: - raise ValueError("default_groups must be set") - - if "full_metadata_url_prefix" not in config_obj: - raise ValueError("full_metadata_url_prefix must be set") - - if "{UUID}" not in config_obj.get("full_metadata_url_prefix", ""): - raise ValueError( - "full_metadata_url_prefix must have the {UUID} identifier in the URL" - ) - - if "resource_url_prefix" not in config_obj: - raise ValueError("resource_url_prefix must be set") - if "license_id" not in config_obj: - raise ValueError("license_id must be set") + def _get_page_of_records( + self, url: str, page: int, datasets_per_page: int = 100 + ) -> Optional[list[dict[str, Any]]]: + _from, _to = get_from_to(page, datasets_per_page) + records = None - if "resource_attribution" not in config_obj: - raise ValueError("resource_attribution must be set") - except ValueError as e: - raise e + request_url = f"{url}?from={_from}&to={_to}&_content_type=json&fast=index" + log.debug(f"Getting page of records {request_url}") - return config + resp_text: Optional[str] = self._make_request( + request_url, {"Authorization": api_auth} + ) - def _get_page_of_records(self, url, page, datasets_per_page=100): - _from, _to = get_from_to(page, datasets_per_page) - records = None - try: - request_url = f"{url}?from={_from}&to={_to}&_content_type=json&fast=index" - log.debug(f"Getting page of records {request_url}") - r = requests.get(request_url) + if not resp_text: + return records - if r.status_code == 200: - data = json.loads(r.text) + if r.status_code == 200: + data = json.loads(r.text) - # Records are contained in the "metadata" element of the response JSON - # see example: https://dev-metashare.maps.vic.gov.au/geonetwork/srv/en/q?from=1&to=1&_content_type=json&fast=index - records = data.get("metadata", None) - except Exception as e: - log.error(e) + # Records are contained in the "metadata" element of the response JSON + # see example: https://dev-metashare.maps.vic.gov.au/geonetwork/srv/en/q?from=1&to=1&_content_type=json&fast=index + records = data.get("metadata") return records @@ -210,8 +74,8 @@ def _get_guids_and_datasets(self, datasets): as_string = json.dumps(dataset) # Get identifier - geonet_info = dataset.get("geonet:info", None) - guid = geonet_info.get("uuid", None) + geonet_info = dataset.get("geonet:info") + guid = geonet_info.get("uuid") yield guid, as_string @@ -228,13 +92,13 @@ def _get_package_dict(self, harvest_object): uuid = harvest_object.guid - full_metadata_url_prefix = self.config.get("full_metadata_url_prefix", None) + full_metadata_url_prefix = self.config.get("full_metadata_url_prefix") full_metadata_url = ( full_metadata_url_prefix.format(**{"UUID": uuid}) if full_metadata_url_prefix else "" ) - resource_url_prefix = self.config.get("resource_url_prefix", None) + resource_url_prefix = self.config.get("resource_url_prefix") resource_url = f"{resource_url_prefix}{uuid}" if resource_url_prefix else "" package_dict = {} @@ -245,7 +109,7 @@ def _get_package_dict(self, harvest_object): package_dict["protective_marking"] = "official" package_dict["access"] = "yes" - package_dict["title"] = metashare_dict.get("title", None) + package_dict["title"] = metashare_dict.get("title") # 'xmlcharrefreplace' - replaces the character with an xml character package_dict["notes"] = metashare_dict.get("abstract", "").encode( @@ -253,7 +117,7 @@ def _get_package_dict(self, harvest_object): ) # Get organisation from the harvest source organisation dropdown - source_dict = logic.get_action("package_show")( + source_dict = tk.get_action("package_show")( {}, {"id": harvest_object.harvest_source_id} ) package_dict["owner_org"] = source_dict.get("owner_org") @@ -263,7 +127,7 @@ def _get_package_dict(self, harvest_object): # Tags / Keywords # `topicCat` can either be a single tag as a string or a list of tags - topic_cat = metashare_dict.get("topicCat", None) + topic_cat = metashare_dict.get("topicCat") if topic_cat: package_dict["tags"] = get_tags(topic_cat) @@ -279,13 +143,13 @@ def _get_package_dict(self, harvest_object): # The response from SDM was: # "We could either add Custodian to the Q Search results or just use resource owner. Given that it is # not publically displayed in DV, not sure it's worth the effort of adding the custodian" - res_owner = metashare_dict.get("resOwner", None) + res_owner = metashare_dict.get("resOwner") if res_owner: package_dict["data_owner"] = res_owner.split(";")[0] # Decision from discussion with Simon/DPC on 2020-10-13 is to assign all datasets to "Spatial Data" group # Data.Vic "category" field is equivalent to groups, but stored as an extra and only has 1 group - default_group_dicts = self.config.get("default_group_dicts", None) + default_group_dicts = self.config.get("default_group_dicts") if default_group_dicts and isinstance(default_group_dicts, list): package_dict["groups"] = [ {"id": group.get("id")} for group in default_group_dicts @@ -294,13 +158,13 @@ def _get_package_dict(self, harvest_object): if category: package_dict["category"] = category.get("id") - package_dict["date_created_data_asset"] = convert_date_str_to_isoformat( + package_dict["date_created_data_asset"] = convert_date_to_isoformat( metashare_dict.get("tempExtentBegin"), "tempExtentBegin", package_dict["title"], ) - package_dict["date_modified_data_asset"] = convert_date_str_to_isoformat( + package_dict["date_modified_data_asset"] = convert_date_to_isoformat( metashare_dict.get("revisionDate"), "revisionDate", package_dict["title"], @@ -317,13 +181,13 @@ def _get_package_dict(self, harvest_object): # Create a single resource for the dataset resource = { "name": metashare_dict.get("altTitle") or metashare_dict.get("title"), - "format": metashare_dict.get("spatialRepresentationType_text", None), - "period_start": convert_date_str_to_isoformat( + "format": metashare_dict.get("spatialRepresentationType_text"), + "period_start": convert_date_to_isoformat( metashare_dict.get("tempExtentBegin"), "tempExtentBegin", metashare_dict.get("altTitle") or metashare_dict.get("title"), ), - "period_end": convert_date_str_to_isoformat( + "period_end": convert_date_to_isoformat( metashare_dict.get("tempExtentEnd"), "tempExtentEnd", metashare_dict.get("altTitle") or metashare_dict.get("title"), @@ -331,7 +195,7 @@ def _get_package_dict(self, harvest_object): "url": resource_url, } - attribution = self.config.get("resource_attribution", None) + attribution = self.config.get("resource_attribution") if attribution: resource["attribution"] = attribution @@ -345,14 +209,8 @@ def _get_package_dict(self, harvest_object): return package_dict def gather_stage(self, harvest_job): - log.debug("In MetaShareHarvester gather_stage") - # - # BEGIN: This section is copied from ckanext/dcat/harvesters/_json.py - # @TODO: Move this into a separate function for readability - # (except the `ids = []` & `guids_in_source = []` lines) - # ids = [] # Get the previous guids for this source @@ -467,9 +325,6 @@ def gather_stage(self, harvest_job): # END: This section is copied from ckanext/dcat/harvesters/_json.py # - def fetch_stage(self, harvest_object): - return True - def import_stage(self, harvest_object): """ Mostly copied from `ckanext/dcat/harvesters/_json.py` @@ -482,10 +337,7 @@ def import_stage(self, harvest_object): log.error("No harvest object received") return False - if self.force_import: - status = "change" - else: - status = self._get_object_extra(harvest_object, "status") + status = self._get_object_extra(harvest_object, "status") context = { "user": self._get_user_name(), @@ -530,7 +382,7 @@ def import_stage(self, harvest_object): ) # Flag previous object as not current anymore - if previous_object and not self.force_import: + if previous_object: previous_object.current = False previous_object.add() @@ -550,7 +402,7 @@ def import_stage(self, harvest_object): try: if status == "new": - package_schema = logic.schema.default_create_package_schema() + package_schema = default_create_package_schema() context["schema"] = package_schema # We need to explicitly provide a package ID @@ -594,3 +446,28 @@ def import_stage(self, harvest_object): model.Session.commit() return True + + +def get_tags(value): + tags = [] + if isinstance(value, list): + for tag in value: + tags.append({"name": tag}) + else: + tags.append({"name": value}) + + return tags + + +def get_datavic_update_frequencies(): + return helpers.field_choices("update_frequency") + + +def map_update_frequency(datavic_update_frequencies, value): + # Check if the value from SDM matches one of those, if so just return original value + for frequency in datavic_update_frequencies: + if frequency["label"].lower() == value.lower(): + return frequency["value"] + + # Otherwise return the default of 'unknown' + return "unknown" From 42acc8c1c3929115279627593d0f76aa01111397 Mon Sep 17 00:00:00 2001 From: mutantsan Date: Mon, 23 Jan 2023 15:38:34 +0200 Subject: [PATCH 14/21] SXDEDPCXZIC-90_DATAVIC-470 / remove datavic_ckan and metashare harvesters, client is not using it --- .../harvesters/datavic_ckan.py | 468 ----------------- .../datavic_harvester/harvesters/metashare.py | 473 ------------------ 2 files changed, 941 deletions(-) delete mode 100644 ckanext/datavic_harvester/harvesters/datavic_ckan.py delete mode 100644 ckanext/datavic_harvester/harvesters/metashare.py diff --git a/ckanext/datavic_harvester/harvesters/datavic_ckan.py b/ckanext/datavic_harvester/harvesters/datavic_ckan.py deleted file mode 100644 index a97350c..0000000 --- a/ckanext/datavic_harvester/harvesters/datavic_ckan.py +++ /dev/null @@ -1,468 +0,0 @@ -import os -import logging - -import requests - -from ckan import model -from ckan.plugins import toolkit as tk -from ckan.lib.helpers import json -from ckan.lib.search.index import PackageSearchIndex - -from ckanext.harvest.harvesters.ckanharvester import CKANHarvester, RemoteResourceError - - -log = logging.getLogger(__name__) - - -class DataVicCKANHarvester(CKANHarvester): - """ - A Harvester for CKAN Data.Vic instances - """ - - def info(self): - return { - "name": "datavic_ckan_harvester", - "title": "CKAN Harvester for Data.Vic", - "description": "Harvests remote CKAN instances using the Data.Vic custom schema and performs some post-processing", - "form_config_interface": "Text", - } - - def import_stage(self, harvest_object): - log.debug("In DataVicCKANHarvester import_stage") - - base_context = { - "model": model, - "session": model.Session, - "user": self._get_user_name(), - } - if not harvest_object: - log.error("No harvest object received") - return False - - if harvest_object.content is None: - self._save_object_error( - f"Empty content for object {harvest_object.id}", - harvest_object, - "Import", - ) - return False - - self._set_config(harvest_object.job.source.config) - - try: - package_dict = json.loads(harvest_object.content) - - try: - local_dataset = tk.get_action("package_show")( - base_context.copy(), {"id": package_dict["id"]} - ) - except (tk.ObjectNotFound) as e: - local_dataset = {} - log.info( - "-- Package ID %s (%s) does not exist locally", - package_dict["id"], - package_dict["name"], - ) - - ignore_private = tk.asbool( - self.config.get("ignore_private_datasets", False) - ) - # DATAVIC-94 - Even if a dataset is marked Private we need to check if it exists locally in CKAN - # If it exists then it needs to be removed - if ignore_private and tk.asbool(package_dict["private"]) is True: - if local_dataset: - if not local_dataset["state"] == "deleted": - tk.get_action("package_delete")( - base_context.copy(), {"id": local_dataset["id"]} - ) - package_index = PackageSearchIndex() - package_index.remove_dict(local_dataset) - log.info( - "REMOVING now Private record: " - + package_dict["name"] - + " - ID: " - + package_dict["id"] - ) - # Return true regardless of if the local dataset is already deleted, because we need to avoid this - # dataset harvest object from being processed any further. - return True - else: - log.info( - "IGNORING Private record: " - + package_dict["name"] - + " - ID: " - + package_dict["id"] - ) - return True - - if package_dict.get("type") == "harvest": - log.warn("Remote dataset is a harvest source, ignoring...") - return True - - # Set default tags if needed - default_tags = self.config.get("default_tags", []) - if default_tags: - if not "tags" in package_dict: - package_dict["tags"] = [] - package_dict["tags"].extend( - [t for t in default_tags if t not in package_dict["tags"]] - ) - - remote_groups = self.config.get("remote_groups", None) - if not remote_groups in ("only_local", "create"): - # Ignore remote groups - package_dict.pop("groups", None) - else: - if not "groups" in package_dict: - package_dict["groups"] = [] - - # check if remote groups exist locally, otherwise remove - validated_groups = [] - - # Only process the first group that matches an existing group in CKAN - if len(package_dict["groups"]) > 1: - package_group_names = [x["name"] for x in package_dict["groups"]] - # Get all the groups in CKAN - ckan_groups = tk.get_action("group_list")(base_context.copy(), {}) - for group_name in package_group_names: - if group_name in ckan_groups: - package_dict["groups"] = [ - x - for x in package_dict["groups"] - if x["name"] == group_name - ] - break - - for group_ in package_dict["groups"]: - try: - try: - if "id" in group_: - data_dict = {"id": group_["id"]} - group = tk.get_action("group_show")( - base_context.copy(), data_dict - ) - else: - raise tk.ObjectNotFound - - except tk.ObjectNotFound as e: - if "name" in group_: - data_dict = {"id": group_["name"]} - group = tk.get_action("group_show")( - base_context.copy(), data_dict - ) - else: - raise tk.ObjectNotFound - # Found local group - validated_groups.append( - {"id": group["id"], "name": group["name"]} - ) - - except tk.ObjectNotFound as e: - log.info("Group %s is not available", group_) - if remote_groups == "create": - try: - group = self._get_group( - harvest_object.source.url, group_ - ) - except RemoteResourceError: - log.error("Could not get remote group %s", group_) - continue - - for key in [ - "packages", - "created", - "users", - "groups", - "tags", - "extras", - "display_name", - ]: - group.pop(key, None) - - tk.get_action("group_create")(base_context.copy(), group) - log.info("Group %s has been newly created", group_) - validated_groups.append( - {"id": group["id"], "name": group["name"]} - ) - - package_dict["groups"] = validated_groups - - # Local harvest source organization - source_dataset = tk.get_action("package_show")( - base_context.copy(), {"id": harvest_object.source.id} - ) - local_org = source_dataset.get("owner_org") - - remote_orgs = self.config.get("remote_orgs", None) - - if not remote_orgs in ("only_local", "create"): - # Assign dataset to the source organization - package_dict["owner_org"] = local_org - else: - if not "owner_org" in package_dict: - package_dict["owner_org"] = None - - # check if remote org exist locally, otherwise remove - validated_org = None - remote_org = package_dict["owner_org"] - - if remote_org: - try: - data_dict = {"id": remote_org} - org = tk.get_action("organization_show")( - base_context.copy(), data_dict - ) - validated_org = org["id"] - except tk.ObjectNotFound as e: - log.info("Organization %s is not available", remote_org) - if remote_orgs == "create": - try: - try: - org = self._get_organization( - harvest_object.source.url, remote_org - ) - except RemoteResourceError: - # fallback if remote CKAN exposes organizations as groups - # this especially targets older versions of CKAN - org = self._get_group( - harvest_object.source.url, remote_org - ) - - # DATAVIC-8: Try and find a local org with the same name first.. - try: - matching_local_org = tk.get_action( - "organization_show" - )(base_context.copy(), {"id": org["name"]}) - log.info( - "Found local org matching name: " + org["name"] - ) - validated_org = matching_local_org["id"] - except tk.ObjectNotFound as e: - log.info( - "Did NOT find local org matching name: " - + org["name"] - + " - attempting to create..." - ) - for key in [ - "packages", - "created", - "users", - "groups", - "tags", - "extras", - "display_name", - "type", - ]: - org.pop(key, None) - tk.get_action("organization_create")( - base_context.copy(), org - ) - log.info( - "Organization %s has been newly created", - remote_org, - ) - validated_org = org["id"] - except (RemoteResourceError, tk.ValidationError): - log.error("Could not get remote org %s", remote_org) - - package_dict["owner_org"] = validated_org or local_org - - # Set default groups if needed - default_groups = self.config.get("default_groups", []) - if default_groups: - if not "groups" in package_dict: - package_dict["groups"] = [] - existing_group_ids = [g["id"] for g in package_dict["groups"]] - package_dict["groups"].extend( - [ - g - for g in self.config["default_group_dicts"] - if g["id"] not in existing_group_ids - ] - ) - - # Set default extras if needed - default_extras = self.config.get("default_extras", {}) - - def get_extra(key, package_dict): - for extra in package_dict.get("extras", []): - if extra["key"] == key: - return extra - - if default_extras: - override_extras = self.config.get("override_extras", False) - if not "extras" in package_dict: - package_dict["extras"] = [] - for key, value in default_extras.items(): - existing_extra = get_extra(key, package_dict) - if existing_extra and not override_extras: - continue # no need for the default - if existing_extra: - package_dict["extras"].remove(existing_extra) - # Look for replacement strings - if isinstance(value, str): - value = value.format( - harvest_source_id=harvest_object.job.source.id, - harvest_source_url=harvest_object.job.source.url.strip("/"), - harvest_source_title=harvest_object.job.source.title, - harvest_job_id=harvest_object.job.id, - harvest_object_id=harvest_object.id, - dataset_id=package_dict["id"], - ) - - package_dict["extras"].append({"key": key, "value": value}) - - for resource in package_dict.get("resources", []): - if resource.get("url_type") == "upload": - local_resource = next( - ( - x - for x in local_dataset.get("resources", []) - if resource.get("id") == x.get("id") - ), - None, - ) - - # Check last modified date to see if resource file has been updated - # Resource last_modified date is only updated when a file has been uploaded - - if not local_resource or ( - local_resource - and resource.get("last_modified", None) - > local_resource.get("last_modified", None) - ): - - filename = self.copy_remote_file_to_filestore( - resource["id"], resource["url"], self.config.get("api_key") - ) - - if filename: - resource["url"] = filename - else: - # Clear remote url_type for resources (eg datastore, upload) as - # we are only creating normal resources with links to the - # remote ones - resource.pop("url_type", None) - - # Clear revision_id as the revision won't exist on this CKAN - # and saving it will cause an IntegrityError with the foreign - # key. - resource.pop("revision_id", None) - - # Copy `citation` from the dataset to the resource (for Legacy Data.Vic records) - citation = package_dict.get("citation", None) - if citation is not None: - resource["attribution"] = citation - - # DATAVIC-61: Add any additional schema fields not existing in Data.Vic schema as extras - # if identified within the harvest configuration - additional_fields_as_extras = self.config.get( - "additional_fields_as_extras", {} - ) - if additional_fields_as_extras: - for key in additional_fields_as_extras: - if package_dict[key]: - package_dict["extras"].append( - {"key": key, "value": package_dict[key]} - ) - - # Use the same harvester for the different scenarios, e.g. - additional_fields = self.config.get("additional_fields", {}) - - if additional_fields: - if not "extras" in package_dict: - package_dict["extras"] = [] - for key in additional_fields: - if key in package_dict: - package_dict["extras"].append( - {"key": key, "value": package_dict[key]} - ) - - result = self._create_or_update_package( - package_dict, harvest_object, package_dict_form="package_show" - ) - - # DATAVIC: workflow_status and organization_visibility are now set in the ckanext-workflow extension: - # file: ckanext-workflow/ckanext/workflow/plugin.py - # function: create() - - return result - - except tk.ValidationError as e: - self._save_object_error( - f"Invalid package with GUID {harvest_object.guid}: {e.error_dict}", - harvest_object, - "Import", - ) - except Exception as e: - self._save_object_error(str(e), harvest_object, "Import") - - def copy_remote_file_to_filestore(self, resource_id, resource_url, apikey=None): - try: - ( - _, - parent_dir, - sub_dir, - _, - full_path, - ) = self.get_paths_from_resource_id(resource_id) - - # Check to see if the full path, i.e. file already exists - if so delete it - if os.path.exists(full_path): - os.remove(full_path) - - resource_dir_exists = self.resource_directory_exists(parent_dir, sub_dir) - - if resource_dir_exists: - headers = {} - if apikey: - headers["Authorization"] = apikey - r = requests.get(resource_url, headers=headers) - open(full_path, "wb").write(r.content) - log.info(f"Downloaded resource {resource_url} to {full_path}") - else: - log.error(f"Directory for local resource {sub_dir} does not exist") - - # Return the actual filename of the remote resource - return resource_url.split("/")[-1] - except Exception as e: - log.error(f"Error copying remote file {resource_url} to local {full_path}") - log.error(f"Exception: {e}") - return None - - def resource_directory_exists(self, parent_dir, sub_dir): - try: - # Check to see if the sub dir exist - if not create it - if not os.path.exists(sub_dir): - # Check to see if the parent dir exists - if not, create it - if not os.path.exists(parent_dir): - self.create_resource_directory(parent_dir) - self.create_resource_directory(sub_dir) - return True - except Exception as e: - log.error(f"`resource_directory_exists` Exception: {e}") - return False - - def create_resource_directory(self, directory): - try: - os.mkdir(directory) - return True - except Exception as e: - log.error( - f"`create_resource_directory` Error creating directory: {directory}" - ) - log.error(f"`create_resource_directory` Exception: {e}") - return False - - def get_paths_from_resource_id(self, resource_id): - # Our base path for storing resource files - resources_path = "/".join([tk.config.get("ckan.storage_path"), "resources"]) - - # Separate the resource ID into the necessary chunks for filestore resource directory structure - parent_dir = "/".join([resources_path, resource_id[0:3]]) - sub_dir = "/".join([parent_dir, resource_id[3:6]]) - filename = resource_id[6:] - - full_path = "/".join([sub_dir, filename]) - - return resources_path, parent_dir, sub_dir, filename, full_path diff --git a/ckanext/datavic_harvester/harvesters/metashare.py b/ckanext/datavic_harvester/harvesters/metashare.py deleted file mode 100644 index 186cbfc..0000000 --- a/ckanext/datavic_harvester/harvesters/metashare.py +++ /dev/null @@ -1,473 +0,0 @@ -from __future__ import annotations - -import json -import logging -import traceback -import uuid -from typing import Optional, Any - -from ckan import model -from ckan.plugins import toolkit as tk -from ckan.logic.schema import default_create_package_schema - -from ckanext.harvest.model import HarvestObject, HarvestObjectExtra -from ckanext.datavicmain import helpers - -from ckanext.datavic_harvester.harvesters.base import DataVicBaseHarvester -from ckanext.datavic_harvester.helpers import convert_date_to_isoformat, get_from_to - - -log = logging.getLogger(__name__) - - -class MetaShareHarvester(DataVicBaseHarvester): - def info(self): - return { - "name": "metashare", - "title": "MetaShare Harvester", - "description": "Harvester for MetaShare dataset descriptions serialized as JSON", - } - - def _get_page_of_records( - self, url: str, page: int, datasets_per_page: int = 100 - ) -> Optional[list[dict[str, Any]]]: - _from, _to = get_from_to(page, datasets_per_page) - records = None - - request_url = f"{url}?from={_from}&to={_to}&_content_type=json&fast=index" - log.debug(f"Getting page of records {request_url}") - - resp_text: Optional[str] = self._make_request( - request_url, {"Authorization": api_auth} - ) - - if not resp_text: - return records - - if r.status_code == 200: - data = json.loads(r.text) - - # Records are contained in the "metadata" element of the response JSON - # see example: https://dev-metashare.maps.vic.gov.au/geonetwork/srv/en/q?from=1&to=1&_content_type=json&fast=index - records = data.get("metadata") - - return records - - def _get_guids_and_datasets(self, datasets): - """ - Copied & adapted from ckanext/dcat/harvesters/_json.py - - don't json.loads the `datasets` input - it already be a list of dicts - - get `uuid` from `geonet:info` property - :param content: - :return: - """ - - if not isinstance(datasets, list): - if isinstance(datasets, dict): - datasets = [datasets] - else: - log.debug(f"Datasets data is not a list: {type(datasets)}") - raise ValueError("Wrong JSON object") - - for dataset in datasets: - - as_string = json.dumps(dataset) - - # Get identifier - geonet_info = dataset.get("geonet:info") - guid = geonet_info.get("uuid") - - yield guid, as_string - - def _get_package_dict(self, harvest_object): - """ - Convert the string based content from the harvest_object - into a package_dict for a CKAN dataset - :param harvest_object: - :return: - """ - content = harvest_object.content - - metashare_dict = json.loads(content) - - uuid = harvest_object.guid - - full_metadata_url_prefix = self.config.get("full_metadata_url_prefix") - full_metadata_url = ( - full_metadata_url_prefix.format(**{"UUID": uuid}) - if full_metadata_url_prefix - else "" - ) - resource_url_prefix = self.config.get("resource_url_prefix") - resource_url = f"{resource_url_prefix}{uuid}" if resource_url_prefix else "" - - package_dict = {} - - # Mandatory fields where no value exists in MetaShare - # So we set them to Data.Vic defaults - package_dict["personal_information"] = "no" - package_dict["protective_marking"] = "official" - package_dict["access"] = "yes" - - package_dict["title"] = metashare_dict.get("title") - - # 'xmlcharrefreplace' - replaces the character with an xml character - package_dict["notes"] = metashare_dict.get("abstract", "").encode( - "ascii", "xmlcharrefreplace" - ) - - # Get organisation from the harvest source organisation dropdown - source_dict = tk.get_action("package_show")( - {}, {"id": harvest_object.harvest_source_id} - ) - package_dict["owner_org"] = source_dict.get("owner_org") - - # Default as discussed with SDM - package_dict["license_id"] = self.config.get("license_id", "cc-by") - - # Tags / Keywords - # `topicCat` can either be a single tag as a string or a list of tags - topic_cat = metashare_dict.get("topicCat") - if topic_cat: - package_dict["tags"] = get_tags(topic_cat) - - package_dict["extract"] = f"{package_dict['notes'].split(b'.')[0]}..." - - # There is no field in Data.Vic schema to store the source UUID of the harvested record - # Therefore, we are using the `primary_purpose_of_collection` field - if uuid: - package_dict["primary_purpose_of_collection"] = uuid - - # @TODO: Consider this - in the field mapping spreadsheet: - # https://docs.google.com/spreadsheets/d/112hzp6ZrTnp3fl_ZdmT6oHldUGf36LvEpLswAJDLdr0/edit#gid=1669999637 - # The response from SDM was: - # "We could either add Custodian to the Q Search results or just use resource owner. Given that it is - # not publically displayed in DV, not sure it's worth the effort of adding the custodian" - res_owner = metashare_dict.get("resOwner") - if res_owner: - package_dict["data_owner"] = res_owner.split(";")[0] - - # Decision from discussion with Simon/DPC on 2020-10-13 is to assign all datasets to "Spatial Data" group - # Data.Vic "category" field is equivalent to groups, but stored as an extra and only has 1 group - default_group_dicts = self.config.get("default_group_dicts") - if default_group_dicts and isinstance(default_group_dicts, list): - package_dict["groups"] = [ - {"id": group.get("id")} for group in default_group_dicts - ] - category = default_group_dicts[0] if default_group_dicts else None - if category: - package_dict["category"] = category.get("id") - - package_dict["date_created_data_asset"] = convert_date_to_isoformat( - metashare_dict.get("tempExtentBegin"), - "tempExtentBegin", - package_dict["title"], - ) - - package_dict["date_modified_data_asset"] = convert_date_to_isoformat( - metashare_dict.get("revisionDate"), - "revisionDate", - package_dict["title"], - ) - - package_dict["update_frequency"] = map_update_frequency( - get_datavic_update_frequencies(), - metashare_dict.get("maintenanceAndUpdateFrequency_text", "unknown"), - ) - - if full_metadata_url: - package_dict["full_metadata_url"] = full_metadata_url - - # Create a single resource for the dataset - resource = { - "name": metashare_dict.get("altTitle") or metashare_dict.get("title"), - "format": metashare_dict.get("spatialRepresentationType_text"), - "period_start": convert_date_to_isoformat( - metashare_dict.get("tempExtentBegin"), - "tempExtentBegin", - metashare_dict.get("altTitle") or metashare_dict.get("title"), - ), - "period_end": convert_date_to_isoformat( - metashare_dict.get("tempExtentEnd"), - "tempExtentEnd", - metashare_dict.get("altTitle") or metashare_dict.get("title"), - ), - "url": resource_url, - } - - attribution = self.config.get("resource_attribution") - if attribution: - resource["attribution"] = attribution - - package_dict["resources"] = [resource] - - # @TODO: What about these ones? - # responsibleParty - - # Add all the `extras` to our compiled dict - - return package_dict - - def gather_stage(self, harvest_job): - log.debug("In MetaShareHarvester gather_stage") - - ids = [] - - # Get the previous guids for this source - query = ( - model.Session.query(HarvestObject.guid, HarvestObject.package_id) - .filter(HarvestObject.current == True) - .filter(HarvestObject.harvest_source_id == harvest_job.source.id) - ) - - guid_to_package_id = {} - - for guid, package_id in query: - guid_to_package_id[guid] = package_id - - guids_in_db = list(guid_to_package_id.keys()) - - guids_in_source = [] - # - # END: This section is copied from ckanext/dcat/harvesters/_json.py - # - - previous_guids = [] - page = 1 - # CKAN harvest default is 100, in testing 500 works pretty fast and is more efficient as it only needs 5 API calls instead of 19 for 1701 test datasets - records_per_page = 500 - - harvest_source_url = ( - harvest_job.source.url[:-1] - if harvest_job.source.url.endswith("?") - else harvest_job.source.url - ) - - # _get_page_of_records will return None if there are no more records - records = True - while records: - records = self._get_page_of_records( - harvest_source_url, page, records_per_page - ) - - batch_guids = [] - if records: - # - # BEGIN: This section is copied from ckanext/dcat/harvesters/_json.py - # - for guid, as_string in self._get_guids_and_datasets(records): - batch_guids.append(guid) - - if guid not in previous_guids: - - if guid in guids_in_db: - # Dataset needs to be udpated - obj = HarvestObject( - guid=guid, - job=harvest_job, - package_id=guid_to_package_id[guid], - content=as_string, - extras=[ - HarvestObjectExtra(key="status", value="change") - ], - ) - else: - # Dataset needs to be created - obj = HarvestObject( - guid=guid, - job=harvest_job, - content=as_string, - extras=[HarvestObjectExtra(key="status", value="new")], - ) - obj.save() - ids.append(obj.id) - - if len(batch_guids) > 0: - guids_in_source.extend(set(batch_guids) - set(previous_guids)) - else: - log.debug("Empty document, no more records") - # Empty document, no more ids - break - # - # END: This section is copied from ckanext/dcat/harvesters/_json.py - # - - # - # BEGIN: This section is copied from ckanext/dcat/harvesters/_json.py - # - page = page + 1 - previous_guids = batch_guids - # - # END: This section is copied from ckanext/dcat/harvesters/_json.py - # - - # - # BEGIN: This section is copied from ckanext/dcat/harvesters/_json.py - # @TODO: Can probably be moved into its own function - # - # Check datasets that need to be deleted - guids_to_delete = set(guids_in_db) - set(guids_in_source) - for guid in guids_to_delete: - obj = HarvestObject( - guid=guid, - job=harvest_job, - package_id=guid_to_package_id[guid], - extras=[HarvestObjectExtra(key="status", value="delete")], - ) - ids.append(obj.id) - model.Session.query(HarvestObject).filter_by(guid=guid).update( - {"current": False}, False - ) - obj.save() - - return ids - # - # END: This section is copied from ckanext/dcat/harvesters/_json.py - # - - def import_stage(self, harvest_object): - """ - Mostly copied from `ckanext/dcat/harvesters/_json.py` - :param harvest_object: - :return: - """ - log.debug("In MetaShareHarvester import_stage") - - if not harvest_object: - log.error("No harvest object received") - return False - - status = self._get_object_extra(harvest_object, "status") - - context = { - "user": self._get_user_name(), - "return_id_only": True, - "ignore_auth": True, - "model": model, - "session": model.Session, - } - - if status == "delete": - # Delete package - - tk.get_action("package_delete")(context, {"id": harvest_object.package_id}) - log.info( - f"Deleted package {harvest_object.package_id} with guid {harvest_object.guid}" - ) - - return True - - if harvest_object.content is None: - self._save_object_error( - f"Empty content for object {harvest_object.id}", - harvest_object, - "Import", - ) - return False - - if harvest_object.guid is None: - self._save_object_error( - f"Empty guid for object {harvest_object.id}", harvest_object, "Import" - ) - return False - - self._set_config(harvest_object.source.config) - - # Get the last harvested object (if any) - previous_object = ( - model.Session.query(HarvestObject) - .filter(HarvestObject.guid == harvest_object.guid) - .filter(HarvestObject.current == True) - .first() - ) - - # Flag previous object as not current anymore - if previous_object: - previous_object.current = False - previous_object.add() - - package_dict = self._get_package_dict(harvest_object) - - if not package_dict: - return False - - if not package_dict.get("name"): - package_dict["name"] = self._get_package_name( - harvest_object, package_dict["title"] - ) - - # Flag this object as the current one - harvest_object.current = True - harvest_object.add() - - try: - if status == "new": - package_schema = default_create_package_schema() - context["schema"] = package_schema - - # We need to explicitly provide a package ID - package_dict["id"] = str(uuid.uuid4()) - package_schema["id"] = [str] - - # Save reference to the package on the object - harvest_object.package_id = package_dict["id"] - harvest_object.add() - - # Defer constraints and flush so the dataset can be indexed with - # the harvest object id (on the after_show hook from the harvester - # plugin) - model.Session.execute( - "SET CONSTRAINTS harvest_object_package_id_fkey DEFERRED" - ) - model.Session.flush() - - elif status == "change": - package_dict["id"] = harvest_object.package_id - - if status in ["new", "change"]: - action = "package_create" if status == "new" else "package_update" - message_status = "Created" if status == "new" else "Updated" - - package_id = tk.get_action(action)(context, package_dict) - log.info("%s dataset with id %s", message_status, package_id) - - except Exception as e: - # dataset = json.loads(harvest_object.content) - dataset_name = package_dict.get("name", "") - - self._save_object_error( - f"Error importing dataset {dataset_name}: {e} / {traceback.format_exc()}", - harvest_object, - "Import", - ) - return False - - finally: - model.Session.commit() - - return True - - -def get_tags(value): - tags = [] - if isinstance(value, list): - for tag in value: - tags.append({"name": tag}) - else: - tags.append({"name": value}) - - return tags - - -def get_datavic_update_frequencies(): - return helpers.field_choices("update_frequency") - - -def map_update_frequency(datavic_update_frequencies, value): - # Check if the value from SDM matches one of those, if so just return original value - for frequency in datavic_update_frequencies: - if frequency["label"].lower() == value.lower(): - return frequency["value"] - - # Otherwise return the default of 'unknown' - return "unknown" From 24d729d0ef61ff6ca31e133c4eafbeb4e34f3fa0 Mon Sep 17 00:00:00 2001 From: mutantsan Date: Mon, 23 Jan 2023 16:12:54 +0200 Subject: [PATCH 15/21] SXDEDPCXZIC-90_DATAVIC-470 / refactor delwp harvester (wip) --- .../data/metashare_dict.json | 64 + ckanext/datavic_harvester/harvesters/base.py | 168 +++ .../datavic_harvester/harvesters/dcat_json.py | 4 +- ckanext/datavic_harvester/harvesters/delwp.py | 1066 +++++++---------- ckanext/datavic_harvester/helpers.py | 14 +- 5 files changed, 672 insertions(+), 644 deletions(-) create mode 100644 ckanext/datavic_harvester/data/metashare_dict.json create mode 100644 ckanext/datavic_harvester/harvesters/base.py diff --git a/ckanext/datavic_harvester/data/metashare_dict.json b/ckanext/datavic_harvester/data/metashare_dict.json new file mode 100644 index 0000000..a62ab6e --- /dev/null +++ b/ckanext/datavic_harvester/data/metashare_dict.json @@ -0,0 +1,64 @@ +[ + { + "available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", + "resclassification": "unclassified", + "uuid": "7fc3079a-ffdb-5ba8-9f9a-382ac44187bb", + "publicationdate": "2023-01-15", + "publishedforgroup": "0;12264", + "geonet_info_changedate": "2022-08-26", + "standardname": "ISO 19115-3: 2018", + "classification_text": "Unclassified;Unclassified", + "format": "All major digital formats", + "type": "dataset", + "title": "Vicmap Crown Land Tenure - Crown Land Tenure Polygon joined to Crown Land Tenure Table with Decoded Tenure Attributes", + "alttitle": "CL_TENURE_POLYGON_DC", + "tempextentbegin": "1990-12-31T13: 00: 00+00: 00", + "resowner": "Department of Environment, Land, Water & Planning", + "tempextentend": "2023-01-20T00: 01: 08+00: 00", + "maintenanceandupdatefrequency_text": "As needed", + "locale": "eng", + "status": "notobsolete;completed", + "topiccat": "society;environment", + "geonet_info": ""{"@xmlns:geonet": "http: //www.fao.org/geonetwork", "id": "33634", "uuid": "7fc3079a-ffdb-5ba8-9f9a-382ac44187bb", "schema": "iso19115-3", "createDate": "2019-09-04", "changeDate": "2022-08-26", "source": "a18b679e-4040-4101-9fe2-82ebdd4736b2", "isPublishedToAll": "false", "view": "true", "notify": "false", "download": "true", "dynamic": "true", "featured": "false", "selected": "false", "lock": "false"}"", + "datasetlang": "eng", + "status_text": "Completed", + "mdclassification": "unclassified", + "defaulttitle": "Vicmap Crown Land Tenure - Crown Land Tenure Polygon joined to Crown Land Tenure Table with Decoded Tenure Attributes", + "abstract": "Part of the Vicmap Crown Land Tenure (Basic) dataset series. This dataset is a decoded version of Vicmap Crown Land Tenure. The model has been designed with simplicity of use in mind. Attributes have been populated with values from the aspatial tables normally supplied with Vicmap Crown Land Tenure. \n\nVicmap Crown Land Tenure is a statewide dataset series that plays a key role in the management of Victoria";"s Crown land. It was created (June 2003 - Feb 2004) from migrating LCMP layers into the Vicmap structure.\n\nThe dataset provides information about the Private use of Crown land Parcels and Crown Roads. It contains a number of Tenure types including:\n- (A) Agricultural including Unused Road licences, Water Frontage licences and Grazing licences,\n- (L) Lease including Commercial type leases,\n- (G) General Licences including miscellaneous community use licences, permits & consents\n- (P) Pipe including Water supply pipelines,\n- (RM) Reserve including land gazetted as a Reserve in Government Gazettes,\n- Tenure Identifiers, Tenure type identifiers and Tenure code identifiers.\n- Unique feature identifiers, date stamps and data quality information.\n- Cross reference to Vicmap Property.\n\nThe database is continually maintained, obtaining maintenance from authoritative sources within State Government.", + "anzlicid": "ANZVI0803003353", + "geonet_info_createdate": "2019-09-04", + "revisiondate": "2022-08-26", + "spatialrepresentationtype_text": "Vector" + }, + {"_uuid": "a0db9dd5-9fe6-5c47-88fa-54048e22eb28", + "abstract": "Part of the Vicmap Admin dataset series. This layer contains polygon features delineating the current Fire Rescue Victoria District Boundaries.\n \n Polygon features delineating FRV's ten administrative districts. FRV Districts are a sub-group of FRV Regions.\n\n This data is current as of 1 Dec 2021.", + "alttitle": "FRV_DISTRICT", + "anzlicid": "ANZVI0803008685", + "available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", + "classification_text": "Unclassified;Unclassified", + "datasetlang": "eng", + "defaulttitle": "Vicmap Admin - Fire Rescue Victoria (FRV) District Polygon", + "format": "All major digital formats", + "geonet_info": "'{"@xmlns:geonet": "http://www.fao.org/geonetwork", "id": "41696", "uuid": "a0db9dd5-9fe6-5c47-88fa-54048e22eb28", "schema": "iso19115-3", "createDate": "2020-09-11", "changeDate": "2022-01-13", "source": "a18b679e-4040-4101-9fe2-82ebdd4736b2", "isPublishedToAll": "false", "view": "true", "notify": "false", "download": "true", "dynamic": "true", "featured": "false", "selected": "false", "lock": "false"}'", + "geonet_info_changedate": "2022-01-13", + "geonet_info_createdate": "2020-09-11", + "locale": "eng", + "maintenanceandupdatefrequency_text": "As needed", + "mdclassification": "unclassified", + "publicationdate": "2022-05-19", + "publishedforgroup": "0;12264", + "resclassification": "unclassified", + "resowner": "Fire Rescue Victoria;Fire Rescue Victoria", + "revisiondate": "2022-01-13", + "spatialrepresentationtype_text": "Vector", + "standardname": "ISO 19115-3: 2018", + "status": "notobsolete;completed", + "status_text": "Completed", + "tempextentbegin": "2020-06-30T14: 00: 00+00: 00", + "tempextentend": "2023-01-23T00: 01: 23+00: 00", + "title": "Vicmap Admin - Fire Rescue Victoria (FRV) District Polygon", + "topiccat": "environment;boundaries", + "type": "dataset", + "uuid": "a0db9dd5-9fe6-5c47-88fa-54048e22eb28" + } +] diff --git a/ckanext/datavic_harvester/harvesters/base.py b/ckanext/datavic_harvester/harvesters/base.py new file mode 100644 index 0000000..a631dba --- /dev/null +++ b/ckanext/datavic_harvester/harvesters/base.py @@ -0,0 +1,168 @@ +from __future__ import annotations + +import logging +from typing import Optional, Any + +import requests + +from ckan import model +from ckan.plugins import toolkit as tk +from ckan.lib.helpers import json +from ckan.model import Package + +from ckanext.harvest.model import HarvestObject +from ckanext.harvest.harvesters import HarvesterBase +from ckanext.harvest.harvesters.ckanharvester import ContentFetchError + + +log = logging.getLogger(__name__) + + +class DataVicBaseHarvester(HarvesterBase): + def _set_config(self, config_str: str) -> None: + if config_str: + self.config = json.loads(config_str) + + if "api_version" in self.config: + self.api_version = int(self.config["api_version"]) + + log.debug("Using config: %r", self.config) + else: + self.config = {} + + def validate_config(self, config: Optional[str]) -> dict[str, Any]: + """ + Harvesters can provide this method to validate the configuration + entered in the form. It should return a single string, which will be + stored in the database. Exceptions raised will be shown in the form's + error messages. + + Validates the default_group entered exists and creates default_group_dicts + + :param harvest_object_id: Config string coming from the form + :returns: A string with the validated configuration options + """ + if not config: + raise ValueError("No config options set") + + config_obj = json.loads(config) + + if "default_groups" not in config_obj: + raise ValueError("default_groups must be set") + + default_groups = config_obj["default_groups"] + + if not isinstance(default_groups, list): + raise ValueError("default_groups must be a *list* of group names/ids") + + if default_groups and not isinstance(default_groups[0], str): + raise ValueError( + "default_groups must be a list of group " "names/ids (i.e. strings)" + ) + + config_obj["default_group_dicts"] = self._get_default_groups_data( + default_groups + ) + + if "full_metadata_url_prefix" not in config_obj: + raise ValueError("full_metadata_url_prefix must be set") + + if "{UUID}" not in config_obj.get("full_metadata_url_prefix", ""): + raise ValueError( + "full_metadata_url_prefix must have the {UUID} identifier in the URL" + ) + + if "resource_url_prefix" not in config_obj: + raise ValueError("resource_url_prefix must be set") + + if "license_id" not in config_obj: + raise ValueError("license_id must be set") + + if "resource_attribution" not in config_obj: + raise ValueError("resource_attribution must be set") + + return config_obj + + def _get_default_groups_data(self, group_ids: list[str]) -> list[dict[str, Any]]: + group_dicts: list[dict[str, Any]] = [] + + for group_name_or_id in group_ids: + try: + group_data = tk.get_action("group_show")( + self._make_context(), {"id": group_name_or_id} + ) + + group_dicts.append(group_data) + except tk.ObjectNotFound: + raise ValueError(f"Default group {group_name_or_id} not found") + + return group_dicts + + def _get_object_extra( + self, harvest_object: HarvestObject, key: str + ) -> Optional[Any]: + """Retrieving the value from a harvest object extra by a given key""" + for extra in harvest_object.extras: + if extra.key == key: + return extra.value + return None + + def _get_package_name(self, harvest_object: HarvestObject, title: str) -> str: + """Generate package name from title""" + package: Package = harvest_object.package + + if package is None or package.title != title: + name = self._gen_new_name(title) + + if not name: + raise Exception( + "Could not generate a unique name from the title or the " + "GUID. Please choose a more unique title." + ) + else: + name = package.name + + return name + + def _make_request( + self, url: str, headers: Optional[dict[str, Any]] = None + ) -> Optional[str]: + """Make a GET request to a URL""" + + try: + resp: requests.Response = requests.get(url, headers=headers) + except requests.HTTPError as e: + log.error("HTTP error: %s %s", e.response.status_code, e.request.url) + except requests.RequestException as e: + log.error("Request error: %s", str(e)) + except Exception as e: + log.error("HTTP general exception: %s", str(e)) + else: + return resp.text + + def fetch_stage(self, harvest_object: HarvestObject) -> bool: + return True + + def _delete_package(self, package_id: str, guid: str): + tk.get_action("package_delete")(self._make_context(), {"id": package_id}) + log.info(f"Deleted package {package_id} with guid {guid}") + + def _make_context(self) -> dict[str, Any]: + return { + "user": self._get_user_name(), + "return_id_only": True, + "ignore_auth": True, + "model": model, + "session": model.Session, + } + + def _get_guids_to_package_ids(self, source_id: str) -> dict[str, str]: + query = ( + model.Session.query(HarvestObject.guid, HarvestObject.package_id) + .filter(HarvestObject.current == True) + .filter(HarvestObject.harvest_source_id == source_id) + ) + + return { + harvest_object.guid: harvest_object.package_id for harvest_object in query + } diff --git a/ckanext/datavic_harvester/harvesters/dcat_json.py b/ckanext/datavic_harvester/harvesters/dcat_json.py index c21f6c0..eb48bc9 100644 --- a/ckanext/datavic_harvester/harvesters/dcat_json.py +++ b/ckanext/datavic_harvester/harvesters/dcat_json.py @@ -234,7 +234,7 @@ def set_required_fields_defaults(self, harvest_config, dcat_dict, package_dict): if issued and not date_created_data_asset: package_dict[ "date_created_data_asset" - ] = helpers.convert_date_str_to_isoformat( + ] = helpers.convert_date_to_isoformat( issued, "issued", package_dict["title"] ) @@ -248,7 +248,7 @@ def set_required_fields_defaults(self, harvest_config, dcat_dict, package_dict): if modified and not date_modified_data_asset: package_dict[ "date_modified_data_asset" - ] = helpers.convert_date_str_to_isoformat( + ] = helpers.convert_date_to_isoformat( modified, "modified", package_dict["title"] ) diff --git a/ckanext/datavic_harvester/harvesters/delwp.py b/ckanext/datavic_harvester/harvesters/delwp.py index 7d2a19a..00b8031 100644 --- a/ckanext/datavic_harvester/harvesters/delwp.py +++ b/ckanext/datavic_harvester/harvesters/delwp.py @@ -1,22 +1,25 @@ +from __future__ import annotations + import json import logging import traceback import uuid import re +from typing import Iterator, Optional, Any, Union import requests -from bs4 import BeautifulSoup +from bs4 import BeautifulSoup, Tag, NavigableString from ckan import model from ckan.plugins import toolkit as tk from ckan.logic.schema import default_create_package_schema -from ckanext.harvest.harvesters import HarvesterBase from ckanext.harvest.model import HarvestObject, HarvestObjectExtra from ckanext.datavicmain import helpers +from ckanext.datavic_harvester.harvesters.base import DataVicBaseHarvester from ckanext.datavic_harvester.helpers import ( - convert_date_str_to_isoformat, + convert_date_to_isoformat, get_from_to, munge_title_to_name, ) @@ -25,291 +28,159 @@ log = logging.getLogger(__name__) -def get_tags(value): - tags = [] - value = re.split(";|,", value) - if isinstance(value, list): - for tag in value: - tags.append({"name": tag}) - else: - tags.append({"name": value}) +class DelwpHarvester(DataVicBaseHarvester): + HARVESTER = "DELWP Harvester" - return tags + def info(self): + return { + "name": "delwp", + "title": self.HARVESTER, + "description": "Harvester for DELWP dataset descriptions serialized as JSON", + } + def validate_config(self, config: Optional[str]): + config_obj: dict[str, Any] = super().validate_config(config) -def get_datavic_update_frequencies(): - return helpers.field_choices("update_frequency") + if "dataset_type" not in config_obj: + raise ValueError("dataset_type must be set") + if "api_auth" not in config_obj: + raise ValueError("api_auth must be set") -def map_update_frequency(datavic_update_frequencies, value): - # Check if the value from SDM matches one of those, if so just return original value - for frequency in datavic_update_frequencies: - if frequency["label"].lower() == value.lower(): - return frequency["value"] + if "organisation_mapping" not in config_obj: + return config_obj - # Otherwise return the default of 'unknown' - return "unknown" + if not isinstance(config_obj["organisation_mapping"], list): + raise ValueError("organisation_mapping must be a *list* of organisations") + for organisation in config_obj["organisation_mapping"]: + resowner: Optional[str] = organisation.get("resowner") + org_name: Optional[str] = organisation.get("org-name") -def _get_organisation(organisation_mapping, resowner, harvest_object, context): - org_name = next( - ( - organisation.get("org-name") - for organisation in organisation_mapping - if organisation.get("resowner") == resowner - ), - None, - ) - if org_name: - return org_name - else: - # No mapping found, see if the organisation exist - log.warning( - f"DELWP harvester _get_organisation: No mapping found for resowner {resowner}" - ) - org_title = resowner - org_name = munge_title_to_name(org_title) - org_id = None - try: - data_dict = { - "id": org_name, - "include_dataset_count": False, - "include_extras": False, - "include_users": False, - "include_groups": False, - "include_tags": False, - "include_followers": False, - } - organisation = tk.get_action("organization_show")(context.copy(), data_dict) - org_id = organisation.get("id") - except tk.ObjectNotFound: - log.warning( - f"DELWP harvester _get_organisation: Organisation does not exist {org_id}" - ) - # Organisation does not exist so create it and use it - try: - # organization_create will return organisation id because context has 'return_id_only' to true - org_id = tk.get_action("organization_create")( - context.copy(), {"name": org_name, "title": org_title} - ) - except Exception as e: - log.warning( - f"DELWP harvester _get_organisation: Failed to create organisation {org_name}" - ) - log.error(f"DELWP harvester _get_organisation: {str(e)}") - # Fallback to using organisation from harvest source - source_dict = tk.get_action("package_show")( - context.copy(), {"id": harvest_object.harvest_source_id} + if not isinstance(organisation, dict): + raise ValueError( + 'organisation_mapping item must be a *dict*. eg {"resowner": "Organisation A", "org-name": "organisation-a"}' ) - org_id = source_dict.get("owner_org") - return org_id - - -def clean_resource_name(name): - """ - Replace underscores (_) with spaces to avoid braking words - """ - # convert underscores to spaces - name = re.sub("_", " ", name) - - return name - - -def _generate_geo_resource(layer_data_with_uuid, resource_format, resource_url): - resource_data = { - "name": layer_data_with_uuid.find_previous("Title").text.upper() - + " " - + resource_format, - "format": resource_format, - "url": resource_url.format( - layername=layer_data_with_uuid.find_previous("Name").text - ), - } - return resource_data - -class DelwpHarvester(HarvesterBase): + if not resowner: + raise ValueError( + 'organisation_mapping item must have property "resowner". eg "resowner": "Organisation A"' + ) - config = None - force_import = False + if not org_name: + raise ValueError( + 'organisation_mapping item must have property *org-name*. eg "org-name": "organisation-a"}' + ) - # Copied from `ckanext/harvest/harvesters/ckanharvester.py` - def _set_config(self, config_str): - if config_str: - self.config = json.loads(config_str) - if "api_version" in self.config: - self.api_version = int(self.config["api_version"]) + try: + tk.get_action("organization_show")( + self._make_context(), {"id": org_name} + ) + except tk.ObjectNotFound: + raise ValueError(f"Organisation {org_name} not found") - log.debug("Using config: %r", self.config) - else: - self.config = {} + return config_obj - # Copied from `ckanext/dcat/harvesters/base.py` - def _get_object_extra(self, harvest_object, key): - """ - Helper function for retrieving the value from a harvest object extra, - given the key - """ - for extra in harvest_object.extras: - if extra.key == key: - return extra.value - return None - - # Copied from `ckanext/dcat/harvesters/base.py` - def _get_package_name(self, harvest_object, title): - - package = harvest_object.package - if package is None or package.title != title: - name = self._gen_new_name(title) - if not name: - raise Exception( - "Could not generate a unique name from the title or the " - "GUID. Please choose a more unique title." - ) - else: - name = package.name + def gather_stage(self, harvest_job): + log.debug(f"In {self.HARVESTER} gather_stage") + self._set_config(harvest_job.source.config) - return name + ids = [] + guid_to_package_id: dict[str, str] = self._get_guids_to_package_ids( + harvest_job.source.id + ) + guids_in_db: list[str] = [ + harvest_object.guid for harvest_object in guid_to_package_id + ] + guids_in_source: list[str] = [] + previous_guids: list[str] = [] + page: int = 1 + records_per_page: int = 10 + harvest_source_url: str = harvest_job.source.url.rstrip("?") + + while True: + records = self._fetch_records(harvest_source_url, page, records_per_page) - def info(self): - return { - "name": "delwp", - "title": "DELWP Harvester", - "description": "Harvester for DELWP dataset descriptions " - + "serialized as JSON", - } + batch_guids = [] - def validate_config(self, config): - """ - Harvesters can provide this method to validate the configuration - entered in the form. It should return a single string, which will be - stored in the database. Exceptions raised will be shown in the form's - error messages. + if not records: + log.debug(f"{self.HARVESTER} empty document, no more records") + break - Validates the default_group entered exists and creates default_group_dicts + for guid, as_string in self._get_guids_and_datasets(records): + batch_guids.append(guid) - :param harvest_object_id: Config string coming from the form - :returns: A string with the validated configuration options - """ - if not config: - raise ValueError("No config options set") + if guid in previous_guids: + continue - try: - config_obj = json.loads(config) - context = {"model": model, "user": tk.g.user} - if "default_groups" in config_obj: - if not isinstance(config_obj["default_groups"], list): - raise ValueError( - "default_groups must be a *list* of group" " names/ids" + if guid in guids_in_db: + # Dataset needs to be udpated + obj = HarvestObject( + guid=guid, + job=harvest_job, + package_id=guid_to_package_id[guid], + content=as_string, + extras=[HarvestObjectExtra(key="status", value="change")], ) - if config_obj["default_groups"] and not isinstance( - config_obj["default_groups"][0], str - ): - raise ValueError( - "default_groups must be a list of group " - "names/ids (i.e. strings)" + else: + # Dataset needs to be created + obj = HarvestObject( + guid=guid, + job=harvest_job, + content=as_string, + extras=[HarvestObjectExtra(key="status", value="new")], ) - # Check if default groups exist - config_obj["default_group_dicts"] = [] - for group_name_or_id in config_obj["default_groups"]: - try: - group = tk.get_action("group_show")( - context.copy(), {"id": group_name_or_id} - ) - # save the dict to the config object, as we'll need it - # in the import_stage of every dataset - config_obj["default_group_dicts"].append(group) - except tk.ObjectNotFound: - raise ValueError("Default group not found") - config = json.dumps(config_obj) - else: - raise ValueError("default_groups must be set") - - if "full_metadata_url_prefix" not in config_obj: - raise ValueError("full_metadata_url_prefix must be set") - - if "{UUID}" not in config_obj.get("full_metadata_url_prefix", ""): - raise ValueError( - "full_metadata_url_prefix must have the {UUID} identifier in the URL" - ) - - if "resource_url_prefix" not in config_obj: - raise ValueError("resource_url_prefix must be set") - - if "license_id" not in config_obj: - raise ValueError("license_id must be set") + obj.save() + ids.append(obj.id) - if "resource_attribution" not in config_obj: - raise ValueError("resource_attribution must be set") + if len(batch_guids) > 0: + guids_in_source.extend(set(batch_guids) - set(previous_guids)) - if "dataset_type" not in config_obj: - raise ValueError("dataset_type must be set") - - if "api_auth" not in config_obj: - raise ValueError("api_auth must be set") + break + page = page + 1 + previous_guids = batch_guids - if "organisation_mapping" in config_obj: - if not isinstance(config_obj["organisation_mapping"], list): - raise ValueError( - "organisation_mapping must be a *list* of organisations" - ) - # Check if organisation exist - for organisation_mapping in config_obj["organisation_mapping"]: - if not isinstance(organisation_mapping, dict): - raise ValueError( - 'organisation_mapping item must be a *dict*. eg {"resowner": "Organisation A", "org-name": "organisation-a"}' - ) - if not organisation_mapping.get("resowner"): - raise ValueError( - 'organisation_mapping item must have property "resowner". eg "resowner": "Organisation A"' - ) - if not organisation_mapping.get("org-name"): - raise ValueError( - 'organisation_mapping item must have property *org-name*. eg "org-name": "organisation-a"}' - ) - try: - group = tk.get_action("organization_show")( - context.copy(), {"id": organisation_mapping.get("org-name")} - ) - except tk.ObjectNotFound: - raise ValueError( - f'Organisation {organisation_mapping.get("org-name")} not found' - ) - else: - raise ValueError("organisation_mapping must be set") + # Check datasets that need to be deleted + guids_to_delete = set(guids_in_db) - set(guids_in_source) + for guid in guids_to_delete: + obj = HarvestObject( + guid=guid, + job=harvest_job, + package_id=guid_to_package_id[guid], + extras=[HarvestObjectExtra(key="status", value="delete")], + ) + ids.append(obj.id) + model.Session.query(HarvestObject).filter_by(guid=guid).update( + {"current": False}, False + ) + obj.save() - config = json.dumps(config_obj, indent=1) - except ValueError as e: - raise e + return ids - return config + def _fetch_records( + self, url: str, page: int, records_per_page: int = 100 + ) -> Optional[list[dict[str, Any]]]: - def _get_page_of_records( - self, url, dataset_type, api_auth, page, datasets_per_page=100 - ): - _from, _to = get_from_to(page, datasets_per_page) - records = None - try: - request_url = ( - f"{url}?dataset={dataset_type}&start={_from}&rows={_to}&format=json" - ) - log.debug(f"Getting page of records {request_url}") + _from, _to = get_from_to(page, records_per_page) - r = requests.get(request_url, headers={"Authorization": api_auth}) + request_url: str = "{}?dataset={}&start={}&rows={}&format=json".format( + url, self.config["dataset_type"], _from, _to + ) + log.debug(f"{self.HARVESTER}: getting page of records {request_url}") - if r.status_code == 200: - data = json.loads(r.text) + resp_text: Optional[str] = self._make_request( + request_url, + {"Authorization": self.config["api_auth"]}, + ) - # Records are contained in the "metadata" element of the response JSON - # see example: https://dev-metashare.maps.vic.gov.au/geonetwork/srv/en/q?from=1&to=1&_content_type=json&fast=index - records = data.get("records", None) - except Exception as e: - log.error(e) + if not resp_text: + return - return records + data = json.loads(resp_text) + return data.get("records") - def _get_guids_and_datasets(self, datasets): + def _get_guids_and_datasets(self, datasets) -> Iterator[tuple[Optional[str], str]]: """ Copied & adapted from ckanext/dcat/harvesters/_json.py - don't json.loads the `datasets` input - it already be a list of dicts @@ -325,474 +196,399 @@ def _get_guids_and_datasets(self, datasets): raise ValueError("Wrong JSON object") for dataset in datasets: - fields = dataset.get("fields", {}) - as_string = json.dumps(fields) - - # Get identifier - guid = fields.get("uuid", None) + fields: dict[str, Any] = dataset.get("fields", {}) + as_string: str = json.dumps(fields) + guid: Optional[str] = fields.get("uuid") yield guid, as_string - def _get_package_dict(self, harvest_object, context): + def import_stage(self, harvest_object: HarvestObject) -> bool: """ - Convert the string based content from the harvest_object - into a package_dict for a CKAN dataset + Mostly copied from `ckanext/dcat/harvesters/_json.py` :param harvest_object: :return: """ + log.debug(f"{self.HARVESTER}: starting import stage") + + if not harvest_object: + log.error(f"{self.HARVESTER}: no harvest object received") + return False + + status = self._get_object_extra(harvest_object, "status") + + if status == "delete": + self._delete_package(harvest_object.package_id, harvest_object.guid) + return True + + if harvest_object.content is None: + self._save_object_error( + f"{self.HARVESTER}: Empty content for object {harvest_object.id}", + harvest_object, + "Import", + ) + return False + + if harvest_object.guid is None: + self._save_object_error( + f"Empty guid for object {harvest_object.id}", harvest_object, "Import" + ) + return False + + self._set_config(harvest_object.source.config) + + previous_harvest_object = ( + model.Session.query(HarvestObject) + .filter(HarvestObject.guid == harvest_object.guid) + .filter(HarvestObject.current == True) + .first() + ) + + if previous_harvest_object: + previous_harvest_object.current = False + # previous_harvest_object.add() + harvest_object.current = True + + package_dict = self._get_package_dict(harvest_object) + + # harvest_object.add() + + if status not in ["new", "change"]: + return True + + try: + if status == "new": + package_dict["id"] = str(uuid.uuid4()) + harvest_object.package_id = package_dict["id"] + # harvest_object.add() + + # Defer constraints and flush so the dataset can be indexed with + # the harvest object id (on the after_show hook from the harvester + # plugin) + model.Session.execute( + "SET CONSTRAINTS harvest_object_package_id_fkey DEFERRED" + ) + model.Session.flush() + + elif status == "change": + package_dict["id"] = harvest_object.package_id + + action_name: str = "package_create" if status == "new" else "package_update" + message_status: str = "Created" if status == "new" else "Updated" + + context = self._make_context() + context["schema"] = self._create_custom_package_create_schema() + + package_id = tk.get_action(action_name)(context, package_dict) + log.info( + "%s: %s dataset with id %s", self.HARVESTER, message_status, package_id + ) + + except Exception as e: + self._save_object_error( + f"Error importing dataset {package_dict.get('name', '')}: {e} / {traceback.format_exc()}", + harvest_object, + "Import", + ) + return False + finally: + model.Session.commit() + + return True + + def _get_package_dict(self, harvest_object): + """Create a package_dict from remote portal data""" content = harvest_object.content + uuid = harvest_object.guid metashare_dict = json.loads(content) + metashare_dict["_uuid"] = uuid - uuid = harvest_object.guid + remote_pkg_name: Optional[str] = metashare_dict.get("name") - full_metadata_url_prefix = self.config.get("full_metadata_url_prefix", None) full_metadata_url = ( - full_metadata_url_prefix.format(**{"UUID": uuid}) - if full_metadata_url_prefix + self.config["full_metadata_url_prefix"].format(**{"UUID": uuid}) + if self.config.get("full_metadata_url_prefix") else "" ) - resource_url_prefix = self.config.get("resource_url_prefix", None) - resource_url = f"{resource_url_prefix}{uuid}" if resource_url_prefix else "" - # Set the package_dict package_dict = {} - # Mandatory fields where no value exists in MetaShare - # So we set them to Data.Vic defaults package_dict["personal_information"] = "no" package_dict["protective_marking"] = "official" package_dict["access"] = "yes" - # Set to default values if missing package_dict["organization_visibility"] = "all" package_dict["workflow_status"] = "published" + package_dict["license_id"] = self.config.get("license_id", "cc-by") - package_dict["title"] = metashare_dict.get("title", None) - + package_dict["title"] = metashare_dict.get("title") package_dict["notes"] = metashare_dict.get("abstract", "") - - # Get organisation from the harvest source organisation_mapping in config - package_dict["owner_org"] = _get_organisation( + package_dict["tags"] = get_tags(metashare_dict.get("topiccat")) + package_dict["last_updated"] = metashare_dict.get("geonet_info_changedate") + package_dict["extract"] = f"{package_dict['notes'].split('.')[0]}..." + package_dict["owner_org"] = self._get_organisation( self.config.get("organisation_mapping"), metashare_dict.get("resowner").split(";")[0], harvest_object, - context, ) - # Default as discussed with SDM - package_dict["license_id"] = self.config.get("license_id", "cc-by") - - # Tags / Keywords - # `topicCat` can either be a single tag as a string or a list of tags - topic_cat = metashare_dict.get("topiccat", None) - if topic_cat: - package_dict["tags"] = get_tags(topic_cat) - - # TODO: Is this the right metadata field? Should it be at the resource? - # Las Updated corelates to geonet_info_changedate - package_dict["last_updated"] = metashare_dict.get( - "geonet_info_changedate", None - ) + if not package_dict.get("name"): + package_dict["name"] = self._get_package_name( + harvest_object, package_dict["title"] + ) - # TODO: Remove extras to package_dict - package_dict["extract"] = f"{package_dict['notes'].split('.')[0]}..." + if full_metadata_url: + package_dict["full_metadata_url"] = full_metadata_url - # There is no field in Data.Vic schema to store the source UUID of the harvested record - # Therefore, we are using the `primary_purpose_of_collection` field if uuid: package_dict["primary_purpose_of_collection"] = uuid - # @TODO: Consider this - in the field mapping spreadsheet: - # https://docs.google.com/spreadsheets/d/112hzp6ZrTnp3fl_ZdmT6oHldUGf36LvEpLswAJDLdr0/edit#gid=1669999637 - # The response from SDM was: - # "We could either add Custodian to the Q Search results or just use resource owner. Given that it is - # not publically displayed in DV, not sure it's worth the effort of adding the custodian" - res_owner = metashare_dict.get("resowner", None) - if res_owner: - package_dict["data_owner"] = res_owner.split(";")[0] - - # Decision from discussion with Simon/DPC on 2020-10-13 is to assign all datasets to "Spatial Data" group - # Data.Vic "category" field is equivalent to groups, but stored as an extra and only has 1 group - default_group_dicts = self.config.get("default_group_dicts", None) - if default_group_dicts and isinstance(default_group_dicts, list): - package_dict["groups"] = [ - {"id": group.get("id")} for group in default_group_dicts - ] - category = default_group_dicts[0] if default_group_dicts else None - if category: - package_dict["category"] = category.get("id") - - # @TODO: Default to UTC now if not available... OR try and get it from somewhere else in the record - # date provided seems to be a bit of a mess , e.g. '2013-03-31t13:00:00.000z' - # might need to run some regex on this - # temp_extent_begin = metashare_dict.get('tempextentbegin', None) - date_created_data_asset = convert_date_str_to_isoformat( - metashare_dict.get("publicationdate"), - "publicationdate", - metashare_dict.get("name"), + if metashare_dict.get("resowner"): + package_dict["data_owner"] = metashare_dict["resowner"].split(";")[0] + + package_dict["groups"] = [ + {"id": group.get("id")} for group in self.config["default_group_dicts"] + ] + + if package_dict["groups"]: + package_dict["category"] = package_dict["groups"][0] + + package_dict["date_created_data_asset"] = convert_date_to_isoformat( + metashare_dict.get("publicationdate") + or metashare_dict.get("geonet_info_createdate"), + "geonet_info_createdate", + remote_pkg_name, ) - if not date_created_data_asset: - date_created_data_asset = convert_date_str_to_isoformat( - metashare_dict.get("geonet_info_createdate"), - "geonet_info_createdate", - metashare_dict.get("name"), - ) - package_dict["date_created_data_asset"] = date_created_data_asset - - # @TODO: Examples can be "2012-03-27" - do we need to convert this to UTC before inserting? - # is a question for SDM - i.e. are their dates in UTC or Vic/Melb time? - date_modified_data_asset = convert_date_str_to_isoformat( - metashare_dict.get("revisiondate"), - "revisiondate", - metashare_dict.get("name"), + + package_dict["date_modified_data_asset"] = convert_date_to_isoformat( + metashare_dict.get("revisiondate") + or metashare_dict.get("geonet_info_changedate"), + "geonet_info_changedate", + remote_pkg_name, ) - if not date_modified_data_asset: - date_modified_data_asset = convert_date_str_to_isoformat( - metashare_dict.get("geonet_info_changedate"), - "geonet_info_changedate", - metashare_dict.get("name"), - ) - package_dict["date_modified_data_asset"] = date_modified_data_asset package_dict["update_frequency"] = map_update_frequency( get_datavic_update_frequencies(), metashare_dict.get("maintenanceandupdatefrequency_text", "unknown"), ) - if full_metadata_url: - package_dict["full_metadata_url"] = full_metadata_url - - attribution = self.config.get("resource_attribution", None) - - # Generate resources for the dataset - formats = metashare_dict.get("available_formats", None) - resources = [] - if formats: - formats = formats.split(",") - for format in formats: - res = { - "name": metashare_dict.get("alttitle") - or metashare_dict.get("title"), - "format": format, - "period_start": convert_date_str_to_isoformat( - metashare_dict.get("tempextentbegin"), - "tempextentbegin", - metashare_dict.get("name"), - ), - "period_end": convert_date_str_to_isoformat( - metashare_dict.get("tempextentend"), - "tempextentend", - metashare_dict.get("name"), - ), - "url": resource_url, - } + package_dict["resources"] = self._fetch_resources(metashare_dict) - res["name"] = res["name"] + " " + format - res["name"] = clean_resource_name(res["name"]) - if attribution: - res["attribution"] = attribution - resources.append(res) + return package_dict - # Generate additional WMS/WFS resources - def _get_content_with_uuid(geoserver_url): - try: - geoserver_response = requests.get(geoserver_url) - except requests.exceptions.RequestException as e: - log.error(e) - return None - geoserver_content = BeautifulSoup(geoserver_response.content, "lxml-xml") - return geoserver_content.find("Keyword", string=f"MetadataID={uuid}") - - if "geoserver_dns" in self.config: - geoserver_dns = self.config["geoserver_dns"] - dict_geoserver_urls = { - "WMS": { - "geoserver_url": geoserver_dns - + "/geoserver/ows?service=WMS&request=getCapabilities", - "resource_url": geoserver_dns - + "/geoserver/wms?service=wms&request=getmap&format=image%2Fpng8&transparent=true&layers={layername}&width=512&height=512&crs=epsg%3A3857&bbox=16114148.554967716%2C-4456584.4971389165%2C16119040.524777967%2C-4451692.527328665", - }, - "WFS": { - "geoserver_url": geoserver_dns - + "/geoserver/ows?service=WFS&request=getCapabilities", - "resource_url": geoserver_dns - + "/geoserver/wfs?request=GetCapabilities&service=WFS", - }, - } + def _get_organisation( + self, + organisation_mapping: list[dict[str, str]], + resowner: str, + harvest_object: HarvestObject, + ) -> Optional[str]: + """Get existing organization from the config `organization_mapping` + field or create a new one""" + + owner_org: Optional[str] = self._get_existing_organization( + organisation_mapping, resowner + ) - for resource_format in dict_geoserver_urls: - layer_data_with_uuid = _get_content_with_uuid( - dict_geoserver_urls[resource_format].get("geoserver_url") - ) - if layer_data_with_uuid: - resources.append( - _generate_geo_resource( - layer_data_with_uuid, - resource_format, - dict_geoserver_urls[resource_format].get("resource_url"), - ) - ) + if not owner_org: + return self._create_organization(resowner, harvest_object) + + def _get_existing_organization( + self, organisation_mapping: list[dict[str, str]], resowner: str + ) -> Optional[str]: + """Get an organization name either from config mapping or try to find + an existing one on a portal by `resowner` field""" + org_name = next( + ( + organisation.get("org-name") + for organisation in organisation_mapping + if organisation.get("resowner") == resowner + ), + None, + ) - package_dict["resources"] = resources + if org_name: + return org_name - # @TODO: What about these ones? - # responsibleParty + log.warning( + f"{self.HARVESTER} get_organisation: No mapping found for resowner {resowner}" + ) + org_name = munge_title_to_name(resowner) - # Add all the `extras` to our compiled dict + try: + organisation = tk.get_action("organization_show")( + self._make_context(), + { + "id": org_name, + "include_dataset_count": False, + "include_extras": False, + "include_users": False, + "include_groups": False, + "include_tags": False, + "include_followers": False, + }, + ) + except tk.ObjectNotFound: + log.warning( + f"{self.HARVESTER} get_organisation: organisation does not exist: {org_name}" + ) + else: + return organisation.get("id") - return package_dict + def _create_organization(self, resowner: str, harvest_object: HarvestObject) -> str: + """Create organization from a resowner field""" + org_name = munge_title_to_name(resowner) - def gather_stage(self, harvest_job): + try: + org_id = tk.get_action("organization_create")( + { + "user": self._get_user_name(), + "return_id_only": True, + "ignore_auth": True, + "model": model, + "session": model.Session, + }, + {"name": org_name, "title": resowner}, + ) + except Exception as e: + log.warning( + f"{self.HARVESTER} get_organisation: Failed to create organisation {org_name}" + ) - log.debug("In Delwp Harvester gather_stage") + source_dict: dict[str, Any] = tk.get_action("package_show")( + self._make_context(), {"id": harvest_object.harvest_source_id} + ) + org_id = source_dict["owner_org"] - # - # BEGIN: This section is copied from ckanext/dcat/harvesters/_json.py - # @TODO: Move this into a separate function for readability - # (except the `ids = []` & `guids_in_source = []` lines) - # - ids = [] + return org_id - # Get the previous guids for this source - query = ( - model.Session.query(HarvestObject.guid, HarvestObject.package_id) - .filter(HarvestObject.current == True) - .filter(HarvestObject.harvest_source_id == harvest_job.source.id) - ) + def _create_custom_package_create_schema(self) -> dict[str, Any]: + package_schema: dict[str, Any] = default_create_package_schema() # type: ignore + package_schema["id"] = [str] - guid_to_package_id = {} + return package_schema - for guid, package_id in query: - guid_to_package_id[guid] = package_id + def _fetch_resources(self, metashare_dict: dict[str, Any]) -> list[dict[str, Any]]: + """Fetch resources data from a metashare_dict""" - guids_in_db = list(guid_to_package_id.keys()) + resources: list[dict[str, Any]] = [] - guids_in_source = [] - # - # END: This section is copied from ckanext/dcat/harvesters/_json.py - # + resources.extend(self._get_resources_by_formats(metashare_dict)) + resources.extend(self._get_geoserver_resoures(metashare_dict)) - previous_guids = [] - page = 1 - # CKAN harvest default is 100, in testing 500 works pretty fast and is more efficient as it only needs 5 API calls instead of 19 for 1701 test datasets - records_per_page = 500 + return resources - harvest_source_url = ( - harvest_job.source.url[:-1] - if harvest_job.source.url.endswith("?") - else harvest_job.source.url - ) - self._set_config(harvest_job.source.config) + def _get_resources_by_formats( + self, metashare_dict: dict[str, Any] + ) -> list[dict[str, Any]]: + resources: list[dict[str, Any]] = [] - # _get_page_of_records will return None if there are no more records - records = True - while records: - dataset_type = self.config.get("dataset_type") - api_auth = self.config.get("api_auth") - records = self._get_page_of_records( - harvest_source_url, dataset_type, api_auth, page, records_per_page - ) + res_url_prefix: Optional[str] = self.config.get("resource_url_prefix") + res_url: str = f"{res_url_prefix}{uuid}" if res_url_prefix else "" + attribution = self.config.get("resource_attribution") - batch_guids = [] - if records: - # - # BEGIN: This section is copied from ckanext/dcat/harvesters/_json.py - # - for guid, as_string in self._get_guids_and_datasets(records): - batch_guids.append(guid) - - if guid not in previous_guids: - - if guid in guids_in_db: - # Dataset needs to be udpated - obj = HarvestObject( - guid=guid, - job=harvest_job, - package_id=guid_to_package_id[guid], - content=as_string, - extras=[ - HarvestObjectExtra(key="status", value="change") - ], - ) - else: - # Dataset needs to be created - obj = HarvestObject( - guid=guid, - job=harvest_job, - content=as_string, - extras=[HarvestObjectExtra(key="status", value="new")], - ) - obj.save() - ids.append(obj.id) - - if len(batch_guids) > 0: - guids_in_source.extend(set(batch_guids) - set(previous_guids)) - else: - log.debug("Empty document, no more records") - # Empty document, no more ids - break - # - # END: This section is copied from ckanext/dcat/harvesters/_json.py - # - - # - # BEGIN: This section is copied from ckanext/dcat/harvesters/_json.py - # - page = page + 1 - previous_guids = batch_guids - # - # END: This section is copied from ckanext/dcat/harvesters/_json.py - # + pkg_name: Optional[str] = metashare_dict.get("name") + formats: Optional[str] = metashare_dict.get("available_formats") - # BEGIN: This section is copied from ckanext/dcat/harvesters/_json.py - # @TODO: Can probably be moved into its own function - # - # Check datasets that need to be deleted - guids_to_delete = set(guids_in_db) - set(guids_in_source) - for guid in guids_to_delete: - obj = HarvestObject( - guid=guid, - job=harvest_job, - package_id=guid_to_package_id[guid], - extras=[HarvestObjectExtra(key="status", value="delete")], - ) - ids.append(obj.id) - model.Session.query(HarvestObject).filter_by(guid=guid).update( - {"current": False}, False - ) - obj.save() + if not formats: + return resources - return ids - # - # END: This section is copied from ckanext/dcat/harvesters/_json.py - # + for res_format in formats: + res = { + "name": metashare_dict.get("alttitle") or metashare_dict.get("title"), + "format": res_format, + "period_start": convert_date_to_isoformat( + metashare_dict.get("tempextentbegin"), + "tempextentbegin", + pkg_name, + ), + "period_end": convert_date_to_isoformat( + metashare_dict.get("tempextentend"), + "tempextentend", + pkg_name, + ), + "url": res_url, + } - def fetch_stage(self, harvest_object): - return True + res["name"] = f"{res['name']} {res_format}".replace("_", "") - def import_stage(self, harvest_object): - """ - Mostly copied from `ckanext/dcat/harvesters/_json.py` - :param harvest_object: - :return: - """ - log.debug("In Delwp Harvester import_stage") + if attribution: + res["attribution"] = attribution - if not harvest_object: - log.error("No harvest object received") - return False + resources.append(res) - if self.force_import: - status = "change" - else: - status = self._get_object_extra(harvest_object, "status") - - context = { - "user": self._get_user_name(), - "return_id_only": True, - "ignore_auth": True, - "model": model, - "session": model.Session, - } + return resources - if status == "delete": - # Delete package + def _get_geoserver_resoures( + self, metashare_dict: dict[str, Any] + ) -> list[dict[str, Any]]: + resources: list[dict[str, Any]] = [] - tk.get_action("package_delete")( - context.copy(), {"id": harvest_object.package_id} - ) - log.info( - f"Deleted package {harvest_object.package_id} with guid {harvest_object.guid}" - ) + if "geoserver_dns" not in self.config: + return resources - return True + geoserver_dns = self.config["geoserver_dns"] + metadata_uuid: Optional[str] = metashare_dict["_uuid"] - if harvest_object.content is None: - self._save_object_error( - f"Empty content for object {harvest_object.id}", - harvest_object, - "Import", - ) - return False + dict_geoserver_urls = { + "WMS": { + "geoserver_url": f"{geoserver_dns}/geoserver/ows?service=WMS&request=getCapabilities", + "resource_url": f"{geoserver_dns}/geoserver/wms?service=wms&request=getmap&format=image%2Fpng8&transparent=true&layers={{layername}}&width=512&height=512&crs=epsg%3A3857&bbox=16114148.554967716%2C-4456584.4971389165%2C16119040.524777967%2C-4451692.527328665", + }, + "WFS": { + "geoserver_url": f"{geoserver_dns}/geoserver/ows?service=WFS&request=getCapabilities", + "resource_url": f"{geoserver_dns}/geoserver/wfs?request=GetCapabilities&service=WFS", + }, + } - if harvest_object.guid is None: - self._save_object_error( - f"Empty guid for object {harvest_object.id}", harvest_object, "Import" + for res_fmt in dict_geoserver_urls: + layer_data = self._get_geoserver_content_with_uuid( + dict_geoserver_urls[res_fmt]["geoserver_url"], metadata_uuid ) - return False - self._set_config(harvest_object.source.config) - - # Get the last harvested object (if any) - previous_object = ( - model.Session.query(HarvestObject) - .filter(HarvestObject.guid == harvest_object.guid) - .filter(HarvestObject.current == True) - .first() - ) + if not layer_data: + continue - # Flag previous object as not current anymore - if previous_object and not self.force_import: - previous_object.current = False - previous_object.add() + layer_title: str = layer_data.find_previous("Title").text.upper() + layer_name: str = layer_data.find_previous("Name").text + resource_url: str = dict_geoserver_urls[res_fmt]["resource_url"] - package_dict = self._get_package_dict(harvest_object, context) + resources.append( + { + "name": f"{layer_title} {res_fmt}", + "format": res_fmt, + "url": resource_url.format(layername=layer_name), + } + ) - if not package_dict: - return False + return resources - if not package_dict.get("name"): - package_dict["name"] = self._get_package_name( - harvest_object, package_dict["title"] - ) + def _get_geoserver_content_with_uuid( + self, geoserver_url: str, metadata_uuid: Optional[str] + ) -> Optional[Union[Tag, NavigableString]]: - # Flag this object as the current one - harvest_object.current = True - harvest_object.add() + resp_text: Optional[str] = self._make_request(geoserver_url) - try: - if status == "new": - package_schema = default_create_package_schema() - context["schema"] = package_schema + if not resp_text: + return - # We need to explicitly provide a package ID - package_dict["id"] = str(uuid.uuid4()) - package_schema["id"] = [str] + geoserver_data: BeautifulSoup = BeautifulSoup(resp_text, "lxml-xml") + return geoserver_data.find("Keyword", string=f"MetadataID={metadata_uuid}") - # Save reference to the package on the object - harvest_object.package_id = package_dict["id"] - harvest_object.add() - # Defer constraints and flush so the dataset can be indexed with - # the harvest object id (on the after_show hook from the harvester - # plugin) - model.Session.execute( - "SET CONSTRAINTS harvest_object_package_id_fkey DEFERRED" - ) - model.Session.flush() +def get_tags(tags: str) -> list[dict[str, str]]: + """Fetch tags from a delwp tags string, e.g `society;environment`""" + tag_list: list[str] = re.split(";|,", tags) - elif status == "change": - package_dict["id"] = harvest_object.package_id + return [{"name": tag} for tag in tag_list] - if status in ["new", "change"]: - action = "package_create" if status == "new" else "package_update" - message_status = "Created" if status == "new" else "Updated" - if "package" in context: - del context["package"] - package_id = tk.get_action(action)(context.copy(), package_dict) - log.info("%s dataset with id %s", message_status, package_id) - except Exception as e: - dataset_name = package_dict.get("name", "") +def get_datavic_update_frequencies(): + return helpers.field_choices("update_frequency") - self._save_object_error( - f"Error importing dataset {dataset_name}: {e} / {traceback.format_exc()}", - harvest_object, - "Import", - ) - return False - finally: - model.Session.commit() +def map_update_frequency(datavic_update_frequencies: list[dict[str, Any]], value: str): + """Map local update_frequency to remote portal ones""" + for frequency in datavic_update_frequencies: + if frequency["label"].lower() == value.lower(): + return frequency["value"] - return True + return "unknown" diff --git a/ckanext/datavic_harvester/helpers.py b/ckanext/datavic_harvester/helpers.py index 4fa05b7..08b5f99 100644 --- a/ckanext/datavic_harvester/helpers.py +++ b/ckanext/datavic_harvester/helpers.py @@ -112,8 +112,8 @@ def fetch_update_frequency(full_metadata_url: str) -> str: return update_frequency -def convert_date_str_to_isoformat( - value: str, key: str, dataset_name: str, with_tz=False +def convert_date_to_isoformat( + value: Optional[str], key: str, dataset_name: Optional[str], with_tz=False ) -> Optional[str]: """Convert a date string to isoformat @@ -161,16 +161,16 @@ def get_from_to(page: int, datasets_per_page: int) -> tuple[int, int]: return _from, _to -def munge_title_to_name(package_title: str) -> str: - """Munge a package title into a package name +def munge_title_to_name(value: str) -> str: + """Munge a title into a name Args: - package_title (str): package_title + value (str): title Returns: - str: package name + str: name """ - name = re.sub("[ .:/,]", "-", package_title) + name = re.sub("[ .:/,]", "-", value) name = re.sub("[^a-zA-Z0-9-_]", "", name).lower() name = re.sub("[-]+", "-", name) return name.strip("-")[:99] From 31a4205bdc6f80dcf5f5ae9c63a8c48dbf98b033 Mon Sep 17 00:00:00 2001 From: mutantsan Date: Tue, 24 Jan 2023 14:06:48 +0200 Subject: [PATCH 16/21] SXDEDPCXZIC-90_DATAVIC-470 / finish refactor delwp harvest --- README.md | 2 +- .../data/delwp_geo_resource.txt | 995 ++++++++++++++++++ .../datavic_harvester/data/delwp_records.txt | 1 + .../data/metashare_dict.json | 64 -- .../datavic_harvester/harvesters/__init__.py | 2 - ckanext/datavic_harvester/harvesters/delwp.py | 242 ++--- ckanext/datavic_harvester/helpers.py | 30 +- setup.py | 2 - 8 files changed, 1141 insertions(+), 197 deletions(-) create mode 100644 ckanext/datavic_harvester/data/delwp_geo_resource.txt create mode 100644 ckanext/datavic_harvester/data/delwp_records.txt delete mode 100644 ckanext/datavic_harvester/data/metashare_dict.json diff --git a/README.md b/README.md index ac1597e..3991d67 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ To install ``ckanext-datavic-harvester``: cd /app/src/ckan/default/src/ckanext-datavic-harvester python setup.py develop -3. Add ``datavic_ckan_harvester`` to the ``ckan.plugins`` setting in your CKAN +3. Add ``datavic_dcat_json_harvester delwp_harvester`` to the ``ckan.plugins`` setting in your CKAN config file (by default the config file is located at ``/app/ckan/default/ckan.ini``). diff --git a/ckanext/datavic_harvester/data/delwp_geo_resource.txt b/ckanext/datavic_harvester/data/delwp_geo_resource.txt new file mode 100644 index 0000000..f2cbe11 --- /dev/null +++ b/ckanext/datavic_harvester/data/delwp_geo_resource.txt @@ -0,0 +1,995 @@ + + + WMS + + <Abstract/> + <KeywordList/> + <OnlineResource xlink:type="simple" xlink:href="http://opendata-uat.maps.vic.gov.au/geoserver/"/> + <ContactInformation> + <ContactPersonPrimary> + <ContactPerson/> + <ContactOrganization/> + </ContactPersonPrimary> + <ContactPosition/> + <ContactAddress> + <AddressType/> + <Address/> + <City/> + <StateOrProvince/> + <PostCode/> + <Country/> + </ContactAddress> + <ContactVoiceTelephone/> + <ContactFacsimileTelephone/> + <ContactElectronicMailAddress/> + </ContactInformation> + <Fees>none</Fees> + <AccessConstraints>none</AccessConstraints> + </Service> + <Capability> + <Request> + <GetCapabilities> + <Format>text/xml</Format> + <DCPType> + <HTTP> + <Get> + <OnlineResource xlink:type="simple" xlink:href="http://opendata-uat.maps.vic.gov.au/geoserver/ows?SERVICE=WMS&"/> + </Get> + <Post> + <OnlineResource xlink:type="simple" xlink:href="http://opendata-uat.maps.vic.gov.au/geoserver/ows?SERVICE=WMS&"/> + </Post> + </HTTP> + </DCPType> + </GetCapabilities> + <GetMap> + <Format>image/png</Format> + <Format>application/atom+xml</Format> + <Format>application/json;type=geojson</Format> + <Format>application/json;type=topojson</Format> + <Format>application/json;type=utfgrid</Format> + <Format>application/pdf</Format> + <Format>application/rss+xml</Format> + <Format>application/vnd.google-earth.kml+xml</Format> + <Format>application/vnd.google-earth.kml+xml;mode=networklink</Format> + <Format>application/vnd.google-earth.kmz</Format> + <Format>application/vnd.mapbox-vector-tile</Format> + <Format>image/geotiff</Format> + <Format>image/geotiff8</Format> + <Format>image/gif</Format> + <Format>image/jpeg</Format> + <Format>image/png; mode=8bit</Format> + <Format>image/svg+xml</Format> + <Format>image/tiff</Format> + <Format>image/tiff8</Format> + <Format>image/vnd.jpeg-png</Format> + <Format>image/vnd.jpeg-png8</Format> + <Format>text/html; subtype=openlayers</Format> + <Format>text/html; subtype=openlayers2</Format> + <Format>text/html; subtype=openlayers3</Format> + <DCPType> + <HTTP> + <Get> + <OnlineResource xlink:type="simple" xlink:href="http://opendata-uat.maps.vic.gov.au/geoserver/ows?SERVICE=WMS&"/> + </Get> + </HTTP> + </DCPType> + </GetMap> + <GetFeatureInfo> + <Format>text/plain</Format> + <Format>application/vnd.ogc.gml</Format> + <Format>text/xml</Format> + <Format>application/vnd.ogc.gml/3.1.1</Format> + <Format>text/xml; subtype=gml/3.1.1</Format> + <Format>text/html</Format> + <Format>application/json</Format> + <DCPType> + <HTTP> + <Get> + <OnlineResource xlink:type="simple" xlink:href="http://opendata-uat.maps.vic.gov.au/geoserver/ows?SERVICE=WMS&"/> + </Get> + </HTTP> + </DCPType> + </GetFeatureInfo> + </Request> + <Exception> + <Format>XML</Format> + <Format>INIMAGE</Format> + <Format>BLANK</Format> + <Format>JSON</Format> + </Exception> + <Layer> + <Title/> + <Abstract/> + <!--Limited list of EPSG projections:--> + <CRS>EPSG:3111</CRS> + <CRS>EPSG:3857</CRS> + <CRS>EPSG:4283</CRS> + <CRS>EPSG:4326</CRS> + <CRS>EPSG:28354</CRS> + <CRS>EPSG:28355</CRS> + <CRS>EPSG:28356</CRS> + <CRS>EPSG:900913</CRS> + <CRS>EPSG:7844</CRS> + <CRS>EPSG:7854</CRS> + <CRS>EPSG:7855</CRS> + <CRS>EPSG:7856</CRS> + <CRS>EPSG:7899</CRS> + <CRS>CRS:84</CRS> + <EX_GeographicBoundingBox> + <westBoundLongitude>139.0013885498047</westBoundLongitude> + <eastBoundLongitude>152.59405517578125</eastBoundLongitude> + <southBoundLatitude>-41.99998859614421</southBoundLatitude> + <northBoundLatitude>-32.99998477221746</northBoundLatitude> + </EX_GeographicBoundingBox> + <BoundingBox CRS="CRS:84" minx="139.0013885498047" miny="-41.99998859614421" maxx="152.59405517578125" maxy="-32.99998477221746"/> + <Layer queryable="1" opaque="0"> + <Name>open-data-platform:bores_bed_fa</Name> + <Title>bores_bed_fa + Layer-Group type layer: open-data-platform:bores_bed_fa + + features + bores_bed_fa + LayerName=open-data-platform:bores_bed_fa + MetadataID=8ad36246-9a39-53aa-bcbc-8b33aec63cde + ResourceIdentifier=water:bores_bed_fa + + EPSG:7844 + CRS:84 + + 140.9621059644466 + 149.97521746201792 + -39.134141752577435 + -33.99107498817209 + + + + + + + open-data-platform:env_audit_point + env_audit_point + Layer-Group type layer: open-data-platform:env_audit_point + + features + env_audit_point + LayerName=open-data-platform:env_audit_point + MetadataID=8f944191-c34c-4476-8407-91368a882320 + ResourceIdentifier=environprotect:env_audit_point + + EPSG:7844 + CRS:84 + + 141.58335876464844 + 148.4581298828125 + -38.760501899592136 + -34.18278506688211 + + + + + + + open-data-platform:env_audit_point_test1 + env_audit_point_test1 + Layer-Group type layer: open-data-platform:env_audit_point_test1 + + features + env_audit_point_test1 + LayerName=open-data-platform:env_audit_point_test1 + MetadataID=78ecc9fe-d812-45d0-8ba0-63344162a5f7 + ResourceIdentifier=environprotect:env_audit_point_test1 + + EPSG:7844 + CRS:84 + + 141.58335876464844 + 148.4581298828125 + -38.760501899592136 + -34.18278506688211 + + + + + + + open-data-platform:env_audit_polygon + env_audit_polygon + Layer-Group type layer: open-data-platform:env_audit_polygon + + features + env_audit_polygon + LayerName=open-data-platform:env_audit_polygon + MetadataID=9dfd4d05-f868-412b-a1d0-9d7520f851c3 + ResourceIdentifier=environprotect:env_audit_polygon + + EPSG:7844 + CRS:84 + + 141.5772247314453 + 148.45843505859375 + -38.649578132401494 + -34.180248293196954 + + + + + + + open-data-platform:extent_100y_ari + extent_100y_ari + Layer-Group type layer: open-data-platform:extent_100y_ari + + features + extent_100y_ari + LayerName=open-data-platform:extent_100y_ari + MetadataID=23331157-60c0-525f-81df-8a154c35f2b9 + ResourceIdentifier=flood:extent_100y_ari + + EPSG:7844 + CRS:84 + + 140.96987915039062 + 149.97622680664062 + -39.13950351735628 + -35.18425372667576 + + + + + + + open-data-platform:gnr + gnr + Layer-Group type layer: open-data-platform:gnr + + features + gnr + LayerName=open-data-platform:gnr + MetadataID=54322f3a-6c06-5c48-831c-45214f6d6aa0 + ResourceIdentifier=vmfeat:gnr + + EPSG:7844 + CRS:84 + + 140.95138549804688 + 149.97653198242188 + -39.207931556965114 + -34.02252963452976 + + + + + + + open-data-platform:gsvmi + gsvmi + Layer-Group type layer: open-data-platform:gsvmi + + features + gsvmi + LayerName=open-data-platform:gsvmi + MetadataID=1c3b8a2d-b15e-505d-945e-f4bb5c7b488a + ResourceIdentifier=minerals:gsvmi + + EPSG:7844 + CRS:84 + + 139.0013885498047 + 150.12631225585938 + -40.65176777020275 + -33.91598513975116 + + + + + + + open-data-platform:iwsfootprint + iwsfootprint + Layer-Group type layer: open-data-platform:iwsfootprint + + features + iwsfootprint + LayerName=open-data-platform:iwsfootprint + MetadataID=101b1ddc-b6a9-5db0-8414-9303a905be9c + ResourceIdentifier=corporate:iwsfootprint + + EPSG:7844 + CRS:84 + + 143.38694619327984 + 146.6480757819567 + -38.586426827339515 + -36.88032679394198 + + + + + + + open-data-platform:melbourne_water_corp + melbourne_water_corp + Layer-Group type layer: open-data-platform:melbourne_water_corp + + features + melbourne_water_corp + LayerName=open-data-platform:melbourne_water_corp + MetadataID=9ee9d41a-93dc-5e13-9ad8-69c64c22249d + ResourceIdentifier=water:melbourne_water_corp + + EPSG:7844 + CRS:84 + + 144.11688366971688 + 146.16343404624467 + -38.56752042291388 + -37.20826055913757 + + + + + + + open-data-platform:melbourne_water_retailer + melbourne_water_retailer + Layer-Group type layer: open-data-platform:melbourne_water_retailer + + melbourne_water_retailer + features + LayerName=open-data-platform:melbourne_water_retailer + MetadataID=60bfa03f-4a74-5d8e-82a3-c55cd8dac79e + ResourceIdentifier=water:melbourne_water_retailer + + EPSG:7844 + CRS:84 + + 144.17295310668004 + 146.16325620193498 + -38.500218198375556 + -37.20826055713759 + + + + + + + open-data-platform:minten + minten + Layer-Group type layer: open-data-platform:minten + + minten + features + LayerName=open-data-platform:minten + MetadataID=aeb60861-f25e-534e-b946-2f90f3fcb674 + ResourceIdentifier=minerals:minten + + EPSG:7844 + CRS:84 + + 139.11578369140625 + 152.59405517578125 + -38.94658664707214 + -33.98163226508765 + + + + + + + open-data-platform:operating_licence_point + operating_licence_point + Layer-Group type layer: open-data-platform:operating_licence_point + + features + operating_licence_point + LayerName=open-data-platform:operating_licence_point + MetadataID=62098986-1ba4-4a69-95e2-6f9cb24eed26 + ResourceIdentifier=environprotect:operating_licence_point + + EPSG:7844 + CRS:84 + + 140.99227905273438 + 149.7340850830078 + -39.031181373708435 + -34.155536684275894 + + + + + + + open-data-platform:operating_licence_polygon + operating_licence_polygon + Layer-Group type layer: open-data-platform:operating_licence_polygon + + features + operating_licence_polygon + LayerName=open-data-platform:operating_licence_polygon + MetadataID=97634d88-fbe0-4231-8481-4122c9dc0731 + ResourceIdentifier=environprotect:operating_licence_polygon + + EPSG:7844 + CRS:84 + + 140.99143981933594 + 149.7409210205078 + -39.067031898641794 + -34.15134051727787 + + + + + + + open-data-platform:property_view + property_view + Layer-Group type layer: open-data-platform:property_view + + features + property_view + LayerName=open-data-platform:property_view + MetadataID=295f83bc-e029-5379-afab-b32d1d42d196 + ResourceIdentifier=vmprop:property_view + + EPSG:7844 + CRS:84 + + 140.96212768554688 + 149.97673034667972 + -39.18611911798184 + -33.981266054149636 + + + + + + + open-data-platform:prsa_point + prsa_point + Layer-Group type layer: open-data-platform:prsa_point + + features + prsa_point + LayerName=open-data-platform:prsa_point + MetadataID=9e9f51aa-efe1-4447-ac5a-7641e00a7f85 + ResourceIdentifier=environprotect:prsa_point + + EPSG:7844 + CRS:84 + + 145.0404510498047 + 145.5084686279297 + -37.82358936207172 + -37.81273654833998 + + + + + + + open-data-platform:prsa_polygon + prsa_polygon + Layer-Group type layer: open-data-platform:prsa_polygon + + features + prsa_polygon + LayerName=open-data-platform:prsa_polygon + MetadataID=02db2be3-1949-421f-81f2-45b09b5cfa41 + ResourceIdentifier=environprotect:prsa_polygon + + EPSG:7844 + CRS:84 + + 144.96009826660156 + 144.96731567382812 + -37.811496771727384 + -37.80547336473882 + + + + + + + open-data-platform:psr_point + psr_point + Layer-Group type layer: open-data-platform:psr_point + + features + psr_point + LayerName=open-data-platform:psr_point + MetadataID=5f9d0046-ea02-44a4-80e3-66947a03060e + ResourceIdentifier=environprotect:psr_point + + EPSG:7844 + CRS:84 + + 142.17784118652344 + 147.06781005859375 + -38.412178077248974 + -34.18687060765925 + + + + + + + open-data-platform:psr_polygon + psr_polygon + Layer-Group type layer: open-data-platform:psr_polygon + + features + psr_polygon + LayerName=open-data-platform:psr_polygon + MetadataID=fd91bc76-8431-43a0-b8fa-78dfd0063b88 + ResourceIdentifier=environprotect:psr_polygon + + EPSG:7844 + CRS:84 + + 142.17347717285156 + 147.06822204589844 + -38.19963077479917 + -34.18387988499886 + + + + + + + open-data-platform:resourcefootprint + resourcefootprint + Layer-Group type layer: open-data-platform:resourcefootprint + + resourcefootprint + features + LayerName=open-data-platform:resourcefootprint + MetadataID=7523ef1f-08de-5636-86ba-1fb65d51754f + ResourceIdentifier=corporate:resourcefootprint + + EPSG:7844 + CRS:84 + + 140.875 + 150.00001525878906 + -39.499988594559554 + -33.99998477365832 + + + + + + + open-data-platform:road_casement_polygon + road_casement_polygon + Layer-Group type layer: open-data-platform:road_casement_polygon + + features + road_casement_polygon + LayerName=open-data-platform:road_casement_polygon + MetadataID=8f038fe6-db8a-5e29-b9b4-738d20f9c4d5 + ResourceIdentifier=vmprop:road_casement_polygon + + EPSG:7844 + CRS:84 + + 140.96189880371094 + 149.8295440673828 + -38.90510181427195 + -33.982051881787456 + + + + + + + open-data-platform:rural_water_corp + rural_water_corp + Layer-Group type layer: open-data-platform:rural_water_corp + + features + rural_water_corp + LayerName=open-data-platform:rural_water_corp + MetadataID=2d2036d4-90e5-59a6-9901-99efa62ab668 + ResourceIdentifier=water:rural_water_corp + + EPSG:7844 + CRS:84 + + 140.965733812895 + 149.97502280706323 + -39.15926737453909 + -33.9861693210795 + + + + + + + open-data-platform:sg_geological_unit_50k + sg_geological_unit_50k + Layer-Group type layer: open-data-platform:sg_geological_unit_50k + + features + sg_geological_unit_50k + LayerName=open-data-platform:sg_geological_unit_50k + MetadataID=b16d9cce-8613-5e05-acc0-1aa60d37a2ab + ResourceIdentifier=minerals:sg_geological_unit_50k + + EPSG:7844 + CRS:84 + + 140.97091674804688 + 149.50125122070312 + -38.857681312520945 + -35.92853168171774 + + + + + + + open-data-platform:shalld100_polygon + shalld100_polygon + Layer-Group type layer: open-data-platform:shalld100_polygon + + features + shalld100_polygon + LayerName=open-data-platform:shalld100_polygon + MetadataID=a8ea0e8d-8bfc-5cf3-9930-192256946414 + ResourceIdentifier=minerals:shalld100_polygon + + EPSG:7844 + CRS:84 + + 143.0173492431641 + 148.5013427734375 + -37.170204199028646 + -36.31875232427844 + + + + + + + open-data-platform:urban_water_corp + urban_water_corp + Layer-Group type layer: open-data-platform:urban_water_corp + + features + urban_water_corp + LayerName=open-data-platform:urban_water_corp + MetadataID=18f0d03c-2f92-58e0-8029-ba6aea63f44c + ResourceIdentifier=water:urban_water_corp + + EPSG:7844 + CRS:84 + + 140.9621059644466 + 149.97521746201792 + -39.134141752577435 + -33.99107498817209 + + + + + + + open-data-platform:vlr_point + vlr_point + Layer-Group type layer: open-data-platform:vlr_point + + features + vlr_point + LayerName=open-data-platform:vlr_point + MetadataID=673678b6-f8c4-450a-8b6a-8bb295bc0928 + ResourceIdentifier=environprotect:vlr_point + + EPSG:7844 + CRS:84 + + 141.00848388671875 + 149.74557495117188 + -38.817993202133984 + -34.18358996800627 + + + + + + + open-data-platform:vlr_polygon + vlr_polygon + Layer-Group type layer: open-data-platform:vlr_polygon + + features + vlr_polygon + LayerName=open-data-platform:vlr_polygon + MetadataID=2b907103-6f69-4264-82cd-d26bad374613 + ResourceIdentifier=environprotect:vlr_polygon + + EPSG:7844 + CRS:84 + + 141.2235107421875 + 148.4757843017578 + -38.77803806293801 + -34.26687243882467 + + + + + + + open-data-platform:water_corp + water_corp + Layer-Group type layer: open-data-platform:water_corp + + features + water_corp + LayerName=open-data-platform:water_corp + MetadataID=82794bd0-771f-5e44-b0ac-e736fce55286 + ResourceIdentifier=water:water_corp + + EPSG:7844 + CRS:84 + + 140.96209716796875 + 149.9752197265625 + -39.15926746390632 + -33.98616794014284 + + + + + + + open-data-platform:wspa + wspa + Layer-Group type layer: open-data-platform:wspa + + features + wspa + LayerName=open-data-platform:wspa + MetadataID=6b1ab79a-71c1-5484-ba56-8a5df4700eef + ResourceIdentifier=corporate:wspa + + EPSG:7844 + CRS:84 + + 139.46667480468753 + 150.50001525878906 + -41.99998859614421 + -32.99998477221746 + + + + + + + + diff --git a/ckanext/datavic_harvester/data/delwp_records.txt b/ckanext/datavic_harvester/data/delwp_records.txt new file mode 100644 index 0000000..8e91574 --- /dev/null +++ b/ckanext/datavic_harvester/data/delwp_records.txt @@ -0,0 +1 @@ +{"nhits": 1676, "parameters": {"dataset": "datashare-metadata", "rows": 500, "start": 1, "format": "json", "timezone": "UTC"}, "records": [{"datasetid": "datashare-metadata", "recordid": "a0a381abc1d5bdd495a5362ec2e301947ce557e8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "15c008e0-5d2f-574c-bb21-3241b4d94214", "publicationdate": "2019-11-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "MapInfo, ESRI Shape", "type": "dataset", "title": "Urban Development Program - Proposed Industrial Areas 2018", "alttitle": "IND2018_PROPOSED_AREAS", "tempextentbegin": "2018-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35627\", \"uuid\": \"15c008e0-5d2f-574c-bb21-3241b4d94214\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-10-22\", \"changeDate\": \"2022-08-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Urban Development Program - Proposed Industrial Areas 2018", "abstract": "Land identified as future industrial areas. Used in conjunction with Industrial land dataset.\nUrban Development Program (UDP).", "anzlicid": "ANZVI0803008565", "geonet_info_createdate": "2019-10-22", "revisiondate": "2022-08-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "06ec758f53ad644bbb0123336d8d00ea58afa6cc", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "81726131-7c8d-52b9-a243-d6a8429966e2", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Victorian Land Cover Time Series", "alttitle": "VIC_LANDCOVER_TS", "tempextentbegin": "1986-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41525\", \"uuid\": \"81726131-7c8d-52b9-a243-d6a8429966e2\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-07-22\", \"changeDate\": \"2021-07-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Land Cover Time Series", "abstract": "The Victorian Land Cover Time Series provides a consistent through time, whole-of-state, spatial land cover data set for 7 epochs (1987-1990, 1990-1995, 1995-2000, 2000-2005, 2005-2010, 2010-2015 and 2015-19). The dataset uses Landsat satellite imagery and local calibration (or training) data. The most likely layers (one for each epoch) classify each pixel in to one of 19 land cover classes. The dataset provides additional evidence for use alongside other South Australian mapping products to measure and map native and non-native land cover types (although land cover types delineated are different between States).", "anzlicid": "ANZVI0803005976", "geonet_info_createdate": "2020-07-22", "revisiondate": "2021-07-14", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b1dc1e6ca03634955a7cdf5b3b1b5bc5fe6ac56a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "76663b0e-369f-5369-aed7-c6dc52482850", "publicationdate": "2020-08-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-08-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats available:", "type": "dataset", "title": "Melbourne Industrial and Commercial Land Use Plan - Industrial Aug2020", "alttitle": "MICLUP_INDUSTRIAL_AUG2020", "tempextentbegin": "2020-08-02T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:01:58+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41526\", \"uuid\": \"76663b0e-369f-5369-aed7-c6dc52482850\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-08-05\", \"changeDate\": \"2020-08-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Melbourne Industrial and Commercial Land Use Plan - Industrial Aug2020", "abstract": "This data has been developed as a part of the Melbourne Industrial and Commercial Land Use Plan (MICLUP) and represents the spatial extent of industrial and commercial land identified in that plan for metropolitan Melbourne.\n\nThis dataset represents the spatial extent of existing and future industrial land in metropolitan Melbourne. The layer stores details of the precinct name (where known), metropolitan region, local government area, status (existing or future) and classification as identified in MICLUP.\n\nDatasets in the series are listed below. See their metadata entries for more detailed metadata. There are three separate dataset layers as follows: \nCommercial land - existing; \nCommercial land - future; \nIndustrial land - future and existing.\n\nThe layers store details of Metropolitan Region, Local Government Area, MICLUP classification and, depending on the layer, a range of other information relating to land area or floorspace area for each precinct identified in the MICLUP may also be included.\n\nNOTE: The industrial dataset was updated in August 2020 to correct an error in relation to state-significant industrial precincts in the vicinity of Beveridge and Officer-Pakenham.", "anzlicid": "ANZVI0803008677", "geonet_info_createdate": "2020-08-05", "revisiondate": "2020-08-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bdec5c9e7255c74c6ae069baedb7fca12a4d304a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "346c9317-f727-568f-94af-da47ba6826bf", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2011-09-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "Township Protection Plan Extents", "alttitle": "TPP_EXTENTS", "tempextentbegin": "2023-01-24T00:01:59+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:01:59+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35635\", \"uuid\": \"346c9317-f727-568f-94af-da47ba6826bf\", \"schema\": \"iso19115-3\", \"createDate\": \"2011-09-06\", \"changeDate\": \"2011-09-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Township Protection Plan Extents", "abstract": "This dataset defines the extent of Township Protection Plans prepared by the Country Fire Authority.", "anzlicid": "ANZVI0803004110", "geonet_info_createdate": "2011-09-06", "revisiondate": "2011-09-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d0378b89d4203bd2b26504e5cc060293ccd98a0a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "a9c95992-c656-5d96-9b6c-c8a58b2b9466", "publicationdate": "2020-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-01-15", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Emergency Water Supply Points", "alttitle": "EWSP", "tempextentbegin": "2000-09-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:02+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41539\", \"uuid\": \"a9c95992-c656-5d96-9b6c-c8a58b2b9466\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-01-15\", \"changeDate\": \"2020-01-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Emergency Water Supply Points", "abstract": "Victoria has a network of about 300 emergency water supply points (EWSPs). The EWSPs provide water carting for emergency stock and domestic purposes, during severe dry seasonal conditions and surface water scarcity. Some sites are also equipped to supply water to firefighting vehicles. \n\nThe Department of Environment, Land, Water and Planning (DELWP) oversees the network of emergency water supply points.\n\nThe EWSPs are managed by various state agencies, including local councils and urban and rural water corporations. These state agencies are referred to as the EWSP Manager for maintenance, access and use issues, and for further information.\n\nThere are three main types of EWSPs accessible to the public for water carting:\n- Council bores - access groundwater.\n- Urban standpipes - are connected to reticulated potable water systems. These are managed by urban water corporations and access is subject to water availability. A permit may be needed and costs may apply as they are considered a commercial use.\n- Rural standpipes - access channels or reservoirs. These are managed by rural water corporations", "anzlicid": "ANZVI0803005775", "geonet_info_createdate": "2020-01-15", "revisiondate": "2020-01-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e2de8f880fcece8072b3a92454ae1eff80513992", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "084a5409-0bcf-5929-be8d-28197f8169ad", "publicationdate": "2022-12-06", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-04-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Apiary Buffer Zones", "alttitle": "APIARY_BUFF", "tempextentbegin": "2009-11-03T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:01:53+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35613\", \"uuid\": \"084a5409-0bcf-5929-be8d-28197f8169ad\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-06-15\", \"changeDate\": \"2022-04-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Apiary Buffer Zones", "abstract": "This layer is derived from the APIARY layer and defines the buffer zones around CLM Apiary sites in Victoria, based on whether the site is permanent or temporary. There is one zone for each apiary site.", "anzlicid": "ANZVI0803003718", "geonet_info_createdate": "2020-06-15", "revisiondate": "2022-04-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1dc4bb14ba21d1b0390e345fead6d4e545271950", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "b12b43d2-7b1a-52b3-ba63-59fdaaefaf22", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Feature Type Table - Land Administration Themes (Lat)", "alttitle": "FEATURE_TYPE_LAT", "tempextentbegin": "2023-01-24T00:02:05+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:05+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35651\", \"uuid\": \"b12b43d2-7b1a-52b3-ba63-59fdaaefaf22\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Feature Type Table - Land Administration Themes (Lat)", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003224", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "faa86d1a1927fbacc1c7751024c4951a638eb863", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "11208266-a050-5905-8ac6-86da0fd82f7c", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-11-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital: ArcView, ArcInfo & MapInfo", "type": "dataset", "title": "Victorian Coal Sub Crop Regions", "alttitle": "COALINVSCROP", "tempextentbegin": "2007-02-06T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2023-01-24T00:02:05+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35652\", \"uuid\": \"11208266-a050-5905-8ac6-86da0fd82f7c\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-09\", \"changeDate\": \"2015-11-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Coal Sub Crop Regions", "abstract": "Details the location and attributes of coal subcrops in Victoria.\nSpatial accuracy defined as attribute \"Loc_Acc\"\n\nData is from the \"Victorian Coal - A 2006 Inventory of Resources\"\nAvailable via the online store\nOn Line store", "anzlicid": "ANZVI0803003499", "geonet_info_createdate": "2015-11-09", "revisiondate": "2015-11-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b933054fa170750e00b74d8b600975f11909783a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "aa060c26-645a-5ca9-899f-e2ca8fb1e694", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-01-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - Fire Rescue Victoria (FRV) Region Polygon", "alttitle": "FRV_REGION", "tempextentbegin": "2020-06-30T14:00:00+00:00", "resowner": "Fire Rescue Victoria;Fire Rescue Victoria", "tempextentend": "2023-01-24T00:02:06+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41697\", \"uuid\": \"aa060c26-645a-5ca9-899f-e2ca8fb1e694\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-09-11\", \"changeDate\": \"2022-01-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - Fire Rescue Victoria (FRV) Region Polygon", "abstract": "Part of the Vicmap Admin dataset series. This layer contains polygon features delineating the current Fire Rescue Victoria Region Boundaries.\n\nPolygon features demonstrating FRV's two administrative regions. FRV Regions are a parent-group to FRV Districts.\n\nThis data is current as of 1 Dec 2021.", "anzlicid": "ANZVI0803008686", "geonet_info_createdate": "2020-09-11", "revisiondate": "2022-01-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1aa7833a7de0d3a1feb4b041e666f4c7bb38eb7f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7b4e8b68-7803-5844-8b12-4edda539cb4d", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Geotiff", "type": "dataset", "title": "Fire severity map of the major fires in Gippsland and north east Victoria in 2019/20 (version 1.0)", "alttitle": "BUSHFIRE_SEVERITY_EAST_AND_NORTHEAST_VICTORIA_2019-20", "tempextentbegin": "2019-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2019-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota;farming;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41497\", \"uuid\": \"7b4e8b68-7803-5844-8b12-4edda539cb4d\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-04-27\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Fire severity map of the major fires in Gippsland and north east Victoria in 2019/20 (version 1.0)", "abstract": "Fire severity classification of bushfires (wildfires) impacting ~1.5 million hectares of predominantly forested public land in eastern and north-eastern Victoria (and ~300,000 ha of southern NSW), between November 2019 and March 2020. Fire severity mapping was derived using machine learning classification (Random forests) of eight Spectral Indices (SI) from pre and post fire Sentinel 2 satellite imagery. The fire severity classification model was trained using high resolution (<35 cm) post-fire near-infrared aerial imagery from 12 bushfires which occurred during the 2018/2019 fire season across areas of Central and Eastern Victoria. A detailed description of the classification methodology can be found in Collins et al. (2018). The classification covers woody vegetation landcover types (including native and non-native forest, woodland and shrubland).\nThe primary purpose of this data to provide rapid and comprehensive landscape-scale spatial information about bushfire severity to inform initial risk assessments on the public land in the actual and potential impact zone. This assists with the transition from response to emergency stabilisation and initial recovery in accordance with the Code of Practice for Bushfire Management on Public Land (2012).\nFire severity classes are i) Canopy burnt (Class 6)- CB (> 20% canopy foliage consumed); ii) High canopy scorch (5) - HCS (>80% of canopy foliage is scorched); Medium canopy scorch (4) - MCS (Canopy is a mosaic of both unburnt and scorched foliage, 20 - 80%); iii) Low canopy scorch (3) - LCS (Canopy foliage is largely unaffected (<20% scorched), but the understorey has been burnt); iv) Unburnt (2) - UB (Canopy and understorey foliage are largely (>90%) unburnt). Additional classes: v) No Data (0) (e.g. due to obscuration by cloud, cloud-shadow and/or smoke and haze) and vi) Non-woody vegetation (unclassified) (1). \nAn independent cross-validation of the classification model was used to estimate global and per-class model accuracy. Overall accuracy is estimated to be 85% (0.81 Kappa), with producer per-class accuracy ranging from 97% (CB), 91% (HCS), 88% (UB), 75% (LCS) and 61% (MCS). A ground-based validation of the classification has not been undertaken. \nData is provided on the basis that users undertake responsibility for assessing the relevance and accuracy of its content. The Department of Environment, Land, Water and Planning, on behalf of the Victorian Government, makes no representations, either expressed or implied, as to the suitability of this data for any particular purpose.\nWe do not accept any liability to any person:\n- for the information, data or advice (or the use of such information, data or advice) which is provided or incorporated into it by reference\n- for any interference with or damage to a user's computer, software or data occurring in connection with or relating to this data or its use\nRelated research can be found in L. Collins, P. Griffioen, G. Newell, A. Mellor (2018), The utility of Random Forests for wildfire severity mapping, Remote Sensing of Environment, 216, 374-384", "anzlicid": "ANZVI0803008638", "geonet_info_createdate": "2020-04-27", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bcae6faf4246195675d4b5a40b5a233c9551c179", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6ff1225f-28e6-5c9f-ad68-30110c645a6f", "publicationdate": "2019-12-07", "publishedforgroup": "12264;0", "geonet_info_changedate": "2020-02-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital format", "type": "dataset", "title": "Immediate Protection Areas IPA", "alttitle": "IMMEDIATE_PROTECTION_AREAS", "tempextentbegin": "2019-11-20T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2019-11-20T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41500\", \"uuid\": \"6ff1225f-28e6-5c9f-ad68-30110c645a6f\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-13\", \"changeDate\": \"2020-02-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Immediate Protection Areas IPA", "abstract": "This layer represents polygon coverage of immediate protection areas announced under the Victorian Forestry Plan and updated on 21 November 2019. The Immediate Protection Area (IPA) responds to a new conservation measure described within the Flora and Fauna Guarantee (FFG) Action Statement for the Greater Glider and indicates areas of State Forest (including existing Special Protection Zone, Special Management Zone and General Management Zone) and other public land areas where timber harvesting operations are to be excluded.", "anzlicid": "ANZVI0803008620", "geonet_info_createdate": "2020-02-13", "revisiondate": "2020-02-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2190f356007701828487d79ac6219ef1df34ffae", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8867727d-36e5-5529-9807-3e93c58d4c48", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-06-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Chloride Sampled GMS Bore Locations", "alttitle": "GW_BORES_CL", "tempextentbegin": "2011-08-01T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-03-02T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33622\", \"uuid\": \"8867727d-36e5-5529-9807-3e93c58d4c48\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-06-21\", \"changeDate\": \"2013-06-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Chloride Sampled GMS Bore Locations", "abstract": "This dataset contains information for boreholes that record groundwater chloride concentration levels sourced from the Victorian Groundwater Management System (GMS). It could be used in conjuction with the chloride deposition in rainfall dataset (developed by the CSIRO) to undertake a mass balance analysis to derive groundwater recharge.", "anzlicid": "ANZVI0803004933", "geonet_info_createdate": "2013-06-21", "revisiondate": "2013-06-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d5d84fd0ff30034a7e826d9757a0d6934c3eb3fb", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e5456012-837b-5982-8f04-b05e01f7c08b", "publicationdate": "2018-01-23", "publishedforgroup": "12264;0", "geonet_info_changedate": "2015-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL: Standard GIS Vector layers", "type": "dataset", "title": "Port Phillip Bay seagrass mapping at nine aerial assessment regions in April 2008", "alttitle": "SEAGRASS_PPB_9REGIONS_APRIL08", "tempextentbegin": "2008-04-19T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2008-08-11T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;farming;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33624\", \"uuid\": \"e5456012-837b-5982-8f04-b05e01f7c08b\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-25\", \"changeDate\": \"2015-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Port Phillip Bay seagrass mapping at nine aerial assessment regions in April 2008", "abstract": "This polygon layer represents seagrass habitat at nine regions in Port Phillip Bay in April 2008 mapped from aerial photography. The mapping was undertaken for the Baywide Seagrass Monitoring Program (CDP_ENV_MD_022 Rev5 - Port of Melbourne Corporation, 2010). The program is being undertaken for the Port of Melbourne Corporation as part of Baywide Monitoring to support the Channel Deepening Project.", "anzlicid": "ANZVI0803004651", "geonet_info_createdate": "2015-11-25", "revisiondate": "2015-11-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2da69894823c13b2c741cf276ce7d8585f72ed0f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "957d76d0-8637-59c8-9b30-ea5bd0df272f", "publicationdate": "2018-10-30", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-31", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Designated Water Supply Catchments", "alttitle": "PWSC100", "tempextentbegin": "1991-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:37+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33715\", \"uuid\": \"957d76d0-8637-59c8-9b30-ea5bd0df272f\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-14\", \"changeDate\": \"2021-08-31\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Designated Water Supply Catchments", "abstract": "Formerly Proclaimed Water Supply Catchments.\nDomestic Water Supply Catchments as proclaimed under the Soil Conservation and Land Utilization Act, 1958 in conjunction with the Land Conservation Act, 1970. This layer identifies domestic Water Supply Catchments that are subject to a Land Use Determination or a Land Use Notice.", "anzlicid": "ANZVI0803001039", "geonet_info_createdate": "2017-03-14", "revisiondate": "2021-08-31", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "df2e8be448d6a60df84cc424fca5fcb1cf09a2ef", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0738854a-a44b-5ace-9e83-61cf4e51996e", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-02-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, MapInfo, Non digital - plotted maps", "type": "dataset", "title": "Geophysical Miscellaneous lines (1:100,000), Geophysical Interpretation of other linear geological features", "alttitle": "GPMISCL100", "tempextentbegin": "1994-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33720\", \"uuid\": \"0738854a-a44b-5ace-9e83-61cf4e51996e\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-09\", \"changeDate\": \"2016-02-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geophysical Miscellaneous lines (1:100,000), Geophysical Interpretation of other linear geological features", "abstract": "This dataset displays miscellaneous geological line data not covered by the other geophysical datasets.\n\nAt scales larger than 1:120,000 the display is a combination of both 1:100,000 and 1:250,000 geophysical mapping. Recent 1:250,000 geophysical mapping has been of such quality and detail it has been used to supersede older coincident 1:100,000 mapping. This occurs in the following areas: St Arnaud 7524, Dunolly 7624, Charlton 7525, Wedderburn 7625 and part of Ararat 7423 are superseded by St Arnaud SJ54-4. Bendigo 7724, Heathcote 7824 and Nagambie 7924 are superseded by Bendigo SJ55-1. \n\nBalmoral 7223, Ararat 7423, Horsham SJ54-3 and St Arnaud SJ54-4 supersede Grampians 7323 where there is overlap.\n\nThis data has been collected by the Geological Survey of Victoria. This dataset is accompanied by other datasets representing geological polygons and boundaries, sub-surface geological polygons, structural lines and metamorphism.", "anzlicid": "ANZVI0803002669", "geonet_info_createdate": "2016-02-09", "revisiondate": "2016-02-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2efd1673d2e085ee2d14655c611d9f11c2d09e2b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a42f0610-229d-5642-ae05-a6f2006e12f7", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - Victorian Government Region Polygon Aligned to Property", "alttitle": "VICGOV_REGION", "tempextentbegin": "2005-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:39+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35763\", \"uuid\": \"a42f0610-229d-5642-ae05-a6f2006e12f7\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - Victorian Government Region Polygon Aligned to Property", "abstract": "Part of the Vicmap Admin dataset series. \n\nThis dataset contains the Victorian Government Regional Departmental Boundaries as defined by Local Government Victoria, Dept. of Planning & Community Development (DPCD). There are eight regions.\n\nAligned to Vicmap Property.", "anzlicid": "ANZVI0803003034", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "527a19891d8ca35b68d49e6ade392184da07d2ce", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d6f410a9-57a4-5414-9c22-0360328a02ef", "publicationdate": "2018-04-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-11-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - Shapefile", "type": "dataset", "title": "Geological units represented as two dimensional polygons (1:250,000)", "alttitle": "SG_GEOLOGICAL_UNIT_250K", "tempextentbegin": "2005-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2014-08-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33676\", \"uuid\": \"d6f410a9-57a4-5414-9c22-0360328a02ef\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-11-05\", \"changeDate\": \"2014-11-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological units represented as two dimensional polygons (1:250,000)", "abstract": "This dataset contains primary geological data, namely outcropping/sub-cropping geological rock units and boundary types separating rock units. Other geological features (e.g. fault or dyke) are included where the feature forms a boundary to rock units. The polygon edges are constructed from the corresponding geological contacts and faults layer\n\nThe data have been collected by the GeoScience Victoria.", "anzlicid": "ANZVI0803004691", "geonet_info_createdate": "2014-11-05", "revisiondate": "2014-11-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f295e619b0f4b678399caf846851077cf6ee54ae", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "df71f7c1-e697-5527-b370-88a8f8f323ab", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-11", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Spatial Vision Mapbook Index 1:20,000 Edition 6", "alttitle": "MAPBOOK_MAPINDEX_20_ED6", "tempextentbegin": "2018-11-26T13:00:00+00:00", "resowner": "Spatial Vision Pty Ltd", "tempextentend": "2018-11-26T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Biannually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35717\", \"uuid\": \"df71f7c1-e697-5527-b370-88a8f8f323ab\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-05-20\", \"changeDate\": \"2021-11-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Spatial Vision Mapbook Index 1:20,000 Edition 6", "abstract": "This dataset is derived from the Mapbook directory and contains the map index for the 1:20 000 town maps.", "anzlicid": "ANZVI0803004603", "geonet_info_createdate": "2013-05-20", "revisiondate": "2021-11-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "19b5caf32384cbce8611f8f73ca16aa1408a0199", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f4173d98-ef98-5690-b9d5-70808fcc3403", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-11-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Bass Strait Depth Zone Polygons at 1:250,000", "alttitle": "BATHYMETRY_BASS_STRAIT_POLY", "tempextentbegin": "1995-01-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "1995-03-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33657\", \"uuid\": \"f4173d98-ef98-5690-b9d5-70808fcc3403\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-11-13\", \"changeDate\": \"2014-11-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Bass Strait Depth Zone Polygons at 1:250,000", "abstract": "This layer contains polygon features which represent depth zones in Bass Strait.", "anzlicid": "ANZVI0803004017", "geonet_info_createdate": "2014-11-13", "revisiondate": "2014-11-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ed2cc7ca74d61dd0283f4a08a30ed4b43af2c486", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "8a7b3226-4721-57a8-bc95-035c7478acc0", "publicationdate": "2022-03-16", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "Aircraft Predetermined Dispatch Boundaries", "alttitle": "CFA_PDD", "tempextentbegin": "2014-09-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2015-09-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;planned", "topiccat": "boundaries;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35695\", \"uuid\": \"8a7b3226-4721-57a8-bc95-035c7478acc0\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-10-26\", \"changeDate\": \"2022-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "limitedDistribution", "defaulttitle": "Aircraft Predetermined Dispatch Boundaries", "abstract": "Boundaries indicating the Predetermined Dispatch Boundaries for Aircraft. This dataset has been updated to represent the boundaries for the 2022 season. \n\nThe CFA_PDD_HARVEST and CFA_PDD_POST_HARVEST datasets have been replaced by this one.", "anzlicid": "ANZVI0803005351", "geonet_info_createdate": "2017-10-26", "revisiondate": "2022-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fb6e29930033b3da606c083436f3b859e34f759f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5528c2ea-cdb1-56ca-aa3f-fff9d8277b99", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats.", "type": "product", "title": "Vicmap Property", "alttitle": "VICMAP_PROPERTY", "tempextentbegin": "2023-01-24T00:02:19+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:19+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35696\", \"uuid\": \"5528c2ea-cdb1-56ca-aa3f-fff9d8277b99\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-07\", \"changeDate\": \"2022-07-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Property", "abstract": "Vicmap Property consists of data representing Victoria's land parcels and properties and is used extensively in Geographic Information Systems (GIS) by the public and private sectors. \n\nVicmap Property Content includes\n \u00b7 Parcel and Property Polygon views;\n \u00b7 Parcel and Property Identifiers - parcel descriptors (including Standard Parcel Identifiers (SPI)), \n Council reference numbers;\n \u00b7 Registered and proposed (All proposals entered prior to July 2002 are non-polygonal and all \n entered post July 2002 are polygonised) parcels;\n \u00b7 Crown and Freehold land differentiation;\n \u00b7 Cadastral Road Casements;\n \u00b7 Easements (Note: all new easements are being captured for the whole State. Previously, only \n easements in the metropolitan area were captured. There is no current program to review and \n capture missing easements);\n \u00b7 Unique Feature Identifiers, date stamps and data quality information.\nSpatial Datasets comprising Vicmap Property are listed below. See their metadata entries for more detailed metadata.\nAnnotation Text - Vicmap Property (ANNOTATION_TEXT);\nCadastral Area Boundary - Vicmap Property (CAD_AREA_BDY);\nEasement - Vicmap Property (EASEMENT)\nCentroid - Vicmap Property (CENTROID);\nParcel View - Vicmap Property (PARCEL_VIEW);\nProperty View - Vicmap Property (PROPERTY_VIEW);\nRoad Casement - Vicmap Property (ROAD_CASEMENT_POLYGON );\nUnconnected Centroid - Vicmap Property (UNCONNECTED_CENTROID);", "anzlicid": "ANZVI0803002683", "geonet_info_createdate": "2017-03-07", "revisiondate": "2022-07-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b49598ed7d59682bf0c7b9328836160b5f29baf4", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f8bb9033-7c7e-506c-b685-35511abae8c5", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Framework State Table", "alttitle": "FR_STATE", "tempextentbegin": "2023-01-24T00:02:19+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:19+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33661\", \"uuid\": \"f8bb9033-7c7e-506c-b685-35511abae8c5\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Framework State Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003229", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a61b9ecae8dd77f62f88e120ffac9bd53656349b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7b4879b2-8614-513d-97b9-b736786f872e", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Flood height point data 2012", "alttitle": "HISTORIC_HEIGHT_PT", "tempextentbegin": "1869-12-31T14:20:08+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2012-08-20T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35698\", \"uuid\": \"7b4879b2-8614-513d-97b9-b736786f872e\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-12-12\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Flood height point data 2012", "abstract": "Point features delineating observed and interpreted flood heights, derived from observations during flood events as well as flood mapping projects. The height captured is the height in metres above the AHD of flood levels reached. \nIt shows recorded flood heights from 1870 to 2012. \nIt is used in conjunction with historic flood extents and contours.\n\nThe data is coded with date of observation (actual flood time and date) as much as possible.\n\nNote: \n- This data does NOT represent flood water depth.\n- The Flood Height Points dataset accommodate all available flood height point data, including observed flood heights until 2012. \n- All historical data is included with observed, interpreted and modelled flood height data for each event within the one layer.\n\nA reliability and interpretation methodology can apply to each point.", "anzlicid": "ANZVI0803003625", "geonet_info_createdate": "2018-12-12", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d64bd2f83a84a550d3423d8aa023f2bda3531eca", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0f31e046-c713-5fe8-aa75-5e180b2ae148", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Road Type Table", "alttitle": "ROAD_TYPE", "tempextentbegin": "2023-01-24T00:02:21+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:21+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33667\", \"uuid\": \"0f31e046-c713-5fe8-aa75-5e180b2ae148\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Road Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003160", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4a881a11afb7e1b99e3e30107d1346499cbf7b9e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "50438d3f-636a-5a13-abcf-c67e3d7fad53", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - State Council Polygon 2013", "alttitle": "STATE_COUNCIL_2013", "tempextentbegin": "2005-10-29T14:00:00+00:00", "resowner": "Victorian Electoral Commission", "tempextentend": "2023-01-24T00:02:21+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33668\", \"uuid\": \"50438d3f-636a-5a13-abcf-c67e3d7fad53\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-08-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - State Council Polygon 2013", "abstract": "Statewide data showing Upper House boundaries and names. These are the Legislative Council Electoral boundaries referred to as the Upper House Boundaries. \n\nThese boundaries are the result of the 2012-2013 State Redivision conducted under requirements of the Electoral Boundaries Commission Act 1982. These boundaries will apply at the Victorian State Election in 2014.", "anzlicid": "ANZVI0803005250", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-08-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fb23647055b12ed0d294add73015dad023e25061", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2a68c769-5237-55bc-8848-e0b12935e732", "publicationdate": "2023-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-10-07", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "type": "dataset", "title": "EPA Victoria Groundwater Quality Restriction Use Zones (GQRUZ) - Location Polygons", "alttitle": "GQRUZ_POLYGON", "tempextentbegin": "1905-11-30T14:00:00+00:00", "resowner": "Environment Protection Authority Victoria", "tempextentend": "2020-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Daily", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;society;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33645\", \"uuid\": \"2a68c769-5237-55bc-8848-e0b12935e732\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-08-15\", \"changeDate\": \"2020-10-07\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "EPA Victoria Groundwater Quality Restriction Use Zones (GQRUZ) - Location Polygons", "abstract": "Groundwater Quality Restricted Use Zones (GQRUZ) are areas where there has been historic groundwater pollution as a result of previous industrial or other activities. These zones have been subject to clean up in line with the relevant environmental standards. However, restrictions remain on what the water can be used for if it is extracted via a groundwater bore.\n\nA GQRUZ remains when attempts have been made to clean up the groundwater at the affected site, but full clean-up was not possible - as it is often difficult to remove 100 per cent of groundwater pollution. It also may be impractical to clean up groundwater to the level needed to restore it to its original condition. EPA then identifies restrictions that should remain on how the water can be used without further treatment.\n\nGQRUZ do not represent a comprehensive list of all sites where groundwater quality may not be suitable for use. Rather, they represent locations where EPA has formally recognised that groundwater is polluted, following site investigations under EPA's environmental audit program. Other sources of information on groundwater quality include EPA's Priority Sites Register, which lists sites which are currently undergoing clean-up under EPA's compliance and enforcement activities.\n\nThis dataset mirrors the GQRUZ data available on EPA's website interaction portal, but may not be up to date due to data transfer processes. For the most up to date data, go to EPA's website interaction portal.", "anzlicid": "ANZVI0803005873", "geonet_info_createdate": "2019-08-15", "revisiondate": "2020-10-07", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8834224fa29769c94a4a73981c1d72bf74e1426c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "9de96197-aacd-5dc7-b952-ca759b8a3e43", "publicationdate": "2017-11-09", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-12-02", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "ESRI Shapefile", "type": "dataset", "title": "Electricity Distribution Boundaries", "alttitle": "ELECTRICITY_DISTRIBUTOR", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35729\", \"uuid\": \"9de96197-aacd-5dc7-b952-ca759b8a3e43\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-11-22\", \"changeDate\": \"2022-12-02\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Electricity Distribution Boundaries", "abstract": "The data outlines the boundaries, on a map, of the five electricity distributors in Victoria. http://www.esc.vic.gov.au/", "anzlicid": "ANZVI0803005805", "geonet_info_createdate": "2017-11-22", "revisiondate": "2022-12-02", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1cd3ec52f53414c272661b3b10670d3ff02b8dab", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "60862af2-e3f7-5372-9e06-2bdc85142f67", "publicationdate": "2021-08-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "PTV Regional Bus Routes", "alttitle": "PTV_REGIONAL_BUS_ROUTE", "tempextentbegin": "2018-02-28T13:00:00+00:00", "resowner": "Department of Transport", "tempextentend": "2023-01-24T00:02:30+00:00", "maintenanceandupdatefrequency_text": "Quarterly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33693\", \"uuid\": \"60862af2-e3f7-5372-9e06-2bdc85142f67\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-02\", \"changeDate\": \"2022-02-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "PTV Regional Bus Routes", "abstract": "This layer depicts a spatial object (polyline) representing regional bus routes. Each polylines represents a unique route variation. Each bus route has attributes that describe route, trip headsign (direction), route length, first/last stop, number of stops and operator name. The data has been generated from the PTV GTFS data with extra attributes from PTV's TransNet database. \nThis dataset does not include V/Line Coach Routes. V/Line Coach routes are included in the dataset PTV_REGIONAL_COACH_ROUTE.\nThis dataset supersedes \"PTV_BUS_ROUTE_REGIONAL\" (which included both regional bus and regional coach routes).\nThis dataset was first loaded into the VSDL in March 2018 and will be updated approximately quarterly.", "anzlicid": "ANZVI0803005845", "geonet_info_createdate": "2018-03-02", "revisiondate": "2022-02-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0da8c6086f447e67325430801d0a2b4d552fb84e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8593a7c5-5977-5ea9-a824-9541536804ad", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-12-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Catch and Effort Cells for the Gippsland Lakes fisheries", "alttitle": "CE_GIPPSLAND_LAKES_1998", "tempextentbegin": "2004-02-03T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2004-02-03T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35733\", \"uuid\": \"8593a7c5-5977-5ea9-a824-9541536804ad\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-12-05\", \"changeDate\": \"2016-12-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Catch and Effort Cells for the Gippsland Lakes fisheries", "abstract": "This layer features the area cells used to record Catch and Effort data for the Gippsland Lakes commercial fisheries since April 1998. This layer is also used by the Gippsland Lakes and Gippsland Lakes (Mussel Dive) fisheries.", "anzlicid": "ANZVI0803002811", "geonet_info_createdate": "2016-12-05", "revisiondate": "2016-12-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "67e3a7bd1e5498731aa5d117ec205cadf172f38e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "82794bd0-771f-5e44-b0ac-e736fce55286", "publicationdate": "2022-07-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-20", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "shapefile ArcSDE", "type": "dataset", "title": "Water Corporations", "alttitle": "WATER_CORP", "tempextentbegin": "2007-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33695\", \"uuid\": \"82794bd0-771f-5e44-b0ac-e736fce55286\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-04-13\", \"changeDate\": \"2022-07-20\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Water Corporations", "abstract": "Boundaries defining the approximate jurisdiction of the Urban Water Corporations.\nOn 1 July 2021, Greater Western Water was formed by merging Western Water and City West Water.", "anzlicid": "ANZVI0803005824", "geonet_info_createdate": "2018-04-13", "revisiondate": "2022-07-20", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f496cc339b93c2b16f0e42990333c0a1209245d2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0058eda4-7b1e-5681-9758-7adbda8481b1", "publicationdate": "2021-08-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "PTV Metro Tram Stops", "alttitle": "PTV_METRO_TRAM_STOP", "tempextentbegin": "2018-02-28T13:00:00+00:00", "resowner": "Department of Transport", "tempextentend": "2023-01-24T00:02:32+00:00", "maintenanceandupdatefrequency_text": "Quarterly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35739\", \"uuid\": \"0058eda4-7b1e-5681-9758-7adbda8481b1\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-02\", \"changeDate\": \"2022-02-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "PTV Metro Tram Stops", "abstract": "This layer depicts spatial objects (points) representing metropolitan tram stops. Each tram stop has attributes that describe StopID, StopName, Lat/Long, Ticket Zone and Routes Using Stop. The data has been generated from the PTV GTFS data with extra attributes from PTV's TransNet database. \nThis dataset supersedes \"PTV_TRAM_STOP\" (which included metro and regional stops).\nThis dataset was first loaded into the VSDL in March 2018 and will be updated approximately quarterly.", "anzlicid": "ANZVI0803005856", "geonet_info_createdate": "2018-03-02", "revisiondate": "2022-02-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "407a5de6db5353350b91e451c91f4aebae072a9a", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1d1b5a75-39f8-5f7b-841e-b3b416066943", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-04-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Property - Parcel Polygon associated Display View Polygon Table", "alttitle": "PARCEL_VIEW_DVP", "tempextentbegin": "2023-01-24T00:02:33+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:33+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35743\", \"uuid\": \"1d1b5a75-39f8-5f7b-841e-b3b416066943\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-04-08\", \"changeDate\": \"2014-04-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Property - Parcel Polygon associated Display View Polygon Table", "abstract": "Part of VMPROP, PARCEL_VIEW_DVP is an Aspatial table. \n\nIt is created by comparing the polygons in the PARCEL_VIEW table with the polygons in the DISPLAY_VIEW_POLYGON table. It holds a record for each PFI in the PARCEL_VIEW table, and the DISPLAY column has a value indicating whether the polygon is Inside, Outside, or Both (partly inside and partly outside) a DISPLAY_VIEW_POLYGON polygon.\n\nThis dataset provides a way of limiting the display of parcel_view polygons so maps can be drawn efficiently. Polygons with a DISPLAY value of I (inside) can be drawn at larger scales (eg 1:5000), while those with O (outside) can be drawn at smaller scales (eg. 1:50,000). This means rural areas can be displayed at a suitable scale, without the burden of displaying polygons in a town. A DISPLAY value of B (both) is used for some polygons which can be displayed at both scales. These can be rivers, or multi-part polygons with parts inside and outside the DVP. \n\nTo use this flag for drawing a join is needed - parcel_view.pfi = parcel_view_dvp.parcel_view_pfi", "anzlicid": "ANZVI0803005223", "geonet_info_createdate": "2014-04-08", "revisiondate": "2014-04-08", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e97d60841b1cd35615898083313f5e1ca35d3a0a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "82b46b59-9ce5-5baa-a0cf-2a227d1861ac", "publicationdate": "2018-10-25", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-11-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "2016 Bellarine Peninsula 1% AEP Coastal Inundation Dynamic Model with 0.8m Sea Level Rise", "alttitle": "BP_DYNAMIC_1AEP_080SLR", "tempextentbegin": "2014-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;geoscientific information;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33704\", \"uuid\": \"82b46b59-9ce5-5baa-a0cf-2a227d1861ac\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-10-19\", \"changeDate\": \"2022-11-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2016 Bellarine Peninsula 1% AEP Coastal Inundation Dynamic Model with 0.8m Sea Level Rise", "abstract": "The Bellarine-Corio Bay Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Bellarine-Corio Bay coastal environment.\n\nDynamic inundation modelling was carried out to create this data layer for 1% Annual Exceedance Probability (AEP) coastal inundation under the assumption of 0.8 m Sea Level Rise in 2016, for the following study areas along the coast of the Bellarine Peninsula and Greater Geelong area: Barwon Heads / Lake Connewarre; Breamlea; Newcomb; and Queenscliff / Lakers Cutting.\n\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.\n\nAttribute Information: \nMax_d - Maximum depth (m); \nmax_s - Maximum velocity (m/s); \nmax_vxd - Velocity*Depth Criteria; \nmax_wse - Maximuum water surface elevation (mAHD).", "anzlicid": "ANZVI0803005924", "geonet_info_createdate": "2018-10-19", "revisiondate": "2022-11-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "85a2d9bc1bd14404582d219e56716dafc23f2f8e", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ce04d9e3-22e8-5266-814b-ddde962f724b", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Fragmentation Reach Summary Table", "alttitle": "ISC2010_FRAGMENTATION_R", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33706\", \"uuid\": \"ce04d9e3-22e8-5266-814b-ddde962f724b\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Fragmentation Reach Summary Table", "abstract": "The ISC2010_FRAGMENTATION_R table is the Statistical Summary table for the Fragmentation Metric at the Reach level.\n\nThe ISC2010_FRAGMENTATION_R table is designed to JOIN to the ISC2010_RIVER_CENTRELINES_R feature class.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005129", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "769ce82615de1f5222cf20c8920fc68be7913e1d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "438ecb7f-eb2f-5c44-a625-3a464bbb7f11", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-11-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Regolith Observation Points from field mapping", "alttitle": "REGOLPT", "tempextentbegin": "2001-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2002-03-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35746\", \"uuid\": \"438ecb7f-eb2f-5c44-a625-3a464bbb7f11\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-11-29\", \"changeDate\": \"2013-11-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Regolith Observation Points from field mapping", "abstract": "Regolith information derived from field mapping. Includes information on regolith materials, landforms, bedrock lithology, geomorphological processes and environmental hazards for particular field sites.", "anzlicid": "ANZVI0803002598", "geonet_info_createdate": "2013-11-29", "revisiondate": "2013-11-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "53511ad6023e3c82af26a90ba5b47c7e659a49cd", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "23efc056-dbb6-5b0d-ab3a-78dbaaed84ad", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Infrastructure Mine Substance Exracted Table", "alttitle": "IN_MINE_SUBSTANCE_EXTRACTED", "tempextentbegin": "2023-01-24T00:02:35+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:35+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35750\", \"uuid\": \"23efc056-dbb6-5b0d-ab3a-78dbaaed84ad\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Infrastructure Mine Substance Exracted Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003204", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f0b16a06cc38b5cc8b0b8bf8768898e31c6e61ef", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2cefd40b-c5bb-5989-b9b0-c2843f401958", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - State Council Polygon 2005", "alttitle": "STATE_COUNCIL_2005", "tempextentbegin": "2005-10-29T14:00:00+00:00", "resowner": "Victorian Electoral Commission", "tempextentend": "2023-01-24T00:02:36+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33710\", \"uuid\": \"2cefd40b-c5bb-5989-b9b0-c2843f401958\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - State Council Polygon 2005", "abstract": "State wide data showing Upper House boundaries and names. These are the Legislative Council Electoral Boundaries referred to as the Upper House Boundaries .\nElectoral Boundaries are defined under the requirements of the Electoral Boundaries Commission Act 1982.\nSTATE_COUNCIL_2005 boundaries may contain overlaps and slivers due to maintenance regime. It is the intention that these will be removed over the next 12 months.\n\nSUPERSESED dataset by VMADMIN_STATE_COUNCIL_2013.", "anzlicid": "ANZVI0803003063", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "56dd2ce4db915b82994abb400865a3029d9b6794", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "11cdc5f0-53bd-52bb-af7c-504e2fa2eb8c", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Remote Sensing Reliability Table", "alttitle": "RS_FEATURE_RELIABILITY", "tempextentbegin": "2023-01-24T00:02:36+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:36+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33712\", \"uuid\": \"11cdc5f0-53bd-52bb-af7c-504e2fa2eb8c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Remote Sensing Reliability Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products. VMREFTAB_REFERENCE_TABLE a defintitve list of Reference Tables belonging to Vicmap Reftab.", "anzlicid": "ANZVI0803003157", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "3792d62242f2af6008ae9f92a528df4ff9318a0d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9758b6cc-9d46-59d2-a7e8-9dbcdb00027e", "publicationdate": "2022-12-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-09-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo, MapInfo", "type": "dataset", "title": "Restricted and Unavailable Crown Land for Petroleum Operations", "alttitle": "PLM25_PA", "tempextentbegin": "2011-08-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2011-08-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;boundaries;economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35754\", \"uuid\": \"9758b6cc-9d46-59d2-a7e8-9dbcdb00027e\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-19\", \"changeDate\": \"2013-09-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Restricted and Unavailable Crown Land for Petroleum Operations", "abstract": "Land where special permission must be obtained for Petroleum Opertaions\n\nThis layer was developed for land classification for the \nPetroleum Act 1998\n\nThis layer is derived mostly from selections from Public Land Management PLM25. Other sources of data include PLM100_V_MMT_WILDLIFE_MGMT for wildlife reserves, PLM100_V_MMT_HERITAGE_RIVER for heritage rivers, PLM100_V_MMT_NATRL_CATCHMENT for natural catchemnt area , PLM100_V_MMT_REFERENCE_AREAS for reference areas, PLM100_V_MMT_WILDERNESS_ZONE for wilderness zones and VEACREC25_POLYGON for water authority land.\n\nThe dataset PLM25_PA is an amalgamation of features defined by:\nPetroleum Act 1998- SECT 137\nPetroleum Act 1998- SECT 139\nPetroleum Act 1998- SECT 140 and \nNational Parks Act 1975 SECT 40 Part (2)\n\nThe GeoVic3 layers:\nWilderness and Reference (PA s.137)\nRestricted Crown Land (PA s.139)\nWater Authority Land (PA s.140) and\nNational and State Parks (NPA s. 40(2))\n\nare subsets from the layer PLM25_PA\n\nPLM25_PA has captured the following features:\nregional parks\ncoastal parks, including Gippsland Lakes Reserve\nmarine parks\nwildlife reserves including Wildlife Management Co-operative Areas\nwildlife reserves including Wildlife Management Co-operative Areas\nnatural features and scenic reserves including caves and geological reserves\nbushland reserves\nhistoric areas and reserves\npublic land water frontage reserves\nstreamside reserves including River Murray Reserve\ncoastal reserves\nnational heritage parks\nnature conservation reserves\nhistoric and cultural features reserves\nalpine resorts\nheritage rivers\nnatural catchment areas\ncrown land reserves - natural feature reserves\ncrown land reserves - nature conservation reserves\ncrown land reserves - forest parks\nreference areas\nnational parks\nwilderness areas\nstate parks\nwilderness zones\nwater authority land", "anzlicid": "ANZVI0803004566", "geonet_info_createdate": "2013-09-19", "revisiondate": "2013-09-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6bd9d4ee6fb4f0eb81eb005cb9081d2b10c6baff", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "243306da-ecf3-5761-a9b9-0b404baeb0ce", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-03-03", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Features - Geomark Line", "alttitle": "GEOMARK_LINE", "tempextentbegin": "2014-08-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:44+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;inland waters;location;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35777\", \"uuid\": \"243306da-ecf3-5761-a9b9-0b404baeb0ce\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-03-03\", \"changeDate\": \"2016-03-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Features - Geomark Line", "abstract": "Linear location of named or 'could be' named Victorian topographic features. Inclusions are rivers, water bodies, transport (excluding roads), geographic features and most of the Vicmap Features of Interest linear content. These features all reside within the Vicmap Framework Products. \nFeatures are combined to create one piece of geometry based on name and type. \nLinear features include transmission lines, chairlifts and pipelines", "anzlicid": "ANZVI0803005316", "geonet_info_createdate": "2016-03-03", "revisiondate": "2016-03-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "96b401702f9f6cf50992c9e7b0314eea29984b1b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "c583273a-67f3-5778-a171-ab7878fd9466", "publicationdate": "2020-11-03", "publishedforgroup": "12264;0", "geonet_info_changedate": "2022-08-15", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Fire Management Zones 2017", "alttitle": "FIREFMZ_2017", "tempextentbegin": "2010-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:45+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "obsolete", "topiccat": "environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41932\", \"uuid\": \"c583273a-67f3-5778-a171-ab7878fd9466\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-10-22\", \"changeDate\": \"2022-08-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Obsolete", "mdclassification": "limitedDistribution", "defaulttitle": "Fire Management Zones 2017", "abstract": "This dataset is OBSOLETE and has been replaced by FIREFMZ (approved Oct 2020)\nThis layer represents polygon coverage of fire management zones across all the State, generally on Public Land. The Fire Management Zone is an area of land which provides a framework for future Fire Operation Plans and whether fire is suitable for managing public land to provide asset protection, bushfire moderation, landscape management or planned burn exclusion.\n\nDataset last updated 20 April 2017 with changes from WCBRL (per A Boak).\nDataset updated 30 Jan 2017 with changes from ECBRL (per F Wilson).\nDataset updated 19 August 2016 with changes from MMGBRL (per D Prior).", "anzlicid": "ANZVI0803008697", "geonet_info_createdate": "2020-10-22", "revisiondate": "2022-08-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a389b90144c7eb29de7725a8134d66c96bf3d063", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "4b9d8b66-a17f-5765-a24f-b581cbba33b4", "publicationdate": "2019-03-22", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-11-19", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Licensed groundwater bores", "alttitle": "LICENSED_BORES", "tempextentbegin": "1970-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2017-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33741\", \"uuid\": \"4b9d8b66-a17f-5765-a24f-b581cbba33b4\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2019-11-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Licensed groundwater bores", "abstract": "The Water Act, 1989, requires that anoyone wishing to extract groundwater must apply for a groundwater licence. Groundwater licences are issued to protect the rights of licence holders, ensure that water is shared amongst users and to ensure that environmental requirements are protected.\n\nThis dataset is derived from the Victorian Water Register.", "anzlicid": "ANZVI0803005941", "geonet_info_createdate": "2019-11-19", "revisiondate": "2019-11-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f95f530dcc8a207ff7e6f067a9c69d30a1351a57", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6871cdb0-2525-5ccc-b3e4-d6721eebd550", "publicationdate": "2022-09-12", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-04-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Hunting Area Dataset Permitted Duck Hunting", "alttitle": "HUNT25_DUCK", "tempextentbegin": "2018-06-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:46+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33743\", \"uuid\": \"6871cdb0-2525-5ccc-b3e4-d6721eebd550\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-06\", \"changeDate\": \"2022-04-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Hunting Area Dataset Permitted Duck Hunting", "abstract": "This hunting area dataset depicting areas where Duck hunting is permitted, have boundaries largely derived from the PLM25 dataset which are supplemented with additional boundaries based on legislative restrictions on hunting. Dataset identifies the conditions under which hunting of given Game and Pest animal groups and species is permitted.\nThe rules used to produce this produce were developed by the legislation unit with the Land Management Division of the Department of Environment , Land, Water and Planning in consultation with the Game Management Authority, VicPolice, Parks Victoria and other relevant government authorities. These rules are based on requirements in the Forest Act, National Park Act, Crown land (Reserve) Act, Land Act, Wildlife Act.\nNote : Hunters are personally responsible for acting in accordance with the Firearms Act 1996\n(including informing themselves about any prohibited locations within the areas shown on this map)\nand other relevant laws; obtaining the required hunting licence; and for hunting only within season.\nMore information can be obtained from the Game Management Authority's web site.\n\nVicmap Basemap Services | State Government of Victoria | @DELWP", "anzlicid": "ANZVI0803005883", "geonet_info_createdate": "2019-11-06", "revisiondate": "2022-04-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "183bced947343e62422b90d060c3d4b41bae09e6", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5f653af2-980d-5135-926b-529b624d954e", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-11-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Groundwater Management Area Zones", "alttitle": "GMA_ZONE", "tempextentbegin": "2004-09-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35808\", \"uuid\": \"5f653af2-980d-5135-926b-529b624d954e\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2019-11-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Groundwater Management Area Zones", "abstract": "This layer is used in association with the GMA layer and represents the internal zone boundaries within each GMA (if applicable).", "anzlicid": "ANZVI0803002945", "geonet_info_createdate": "2019-11-19", "revisiondate": "2019-11-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "10eeeef7da91051c135b7553af10f9f46ce63692", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "84ee5909-6d46-5f35-823e-e15b81a56eee", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Road Restrictions Table", "alttitle": "TR_ROAD_RESTRICTIONS", "tempextentbegin": "2023-01-24T00:02:53+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:53+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33768\", \"uuid\": \"84ee5909-6d46-5f35-823e-e15b81a56eee\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Road Restrictions Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003173", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "52fb37506d45be6a3271f3896336ef511f274362", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "b1bb7afc-5ea6-59f1-b780-c20134f1254c", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-02", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "SDE, CGDL", "type": "dataset", "title": "Dryland salinity discharge layer (point and line coverage)", "alttitle": "SOILSAL25_ARC", "tempextentbegin": "1974-12-31T13:00:00+00:00", "resowner": "Department of Primary Industries", "tempextentend": "2004-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Monthly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "farming;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33772\", \"uuid\": \"b1bb7afc-5ea6-59f1-b780-c20134f1254c\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-06-20\", \"changeDate\": \"2022-08-02\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Dryland salinity discharge layer (point and line coverage)", "abstract": "This layer represents a statewide coverage of dryland salinity discharge sites that are either linear or only identified by point locations. Each site has been allocated a dryland salinity rating which indicates the severity of salinity for that site. It is additional to and supplements the SOILSAL25_A layer. The linear discharge sites are often associated with streams.", "anzlicid": "ANZVI0803002206", "geonet_info_createdate": "2014-06-20", "revisiondate": "2022-08-02", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0f9a39ec677b4e4280201e73058f62f8a092c602", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "0d63e274-6074-5ed9-b9ad-17a27d69f99c", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-16", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Simplified Vicmap Transport Road Network", "alttitle": "VM_ROADSIMPLE", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:56+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33778\", \"uuid\": \"0d63e274-6074-5ed9-b9ad-17a27d69f99c\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-03-31\", \"changeDate\": \"2021-08-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Simplified Vicmap Transport Road Network", "abstract": "This is a simplified layer derived from the Vicmap Transport layer - TR_ROAD. The simplification process primarily involves expanding coded attributes and then unsplitting all arcs that have identical attributes. All arcs of the original dataset are retained.\n\nIt is currently situated within the PROVISIONAL schema on Departmental SDE servers.\nRefer to metadata of TR_ROAD for more information.", "anzlicid": "ANZVI0803003100", "geonet_info_createdate": "2016-03-31", "revisiondate": "2021-08-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9ad9779b0fca1b2e2262e4c956a7fdd6e4402973", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "eafba877-3e6c-5e9b-97eb-1f03fb5ed9b8", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Feature Vicmap to Vicnames Feature Type Mapping Table", "alttitle": "FEATURE_VICMAP2VICNAMES", "tempextentbegin": "2023-01-24T00:02:47+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:47+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35787\", \"uuid\": \"eafba877-3e6c-5e9b-97eb-1f03fb5ed9b8\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Feature Vicmap to Vicnames Feature Type Mapping Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003225", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "073448d289f0979f0d5fd0f5f783903e4aa48fa3", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "83768375-c3b9-555b-b98a-4ee9e428322f", "publicationdate": "2018-10-26", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-11-19", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Upper aquifers hydrograph suites", "alttitle": "SUITES_UPPER_GW", "tempextentbegin": "2012-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2017-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33750\", \"uuid\": \"83768375-c3b9-555b-b98a-4ee9e428322f\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2019-11-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Upper aquifers hydrograph suites", "abstract": "Hydrographs from over 2000 state observation bores were reviewed in order to group bores which have a similar water level trend and are screened in the same aquifer. The groupings of observation bores are referred to as 'suites' and are classified according to the Upper, Middle, Lower and Basement aquifers aligning with the Victorian Aquifer Framework. \n\nBy applying a statistical technical, a normalised hydrograph was developed for each suite using the observed water levels from all bores within the suite. This hydrograph is representative of the groundwater trend within the suite.\n\nA spatial boundary has been created for each suite which encompasses all bores within the suite. The boundaries were manually constructed and cover the extent of the mapped aquifers.", "anzlicid": "ANZVI0803005933", "geonet_info_createdate": "2019-11-19", "revisiondate": "2019-11-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "402a5f1fc6fa5ee6f959d8f32e2fb8582d3f0b43", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "24dfb09b-201b-5656-9e44-4c2f6d55ab98", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2018-03-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Sub-surface Geology - Polygons (1:100,000)", "alttitle": "SGEOL1100_POLYGON", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35796\", \"uuid\": \"24dfb09b-201b-5656-9e44-4c2f6d55ab98\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-29\", \"changeDate\": \"2018-03-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Sub-surface Geology - Polygons (1:100,000)", "abstract": "The data contains sub-surface geological rock units. Multiple datasets may exist over some tiles, numbered as SGEOLn.\n\nThe data have been collected by the Geological Survey of Victoria. The dataset is accompanied by other datasets representing geology outcrop and boundaries, structural lines, miscellaneous lines and points, miscellaneous polygons, metamorphism, and placer deposits.", "anzlicid": "ANZVI0803005580", "geonet_info_createdate": "2018-03-29", "revisiondate": "2018-03-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2e88e47a6ec17173fb2f103aa46e80c4b994d97a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9e7590d4-ec98-5aa4-a251-2d957d3da0c7", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Features - Building Point", "alttitle": "BUILDING_POINT", "tempextentbegin": "2013-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:50+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;location;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35797\", \"uuid\": \"9e7590d4-ec98-5aa4-a251-2d957d3da0c7\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Features - Building Point", "abstract": "Part of the Vicmap Features of Interest Product\nPoint/centroid location of undefined buildings across Victoria that are NOT contained within the following polygon datasets VMFEAT_BUILDING_POLYGON, VMFEAT_PL_PLACE_AREA_POLYGON and where they are not repesented as a feature within the VMFEAT_FOI datasets", "anzlicid": "ANZVI0803004976", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8ffded6353036a17287566218adff8b0872ee761", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ce7ba3a2-7f55-5014-b20a-986890daa069", "publicationdate": "2022-10-22", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Crown Land Tenure - Crown Land Management Tenure Line", "alttitle": "CL_CAD_LINE", "tempextentbegin": "1990-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:03+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33798\", \"uuid\": \"ce7ba3a2-7f55-5014-b20a-986890daa069\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Crown Land Tenure - Crown Land Management Tenure Line", "abstract": "Part of the Vicmap Crown Land Tenure dataset series. This is a statewide dataset that plays a key role in the management of Victoria's Crown land. It has been created (June 2003 - Feb 2004) from migrating LCMP layers into the Vicmap structure.", "anzlicid": "ANZVI0803004570", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5fccdea0e03a5db5a4eb3cba089cac4c48845484", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "353a3185-e77d-5947-9b3a-34d74ceba4d6", "publicationdate": "2019-03-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "VAF_EXTENT_111LTA", "alttitle": "VAF_EXTENT_111LTA", "tempextentbegin": "2012-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2013-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33808\", \"uuid\": \"353a3185-e77d-5947-9b3a-34d74ceba4d6\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "VAF_EXTENT_111LTA", "abstract": "This dataset relates to the Victorian Aquifer Framework (VAF) 3D Surface for the Lower Tertiary Aquifer. It represents the mapped extent of the aquifer.\n\nPlease refer to the master metadata record VAF 'Victorian Aquifer Framework (VAF) 3D Surfaces' for detailed information.", "anzlicid": "ANZVI0803008456", "geonet_info_createdate": "2019-11-19", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a1c790907cb159ea2e05b71dd9b43176a310b451", "fields": {"available_formats": "ECW,GeoTIFF,JPEG,JPEG 2000,TIFF", "resclassification": "unclassified", "uuid": "9ac87cd1-db93-5bac-8a22-b141d0c2991e", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL geotiff", "type": "dataset", "title": "Soil Grids of Victorian - Soil pH (water)", "alttitle": "SOIL_pHw", "tempextentbegin": "1957-12-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2016-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33822\", \"uuid\": \"9ac87cd1-db93-5bac-8a22-b141d0c2991e\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-14\", \"changeDate\": \"2021-07-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Soil Grids of Victorian - Soil pH (water)", "abstract": "A set of Digital Soil Maps (mean, 5th and 95th percentile prediction values) of soil pH (of a 1:5 soil water solution) across Victoria in geotiff format. \n\nGrids of key soil properties have been produced for Victoria. These grids, in raster format, provide prediction and confidence interval values for key soil properties at a 90 m grid resolution for six set depths; 0 to 5 cm, 5 to 15 cm, 15 to 30 cm, 30 to 60 cm, 60 to 100 cm and 100 to 200 cm, across Victoria.\n\nThe grids have been designed to meet the specifications created by GlobalSoilMap (www.globalsoilmap.net) to develop and deliver detailed soil information in a consistent form.\n\nThe grids are a spatial interpolation of key soil properties to support modelling and decision making in resource management, agricultural production, land use policy and planning, and in further research such as ecosystem modelling.\n\nThe methodology used to develop the Soil Grids of Victoria has been based on that refined by the Australian Soil and Landscape Grid. Data and knowledge embedded into existing soil related datasets, e.g. soil profile and land mapping collections, have been key inputs. \n\nWhilst the new maps show an immense amount of fine scale detail, and are our best spatially continuous and exhaustive estimates of soil attributes across all of Victoria, they are most appropriately used for assessments of regional to state-wide trends of soil properties and their relationship with their environment and pedogenesis. Care should be taken when using the grids for local assessments and it is recommended that the confidence intervals are included at this scale.", "anzlicid": "ANZVI0803005794", "geonet_info_createdate": "2019-05-14", "revisiondate": "2021-07-14", "spatialrepresentationtype_text": "Grid"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a0c1338c523c1321b81b021f7997aebf910c7e86", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "86b67bc9-f0bb-533e-a4ec-919c03087fb6", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, MapInfo, Non digital - plotted maps", "type": "dataset", "title": "Geological zones of contact metamorphism interpreted from geophysical interpretation (1:250,000) Arc", "alttitle": "GPCONMETA250_ARC", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33825\", \"uuid\": \"86b67bc9-f0bb-533e-a4ec-919c03087fb6\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-29\", \"changeDate\": \"2022-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological zones of contact metamorphism interpreted from geophysical interpretation (1:250,000) Arc", "abstract": "This dataset displays areas of contact and regional metamorphism, and the style of metamorphism, mapped using using combined interpretations of airborne magnetic, radiometric and gravity survey data at 1:250,000.\n\nAt scales larger than 1:120,000 the display is a combination of both 1:100,000 and 1:250,000 geophysical mapping. Recent 1:250,000 geophysical mapping has been of such quality and detail it has been used to supersede older coincident 1:100,000 mapping. This occurs in the following areas: St Arnaud 7524, Dunolly 7624, Charlton 7525, Wedderburn 7625 and part of Ararat 7423 are superseded by St Arnaud SJ54-4. Bendigo 7724, Heathcote 7824 and Nagambie 7924 are superseded by Bendigo SJ55-1. \n\nBalmoral 7223, Ararat 7423, Horsham SJ54-3 and St Arnaud SJ54-4 supersede Grampians 7323 where there is overlap.\n\nThe Ouyen SI54-15 and Horsham SJ54-3 map areas are datasets derived from a combination of Geological Interpretation of Basement Geophysical Features maps and Geological Interpretation of Post-Cratonic Geophysical Features maps performed by Moore, D. H.\n\nThis data has been collected by the Geological Survey of Victoria. This dataset is accompanied by other datasets representing geological polygons and boundaries, sub-surface geological polygons, structural lines and miscellaneous lines.", "anzlicid": "ANZVI0803003419", "geonet_info_createdate": "2018-03-29", "revisiondate": "2022-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9dc7e93f488f05c20904843444b7360c15fe87cf", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "3269ab1b-2027-5c97-9048-2bb83341d898", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2012-09-26", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "DPI Wood Utilisation Plan (WUP) and DSE District Action Plan (DAP)", "alttitle": "WUP_CURRENT_FINAL_2012", "tempextentbegin": "2012-06-30T14:00:00+00:00", "resowner": "Department of Primary Industries", "tempextentend": "2023-01-24T00:03:15+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;planned", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33830\", \"uuid\": \"3269ab1b-2027-5c97-9048-2bb83341d898\", \"schema\": \"iso19115-3\", \"createDate\": \"2012-09-26\", \"changeDate\": \"2012-09-26\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "limitedDistribution", "defaulttitle": "DPI Wood Utilisation Plan (WUP) and DSE District Action Plan (DAP)", "abstract": "Wood Utilisation Plan for years 2012/13 to 2013/14 (and 2014/15 in some areas)\n\nWUPs incorporate all commercial timber harvesting activities, domestic firewood and minor produce operations where tree felling is required, associated access roading, and significant stand management operations (including thinning, reforestation and treatment of unmerchantable trees) managed or undertaken by DPI and DSE.\n\nDAPs incorporate forest operations that are classified as Level 1 or Level 2 in accordance with the District Action Planning Guidelines. \n\nWUPs and DAPs may incorporate other operations which involve vegetation disturbance and soil removal as determined by the Level 1 Manager.", "anzlicid": "ANZVI0803004739", "geonet_info_createdate": "2012-09-26", "revisiondate": "2012-09-26", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bf53d3096c1064f072f1fb228e5d81dbb0be873f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "b88701ed-3ad0-5538-90d7-08e7f3e4150d", "publicationdate": "2019-08-24", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Vicmap Topographic 1:30,000 MGA A3 Map Index", "alttitle": "VICMAP_MAPINDEX_30DA3", "tempextentbegin": "2004-08-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2004-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35882\", \"uuid\": \"b88701ed-3ad0-5538-90d7-08e7f3e4150d\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-01-24\", \"changeDate\": \"2022-07-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Vicmap Topographic 1:30,000 MGA A3 Map Index", "abstract": "1:30 000 format Mapgrid of Australia Mapsheet Boundaries as used for the A3 online topographic maps.", "anzlicid": "ANZVI0803004577", "geonet_info_createdate": "2017-01-24", "revisiondate": "2022-07-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4389470caa3eb73d313ff8832b9b91e074660edf", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "eefd7226-4ad5-5fa8-bdb4-0383e90afc6f", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-21", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Depth Zone Polygons at 1:250,000", "alttitle": "DEPTH250_ARC", "tempextentbegin": "1995-01-31T13:00:00+00:00", "resowner": "Department of Primary Industries", "tempextentend": "1995-03-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "obsolete", "topiccat": "farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33832\", \"uuid\": \"eefd7226-4ad5-5fa8-bdb4-0383e90afc6f\", \"schema\": \"iso19115-3\", \"createDate\": \"2010-08-26\", \"changeDate\": \"2022-07-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Obsolete", "mdclassification": "limitedDistribution", "defaulttitle": "Depth Zone Polygons at 1:250,000", "abstract": "This layer contains polygon features which represent subtidal relief. Isobaths are linear features which are lines of equal depth that form the boundaries of the polygons.\nThis layer has been replaced by BATHYMETRY_BASS_STRAIT_POLY & BATHYMETRY_BASS_STRAIT_ARC", "anzlicid": "ANZVI0803002015", "geonet_info_createdate": "2010-08-26", "revisiondate": "2022-07-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "eb9505f24884bb3fd4df5acd7c6319bf93c6eab3", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "879872cd-f18d-5ada-9ebd-1e09ffc8c5af", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-01-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Transport - Road Infrastructure and Paper Road Infrastructure Point", "alttitle": "TR_ROAD_INFRASTRUCTURE_ALL", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:59+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33787\", \"uuid\": \"879872cd-f18d-5ada-9ebd-1e09ffc8c5af\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2022-01-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Transport - Road Infrastructure and Paper Road Infrastructure Point", "abstract": "This layer is a superset of the Vicmap Transport TR_ROAD_INFRASTRUCTURE dataset.\n\nTR_ROAD_INFRASTRUCTURE delineates road infrastructure features including bridges, tunnels, gates, cattle grids, barrirers, level crossings, roundabouts and intersections. In addition, this dataset includes paper road nodes (feature_type_code = 'paper_node').\n\nPaper roads exist only on paper, such as a plan of subdivision, and are unlikely to be ever built due to planning restrictions. However, some councils hold addresses and property information against these paper roads.\n\nPaper nodes have been created to conform with the Vicmap Transport business rules and are of no interest to almost all customers.\n\nMost users needs will be met by the TR_ROAD_INFRASTRUCTURE dataset.", "anzlicid": "ANZVI0803004909", "geonet_info_createdate": "2019-09-04", "revisiondate": "2022-01-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f3aa6006117534d00588221c7c376aac49f607e7", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9fef15cb-1254-5de7-b83a-685c83fc5704", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2011-07-22", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "Sensitive ridgelines within the East Gippsland Forest Management Area", "alttitle": "EG_SENSITIVE_RIDGELINES", "tempextentbegin": "2006-01-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2006-01-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35830\", \"uuid\": \"9fef15cb-1254-5de7-b83a-685c83fc5704\", \"schema\": \"iso19115-3\", \"createDate\": \"2011-07-22\", \"changeDate\": \"2011-07-22\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "limitedDistribution", "defaulttitle": "Sensitive ridgelines within the East Gippsland Forest Management Area", "abstract": "This layer shows the location of sensitive ridgelines in the East Gippsland FMA and restrictions placed on timber harvesting.\n\nThis layer should be used in conjunction with two other layers EG_SCENIC_DRIVE_NETWORK and EG_SENSITIVE_VIEW_AREAS.\n\nThe East Gippsland Forest Management Plan acknowledges that while timber harvesting is the mainstay of the local economy, harvested areas should not dominate visitor's experience and their impressions of the forest. One component of landscape protection outlined in the Plan is the importance of coupe design to ensure notches on the skyline are not apparent. Map 22 of the Proposed East Gippsland Forest Management Plan clearly shows the location of sensitive ridgelines in the East Gippsland FMA. An Arcview layer was created showing the location of sensitive ridgelines in East Gippsland as shown on map 22. In 2006 the Landscape Management Guidelines EGFMA were developed which involved the review (verification of linework from map 22) of this layer and the consolidation of related prescriptions applying to timber harvesting.", "anzlicid": "ANZVI0803004455", "geonet_info_createdate": "2011-07-22", "revisiondate": "2011-07-22", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ca4cdcbb316d3f0382114101e1ac838848891327", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "178f127a-a0fd-593c-9ccb-6756a83c68fb", "publicationdate": "2018-02-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "product", "title": "Victoria Flood Database", "alttitle": "VICTORIA FLOOD DATABASE", "tempextentbegin": "2008-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;inland waters;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35836\", \"uuid\": \"178f127a-a0fd-593c-9ccb-6756a83c68fb\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-08-20\", \"changeDate\": \"2022-10-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victoria Flood Database", "abstract": "This package of data contains flood extent, contour and spot height features derived from various flood studies, reports, plans and imagery until 2014. It includes both modelled and observed data. It comprises 3 main data groups, containing a total of 26 seperate layers, with data groups as follows:\nModelled Flood Extents: Extent_{n}y_ARI, where n = 5,10,20,30,50,100,200,500,1000 year intervals\nModelled Flood Contours: Contour_{n}y_ARI, where n = 5,10,20,50,100,200 year intervals\nOther flood datasets: Floodway, Historic_extents, Historic_height_pt, Historic_contours, Flow_direction, Flood_structure, Levee, Levee_spotheight, Running_distance.", "anzlicid": "ANZVI0803004341", "geonet_info_createdate": "2019-08-20", "revisiondate": "2022-10-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c08d19ade318c0dd20b0501e8490d65f4dddd213", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d8f69bbc-18b6-53b2-bd8d-558c1c93bed2", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Infrastructure Dump Utility Function Table", "alttitle": "IN_DUMP_UTILITY_FUNCTION", "tempextentbegin": "2023-01-24T00:03:01+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:01+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35837\", \"uuid\": \"d8f69bbc-18b6-53b2-bd8d-558c1c93bed2\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Infrastructure Dump Utility Function Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003201", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2245a20aa0d10a99f16651b87d30537dcd5d681c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "794f9523-0b20-5f66-8c11-5bff9af000b2", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "WESTERN PORT 1% AEP 0.2M SLR INUNDATION", "alttitle": "WP_1AEP_20CMSLR_EXTENT", "tempextentbegin": "2013-01-27T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2015-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;geoscientific information;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35888\", \"uuid\": \"794f9523-0b20-5f66-8c11-5bff9af000b2\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-05-04\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "WESTERN PORT 1% AEP 0.2M SLR INUNDATION", "abstract": "The Western Port Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Western Port coastal environment. Information has been collected on inundation hazards (storm surge and catchment inflows) using modelling for different sea level rise scenarios. \nThis data represents the extent of storm tide inundation for the 1% Average Exceedance Probability (AEP) storm tide with the +0.2 m sea level rise scenario. (based on hydrodynamic modelling).\n\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.", "anzlicid": "ANZVI0803005418", "geonet_info_createdate": "2016-05-04", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "095ab01d47097cd49438c59fe8386ff3e45cf8b2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "de36886c-0e1c-5e58-8071-fc304aa6837c", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-01", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Native Vegetation - Flora and Fauna Guarantee Act Listed Communities", "alttitle": "NV2005_FFG_COMM", "tempextentbegin": "2012-09-16T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2012-09-16T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35890\", \"uuid\": \"de36886c-0e1c-5e58-8071-fc304aa6837c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-11\", \"changeDate\": \"2022-09-01\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Native Vegetation - Flora and Fauna Guarantee Act Listed Communities", "abstract": "This is a derived dataset displaying the distribution of threatened vegetation communities listed under the Flora and Fauna Guarantee Act (1988). Communities have been matched to one of more Ecological Vegetation Classes (EVCs), and the bioregions in which they occur. Community locations and extent are implied from the extent of the most floristically similar EVCs, and the bioregions in which the EVCs occur. The \"distribution\" field indicates the range of the listed community within a BioEVC, and the extent to which the range of a community might extend beyond BioEVC boundaries.\n\nThis dataset is currently under review to include additional listed communities", "anzlicid": "ANZVI0803004740", "geonet_info_createdate": "2019-11-11", "revisiondate": "2022-09-01", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d2f531671f00a9cfd73b292c0561ecd7fb4917ea", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f50ccc3d-621c-5415-956d-3da572e6dbd5", "publicationdate": "2022-04-12", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Toe of Bank line features", "alttitle": "ISC2010_TOE_OF_BANK", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35894\", \"uuid\": \"f50ccc3d-621c-5415-956d-3da572e6dbd5\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Toe of Bank line features", "abstract": "The ISC2010_TOE_OF_BANK line features represent the left and right stream bed lines of the river channel for each River Reach.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005113", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c475fe4596f5e1588a35bd01148deccd58725150", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "61f633ae-c18c-5967-a546-84ceb44273f6", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Transport - Road Line", "alttitle": "TR_ROAD", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:20+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35897\", \"uuid\": \"61f633ae-c18c-5967-a546-84ceb44273f6\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-21\", \"changeDate\": \"2022-07-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Transport - Road Line", "abstract": "This layer is part of Vicmap Transport and is and extensive digital road network - line features delineating state wide road network.\nIncludes; Bridges, Connectors, Footbridge, Ferry Route, Foot Tracks, Roads, Highways, Roundabouts & Tunnels.\n\nAttribution for names, alias, class, direction, locality, unique feature identification, suburb/locality. Includes alternate names.\n\nFormerly known as Road Network 1:25,000 (Full View) - Vicmap Transport (ROAD_VF)", "anzlicid": "ANZVI0803002595", "geonet_info_createdate": "2020-02-21", "revisiondate": "2022-07-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0948260408f80670e84368ba43b1bc5c15cd7214", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "be6926fd-6ac3-5081-8953-e623e0b16fd5", "publicationdate": "2022-11-11", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Victorian Biodiversity Atlas Restricted Records - 1 minute grid", "alttitle": "VBA_RESTRICTED_1M", "tempextentbegin": "2016-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:21+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35902\", \"uuid\": \"be6926fd-6ac3-5081-8953-e623e0b16fd5\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-07-22\", \"changeDate\": \"2021-08-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Biodiversity Atlas Restricted Records - 1 minute grid", "abstract": "This layer contains restricted taxa records from the Victorian Biodiversity Atlas (VBA). Record locations have been denatured to a 1 minute polygon grid to enable genaral data access. These records are held seperately from, and should be used in conjunction with VBA_FAUNA/FLORA25/100. VBA records are restricted when deemed by the Department to be vulnerable to collection, harvesting or disturbance. \n\nThe main attributes in this layer are taxon name, conservation status, count, and year of record. The VERS_DATE column identifies the currency of the data.\n\nThe FFG field has been updated to reflect the 2021 FFG Act amendments, and the Victorian Advisory List (VICADV) is now obsolete.", "anzlicid": "ANZVI0803005652", "geonet_info_createdate": "2016-07-22", "revisiondate": "2021-08-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6ed48b8b09e48707187ece53132ce56d7bc85261", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c95c7142-a03e-5fd3-9b15-5dfcd2b9ff33", "publicationdate": "2023-01-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2023-01-11", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Victorian Heritage Register", "alttitle": "HERITAGE_REGISTER", "tempextentbegin": "2008-01-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:08+00:00", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35856\", \"uuid\": \"c95c7142-a03e-5fd3-9b15-5dfcd2b9ff33\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-10-18\", \"changeDate\": \"2023-01-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Heritage Register", "abstract": "The Victorian Heritage Register lists the State's most significant heritage places and objects protected under the Heritage Act 1995.", "anzlicid": "ANZVI0803004621", "geonet_info_createdate": "2016-10-18", "revisiondate": "2023-01-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bea509b79410b55cfb5b2bf30ce0df3f007fd58d", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8eee2431-b13a-5a4a-a14e-12dd670eb70d", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Bridge Construction Type Table", "alttitle": "TR_BRIDGE_CONSTRUCTION_TYPE", "tempextentbegin": "2023-01-24T00:03:08+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:08+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35857\", \"uuid\": \"8eee2431-b13a-5a4a-a14e-12dd670eb70d\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Bridge Construction Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003163", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e602b0b1779835a765928bcc69c7925b185510da", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "13c53605-ee2a-50b5-b24b-b00087e7de71", "publicationdate": "2020-11-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-21", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "LGA boundaries Victoria 1991 Historic", "alttitle": "VIC_LGA_1991", "tempextentbegin": "1991-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "1991-05-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42004\", \"uuid\": \"13c53605-ee2a-50b5-b24b-b00087e7de71\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-04\", \"changeDate\": \"2022-10-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "LGA boundaries Victoria 1991 Historic", "abstract": "This dataset contains polygon features representing historic Local Government Area boudaries prior to LGA amalgamations in 1992.", "anzlicid": "ANZVI0803008704", "geonet_info_createdate": "2020-11-04", "revisiondate": "2022-10-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "772afe15774988baed87cc60901ba4f565c193b6", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9453b736-9b2f-5cee-a05b-74b70f3e5f5a", "publicationdate": "2020-11-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-11-04", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Regional Population Growth, Victoria", "alttitle": "ABS_POPULATION_LGA_2019", "tempextentbegin": "2018-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-05-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42005\", \"uuid\": \"9453b736-9b2f-5cee-a05b-74b70f3e5f5a\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-04\", \"changeDate\": \"2020-11-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Regional Population Growth, Victoria", "abstract": "This dataset contains polygon features representing statistical areas with associated popualtion data from ABS 3218.0 Regional Population Growth report as at June 2019.\n\nLocal Government Areas attributes;\nLGA Name Colac-Otway (S)\nLGA Code LGA21750\nPopulation June 2018 21502\nPopulation June 2019 21564\nDensity Population per Km2 6.3\nYear Population Change 62\nYear Percent Change 0.3\nNatural Increase 37\nNet Interstate Migration -61\nNet Overseas Migration 86\nArea Km2 3437.5", "anzlicid": "ANZVI0803008703", "geonet_info_createdate": "2020-11-04", "revisiondate": "2020-11-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8cf9d1056a907b4291bb11c434ca43f04e0c01c2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "4de9770e-af29-5c0d-94f8-143f42742438", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Limited Distribution", "format": "ESRI Shapefile", "type": "dataset", "title": "Withdrawn Applications for Exploration Licences", "alttitle": "ELAP", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:03:10+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33815\", \"uuid\": \"4de9770e-af29-5c0d-94f8-143f42742438\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-19\", \"changeDate\": \"2022-09-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Withdrawn Applications for Exploration Licences", "abstract": "Withdrawn Applications for Exploration Licences", "anzlicid": "ANZVI0803002329", "geonet_info_createdate": "2013-09-19", "revisiondate": "2022-09-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "59027248f128d12c785d1486423535d27ab37dbc", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "1c5108cb-f3d5-58f4-a82e-62d361fb5c39", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:10,000 Edition 47", "alttitle": "MELWAY_PAGEGRID_10_ED47", "tempextentbegin": "2019-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2019-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35863\", \"uuid\": \"1c5108cb-f3d5-58f4-a82e-62d361fb5c39\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-10-04\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:10,000 Edition 47", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:10 000 inner urban maps.", "anzlicid": "ANZVI0803004597", "geonet_info_createdate": "2018-10-04", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c869a2d6eb8134ce52bf830664f363e4ecefd306", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5e869d7a-a149-5aa7-8f63-1d7a431fd1c1", "publicationdate": "2018-04-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2018-04-20", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital Shapefile", "type": "dataset", "title": "Murray Basin - Depth To Basement (1:1,000,000)", "alttitle": "DEPTH_TO_BASEMENT_MURRAY_BASIN", "tempextentbegin": "2013-03-22T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2013-03-22T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33817\", \"uuid\": \"5e869d7a-a149-5aa7-8f63-1d7a431fd1c1\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-04-20\", \"changeDate\": \"2018-04-20\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Murray Basin - Depth To Basement (1:1,000,000)", "abstract": "The polygons represent the depth from the surface to the Palaeozoic bedrock. The polygon data was constructed using the depth to basement contours at 50m interval generated from both drill hole data, and depth to magnetic source estimates. For detailed methodology refer to Gold Undercover report 21 - Depth to Palaeozoic basement of the Gold Undercover region using borehole and magnetic data.", "anzlicid": "ANZVI0803004871", "geonet_info_createdate": "2018-04-20", "revisiondate": "2018-04-20", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7a1c5e12a915249058e44805450e50cca0ed60ad", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f34f20b1-2e68-5309-b227-eb9ad3169441", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Structure1 100m Section Summary Table", "alttitle": "ISC2010_STRUCTURE1_S", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35867\", \"uuid\": \"f34f20b1-2e68-5309-b227-eb9ad3169441\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Structure1 100m Section Summary Table", "abstract": "The ISC2010_STRUCTURE1_S table is the Statistical Summary table for the Structure1 Metric at the 100m Section level. Structure 1 represents Vegetation Cover for two grouped height categories: Shrubs which are defined as vegetation in the height range 1.5m to 5m and Trees which are defined as vegetation with height greater than 5m.\n\nThe ISC2010_STRUCTURE1_S table is designed to JOIN to the ISC2010_RIVER_CENTRELINES_S feature class.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005137", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5bd81eda0124ad988f6654b1a8feac804c2d8279", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5567ec39-0580-52ed-bf16-bb7d2a3024cf", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available on request", "type": "dataset", "title": "Wingan Inlet Seagrass 1999", "alttitle": "SEAGRASS_WINGAN_INLET_1999", "tempextentbegin": "1998-05-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "1999-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33820\", \"uuid\": \"5567ec39-0580-52ed-bf16-bb7d2a3024cf\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-25\", \"changeDate\": \"2015-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Wingan Inlet Seagrass 1999", "abstract": "This layer contains polygons defining the spatial extent, species distribution and density of seagrass meadows within Wingan Inlet mapped from 1999 aerial photography and ground-truthing.", "anzlicid": "ANZVI0803004107", "geonet_info_createdate": "2015-11-25", "revisiondate": "2015-11-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "efd5043ee0a9d620e90ee83b77ed240c7a83b7bb", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "2e8a6daf-38b8-5562-ba14-3ae72a205216", "publicationdate": "2019-10-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-10-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "Feature Class", "type": "dataset", "title": "Wetland Monitoring and Assessment Program monitoring sites", "alttitle": "WETMAP_SITES", "tempextentbegin": "2016-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:42+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33902\", \"uuid\": \"2e8a6daf-38b8-5562-ba14-3ae72a205216\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-10-08\", \"changeDate\": \"2019-10-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "limitedDistribution", "defaulttitle": "Wetland Monitoring and Assessment Program monitoring sites", "abstract": "WetMAP is measuring the response of wetland vegetation and a range of fauna to natural water regimes that are supplemented by environmental water. Numerous aspects of wetland ecology are being monitored including vegetation, waterbirds, fish and frogs. This data set maps the location of WetMAP monitoring sites.", "anzlicid": "ANZVI0803008545", "geonet_info_createdate": "2019-10-08", "revisiondate": "2019-10-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e188675cafa20072f4cbd7046d1a7b3c830e587e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0468f496-1197-5d39-9ed2-351b27b6735f", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-10-12", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Simplified outline of Victoria and adjoining States", "alttitle": "MAPBASE_G200", "tempextentbegin": "2023-01-24T00:03:43+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:43+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33903\", \"uuid\": \"0468f496-1197-5d39-9ed2-351b27b6735f\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-07\", \"changeDate\": \"2021-10-12\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Simplified outline of Victoria and adjoining States", "abstract": "Simplified outline of Victoria (coastline, major islands, borders and Murray River) plus the coastline of the adjoining States (SA, NSW and Tasmania).", "anzlicid": "ANZVI0803002850", "geonet_info_createdate": "2017-03-07", "revisiondate": "2021-10-12", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9e77da51acb0181578718f3939e8f4f2850c5e8c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "668c567c-0539-54ae-81a5-46f13e015233", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available on request", "type": "dataset", "title": "Port Phillip Bay 1:25,000 Seagrass 2000", "alttitle": "SEAGRASS_PORT_PHILLIP_BAY_2000", "tempextentbegin": "2000-02-29T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2000-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35974\", \"uuid\": \"668c567c-0539-54ae-81a5-46f13e015233\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-25\", \"changeDate\": \"2015-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Port Phillip Bay 1:25,000 Seagrass 2000", "abstract": "This is a polygon layer defining the spatial extent, species distribution and density of seagrass and macroalgae within Port Phillip Bay mapped from aerial photography in 2000. The mapping was ground-truthed in the field.", "anzlicid": "ANZVI0803004034", "geonet_info_createdate": "2015-11-25", "revisiondate": "2015-11-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6760b18a31af7fbf64a702cf6e2234afc4a6b5e9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d44fdd10-1397-56cc-93f5-ed9aab7a410e", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL: Standard GIS Vector layers", "type": "dataset", "title": "Port Phillip Bay seagrass mapping at nine aerial assessment regions in April 2009", "alttitle": "SEAGRASS_PPB_9REGIONS_APRIL09", "tempextentbegin": "2009-04-11T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2009-05-21T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;farming;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35977\", \"uuid\": \"d44fdd10-1397-56cc-93f5-ed9aab7a410e\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-25\", \"changeDate\": \"2015-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Port Phillip Bay seagrass mapping at nine aerial assessment regions in April 2009", "abstract": "This polygon layer represents seagrass habitat at nine regions in Port Phillip Bay in April 2009 mapped from aerial photography. The mapping was undertaken for the Baywide Seagrass Monitoring Program (CDP_ENV_MD_022 Rev5 - Port of Melbourne Corporation, 2010). The program is being undertaken for the Port of Melbourne Corporation as part of Baywide Monitoring to support the Channel Deepening Project.", "anzlicid": "ANZVI0803004663", "geonet_info_createdate": "2015-11-25", "revisiondate": "2015-11-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "659e0bbfd42ddd54759f69e90599f27d11c706bd", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6f3867ee-2960-5062-8bd9-1ed994d6c9b8", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "product", "title": "Vicmap Crown Land Tenure", "alttitle": "VICMAP_CLTENURE", "tempextentbegin": "1990-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:45+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35981\", \"uuid\": \"6f3867ee-2960-5062-8bd9-1ed994d6c9b8\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2022-07-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Crown Land Tenure", "abstract": "Vicmap Crown Land Tenure is a statewide dataset series that plays a key role in the management of Victoria's Crown land. It was created (June 2003 - Feb 2004) from migrating LCMP layers into the Vicmap structure.\nThe layer provides information about the Private use of Crown land Parcels and Crown Roads. CL_TENURE_VIEW contains a number of Tenure types including:\n- (A) Agricultural including Unused Road licences, Water Frontage licences and Grazing licences,\n- (L) Lease including Commercial type leases,\n- (G) General Licences including miscellaneous community use licences, permits & consents\n- (P) Pipe including Water supply pipelines,\n- (RM) Reserve including land gazetted as a Reserve in Government Gazettes,\n- Tenure Identifiers, Tenure type identifiers and Tenure code identifiers.\nThe database is continually maintained, obtaining maintenance from authoritative sources within State Government.\n\nDatasets in the series are listed below. See their metadata entries for more detailed metadata.\nTenure boundaries and descriptors as per Crown Land Management - Vicmap Crown Land Tenure (CL_TENURE_VIEW);\nGovernment Roads as per Crown Land Management - Vicmap Crown Land Tenure (GOV_ROAD_POLYGON);", "anzlicid": "ANZVI0803002777", "geonet_info_createdate": "2019-09-04", "revisiondate": "2022-07-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "102c8f720ac599f2e8be36fa6953c0e20d685fb1", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "409893f9-19dd-5386-9084-4fb0100aa0d8", "publicationdate": "2019-01-03", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-01-04", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All ESRI supported formats available", "type": "dataset", "title": "DSE Roads database - Category", "alttitle": "RDB_CATEGORY", "tempextentbegin": "2005-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:24+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35909\", \"uuid\": \"409893f9-19dd-5386-9084-4fb0100aa0d8\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-01-04\", \"changeDate\": \"2017-01-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "DSE Roads database - Category", "abstract": "Category is a linear representation of roads on Public land defined by management category.\nThis layer is used to determine 'Public Access' roads as defined in the State Road Management Act.\nIt also defines non-public register roads and breaks them down into operational categories such as seasonal closures, maintenance vehicle only and unmaintained tracks.\n\nThe underlying linear data is derived from Vicmap Transport Roads. Categories are assigned through a relational database connection and the arcs grouped to simplify data geometry.\n\nDSE's ROADS database contains information relating to DSE-managed road assets.\nIt is envisaged that the database be accessible through GIMS asset management system.", "anzlicid": "ANZVI0803003388", "geonet_info_createdate": "2017-01-04", "revisiondate": "2017-01-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5649e3bfcb079e6747d6f309072a91c76d933dd5", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ec3d42c4-e7b3-5456-9320-61c2b5473a0b", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Property Multi Assessment Table", "alttitle": "PR_MULTI_ASSESSMENT", "tempextentbegin": "2023-01-24T00:03:24+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:24+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33861\", \"uuid\": \"ec3d42c4-e7b3-5456-9320-61c2b5473a0b\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Property Multi Assessment Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003148", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bf4a767d99a0c241f570c15e9c036890479c523e", "fields": {"available_formats": "ECW,GeoTIFF,JPEG,JPEG 2000,TIFF", "resclassification": "unclassified", "uuid": "2fd9d712-5407-51df-bc75-bb13d37499af", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-12", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI Grid and GeoTiff - COG (Cloud Optimized GeoTIFF)", "type": "dataset", "title": "Vicmap Elevation DEM 10m", "alttitle": "VICMAP_ELEV_DEM_10M", "tempextentbegin": "2008-06-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-04-26T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;environment;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33863\", \"uuid\": \"2fd9d712-5407-51df-bc75-bb13d37499af\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-07-14\", \"changeDate\": \"2022-09-12\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Elevation DEM 10m", "abstract": "Vicmap Elevation DEM 10m is a product which is a raster representation of Victoria's elevation. DEM 10m has a spatial resolution of 10 metres with respective horizontal and vertical accuracy of 12.5m and 5m or better. The DEM is constructed from source data of various resolutions, accuracies and ages to produce an improved DEM containing increased detail in localised areas. The DEMs are hydrologically enforced and correctly defines the natural surface drainage and hydrological flow. \nThis product has been quality assured by DELWP and additional third-party consultants.\n\nUpdate of the dataset Vicmap Elevation DTM 10m.", "anzlicid": "ANZVI0803003582", "geonet_info_createdate": "2020-07-14", "revisiondate": "2022-09-12", "spatialrepresentationtype_text": "Grid"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "72e8d46680237a6fd9b0d935917994f3c2f81f64", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f191d19a-eaf0-5642-9f93-2989db361095", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Exploration Graticules with 1 km intervals -- GDA94 - Effective 1st July 2005", "alttitle": "MG941KM", "tempextentbegin": "2005-02-28T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:03:25+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33864\", \"uuid\": \"f191d19a-eaf0-5642-9f93-2989db361095\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Exploration Graticules with 1 km intervals -- GDA94 - Effective 1st July 2005", "abstract": "Exploration Graticules are used as the main boundaries for Exploration Licences since 1973\n- GDA94 - Effective 1st July 2005", "anzlicid": "ANZVI0803002976", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "cf65563f0c4aa9b2ecf3c59e7f6d96715061b1d0", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9128adcc-f8fd-5295-bcac-cc45a7247e8b", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Property - Annotation Text", "alttitle": "ANNOTATION_TEXT", "tempextentbegin": "2023-01-24T00:03:27+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:27+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33870\", \"uuid\": \"9128adcc-f8fd-5295-bcac-cc45a7247e8b\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Property - Annotation Text", "abstract": "Annotation Text is a point layer belonging to Vicmap Property and consists of point data representing the location of Annotation and Text for Vicmap Property. The points have been attributed with the appropropriate text.\n\nThis layer should be used in conjuction with the other layers and aspatial tables that make up Vicmap Property.", "anzlicid": "ANZVI0803002902", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "07224a1fad9cc466447f2fbb4c6606bfa20e8d53", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d34f3607-62f4-52b1-8f34-5c2ad4f9ed6e", "publicationdate": "2023-01-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "product", "title": "Geological Sites - Earth Resources Spatial Data Collection for the Datamart.", "alttitle": "DM_MIN_GEOLOGICAL_SITES", "tempextentbegin": "1998-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:03:29+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35930\", \"uuid\": \"d34f3607-62f4-52b1-8f34-5c2ad4f9ed6e\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological Sites - Earth Resources Spatial Data Collection for the Datamart.", "abstract": "Datasets relating to geological sites, geologically significant features & mine shafts.\nCollected for Earth Resources within DSDBI", "anzlicid": "ANZVI0803003358", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "44813497ac2f63e22d167cbbef3692bdf91b20c8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f305b156-b8fd-513b-b40e-dafffde32ddc", "publicationdate": "2021-09-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-10-12", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Index of Estuarine Condition Estuarine Boundaries", "alttitle": "IEC2021_ESTUARY_BOUNDARIES", "tempextentbegin": "2017-01-23T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-02-07T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42083\", \"uuid\": \"f305b156-b8fd-513b-b40e-dafffde32ddc\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-17\", \"changeDate\": \"2021-10-12\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Index of Estuarine Condition Estuarine Boundaries", "abstract": "IEC2021_ESTUARY_BOUNDARIES is the spatial boundaries of the merged polygons in the IEC2021_SUB_VEG layer.", "anzlicid": "ANZVI0803008719", "geonet_info_createdate": "2020-11-17", "revisiondate": "2021-10-12", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d86b24186db8dcc84e11db1f87a997d4291d36ae", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c12380d9-db04-5873-ab42-e779e4df99e2", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Railway Gauge Table", "alttitle": "TR_RAIL_GAUGE", "tempextentbegin": "2023-01-24T00:03:38+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:38+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35957\", \"uuid\": \"c12380d9-db04-5873-ab42-e779e4df99e2\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Railway Gauge Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003166", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7fba8ddf91eae87e24a42d2dd4945e615bcdb1b1", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6cb9e551-1237-52e0-8622-07733a897545", "publicationdate": "2021-09-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-10-15", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Index of Estuarine Condition Estuarine Fringing Vegetation", "alttitle": "IEC2021_FRINGING_VEG", "tempextentbegin": "2017-01-23T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-02-07T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42085\", \"uuid\": \"6cb9e551-1237-52e0-8622-07733a897545\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-17\", \"changeDate\": \"2021-10-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Index of Estuarine Condition Estuarine Fringing Vegetation", "abstract": "IEC2021_ FRINGING _VEG is the spatial representation of fringing vegetation used in the calculation of Index of Estuarine Condition (IEC) scores. In the context of the IEC, 'fringing vegetation' refers to the vegetation which grows above the permanently inundated portion of the estuary but within the zone of influence of the more-or-less saline estuarine waters. It includes vegetation in intertidal areas and riparian areas in the estuary but not subtidal vegetation (see Sinclair and Kohout 2018 for more precise working definitions of vegetation zones). In the field, the extent of the fringing vegetation and any built structures that impinge on it were mapped (by annotating an aerial photograph). Fringing vegetation was mapped according to Ecological Vegetation Classes (EVC) (https://www.environment.vic.gov.au/biodiversity/bioregions-and-evc-benchmarks) and subjectively classified into areas of different condition with reference to vegetation structure, weediness and land use. Each patch of vegetation that could be accessed was scored for its degree of invasion by perennial weeds and its structural resemblance to a relevant benchmark (https://www.environment.vic.gov.au/biodiversity/bioregions-and-evc-benchmarks). Additional observations were recorded on the score sheet, relating to `Health of the dominant plant species\u00bf and `Extent of engineered hydrological modifications\u00bf. Scores were estimated for the areas that could not be observed. These estimated scores were based on the areas that were observed. The areas of all relevant polygons were calculated, and a score produced for each metric (IEC Report 2021).", "anzlicid": "ANZVI0803008720", "geonet_info_createdate": "2020-11-17", "revisiondate": "2021-10-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1145ebfdf7d558eec9a3542c88751effa1d3b3c5", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1490d477-0c6f-5e30-910b-4032eaf9895a", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-05-06", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Tree Cover", "alttitle": "TREE100", "tempextentbegin": "1989-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "1993-04-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Unknown", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35961\", \"uuid\": \"1490d477-0c6f-5e30-910b-4032eaf9895a\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-05-06\", \"changeDate\": \"2016-05-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Tree Cover", "abstract": "Polygons showing tree cover as defined by woody vegetation greater than 2 metres in height and with a crown cover (foliar density) greater than 10%.\nTree cover is mapped down to a minimum area of one hectare. \nThis layer was derived from LANDSAT TM digital data.", "anzlicid": "ANZVI0803001075", "geonet_info_createdate": "2016-05-06", "revisiondate": "2016-05-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d0c49a54d8a17d4360bccce839bc072735302a39", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "21747078-fec7-58e6-b70d-754680cdc751", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "MapInfo , ArcView, ArcInfo and Microsoft Access.", "type": "dataset", "title": "Surface Geochemistry Samples (being Superceded by GEOCHEMISTRY)", "alttitle": "GCHEM", "tempextentbegin": "1996-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2008-05-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33895\", \"uuid\": \"21747078-fec7-58e6-b70d-754680cdc751\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-17\", \"changeDate\": \"2013-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Surface Geochemistry Samples (being Superceded by GEOCHEMISTRY)", "abstract": "Surface Geochemistry Samples is derived from Minerals and Petroleum's SITES Oracle RDBMS. Data have been obtained from company reports of expired mineral Exploration and Mining Licences since 1965.\n\nA surface sample is typically taken to comprise a sample taken from the weathered profile, and which is the only sample taken at that location. It may be a soil or it may be a sediment taken from an active stream bed. Though most soil samples are taken from the B- or C-horizon (approx. 10-40 cm depth) the dataset may, for example, include a sample taken from 2 m depth and obtained by augering. There is, thus, a continuum between surface geochemistry and boreholes datasets.", "anzlicid": "ANZVI0803002548", "geonet_info_createdate": "2013-09-17", "revisiondate": "2013-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5e31c4a8c77e9cfe574e8546999cb8043b9fd769", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ef16a123-5c78-5acc-af1f-cd118f60ef84", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-04-07", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Property - Parcel Polygon with Approved Parcel Detail", "alttitle": "V_S_PARCEL_APPROVED", "tempextentbegin": "2023-01-24T00:03:40+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:40+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42088\", \"uuid\": \"ef16a123-5c78-5acc-af1f-cd118f60ef84\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-16\", \"changeDate\": \"2021-04-07\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Property - Parcel Polygon with Approved Parcel Detail", "abstract": "Approved Parcel Map Polygons is a polygon layer belonging to Vicmap Property Simplified 2, a modified and simplified model of Vicmap Property, specifically generated for Local Government use.. It consists of polygons representing Victoria's land parcels.\nThis layer should be used in conjuction with the other layers and aspatial tables that make up Vicmap Property Simplified 2, see metadata for Vicmap Property and Vicmap Property Simplified 2.\n\nVicmap Property Simplified 2 Content includes\n \u00b7 Parcel and Property Polygons;\n \u00b7 Parcel and Property Identifiers - parcel descriptors (including Standard Parcel Identifiers (SPI)), \n Council reference numbers;\n \u00b7 Registered and proposed;\n \u00b7 Crown and Freehold land differentiation;\n \u00b7 Cadastral Road Casements;\n \u00b7 Easements (Note: all new easements are being captured for the whole State. Previously, only \n easements in the metropolitan area were captured. There is no current program to review and \n capture missing easements);\n \u00b7 Unique Feature Identifiers, date stamps and data quality information.", "anzlicid": "ANZVI0803008711", "geonet_info_createdate": "2020-11-16", "revisiondate": "2021-04-07", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "59fb091a383bb462b854291329ed71237077d53e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c6499383-f8eb-5cf6-9463-b04bc4b017fe", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-05-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcGIS shapefile", "type": "dataset", "title": "Victorian Soil type mapping", "alttitle": "SOIL_TYPE", "tempextentbegin": "2014-06-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2016-02-28T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "farming;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35969\", \"uuid\": \"c6499383-f8eb-5cf6-9463-b04bc4b017fe\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-29\", \"changeDate\": \"2019-05-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Soil type mapping", "abstract": "A spatial map layer of soil type (Australian Soil Classification) for Victoria. The harmonised map consists of 3,300 land units (totaling about 225,000 polygons) derived from around 100 soil and land surveys carried out in Victoria over the past 70 years. The land units have been attributed according to the Australian Soil Classification (Order and Suborder levels of the classification scheme) based on their likely dominant soil type. Particular attention was given to harmonising land units across survey boundaries. A reliability index has been assigned to each land unit based on the quality and relevance of the originating survey, providing a qualitative reliability measure to support interpretation and data use.\n\nSoil site data contained in the Victorian Soil Information System (VSIS), and information on the Victorian Resources Online (VRO) website and original study reports have been combined with landscape knowledge to develop the new maps. Data from approximately 10,000 existing sites recorded, mostly recorded in the VSIS have been used.\n\nThe soil type is based on land mapping conducted at different times, at variable scale, and for different purposes. Land units are therefore of variable scale and quality in relation to the soil they are representing. Many units will be comprised of multiple soil types and a range of soil properties, and local variability (e.g. at paddock scale level) can also sometimes be high. The mapping, therefore, is intended to represent the dominant, or most prevalent, broad soil type within the map unit. It is therefore adequate for regional or state-wide overviews but may not often be accurate enough for localised or within-farm assessments. For more detailed soil and land information, users are advised to refer to the original land study for any given map unit (e.g. via Victorian Resources Online website).", "anzlicid": "ANZVI0803005522", "geonet_info_createdate": "2019-05-29", "revisiondate": "2019-05-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c07389d56b89558d366fafd4082124a19fac5942", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "6f312a91-3459-5749-88c8-69255499e4e4", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-06-01", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "SDM formats", "type": "dataset", "title": "River Health Program Environmental Watering Priority Reaches for the Victorian Investment Framework", "alttitle": "VIF_RIVERHEALTH_EW100", "tempextentbegin": "2010-02-16T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2011-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35970\", \"uuid\": \"6f312a91-3459-5749-88c8-69255499e4e4\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-06-01\", \"changeDate\": \"2016-06-01\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "River Health Program Environmental Watering Priority Reaches for the Victorian Investment Framework", "abstract": "OBSOLETE POLICY LAYER - A white paper for land and biodiversity at a time of climate change 2009\n\nThe 'Priority reaches for environmental watering' layer (derived from ISC_REACH) represents priority reaches for environmental watering as identified through environmental entitlements, water recovery plans and projects, Sustainable Water Strategies, Regional River Health Strategies and associated Addendums. \n\nThis layer should be used in conjunction with the latest Victorian Investment Framework (VIF) Statement of Priorities document. Catchment Management Authorities are responsible for prioritising actions within their region based upon these priorities and available funding.\n\nTo be viewed in conjunction with VIF_RIVERHEALTH_PRI100; VIF_RIVERHEALTH_LSRR100 and VIF_RIVERHEALTH_EWA100", "anzlicid": "ANZVI0803003982", "geonet_info_createdate": "2016-06-01", "revisiondate": "2016-06-01", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2f23218d6fed3c3eae89a1d9c8af5cd7b22a9f0a", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ac31f7d7-6131-5b5e-9cdd-b7dfacc11c0e", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Address Building Unit Type Table", "alttitle": "ADDRESS_BLG_UNIT_TYPE", "tempextentbegin": "2023-01-24T00:03:48+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:48+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42105\", \"uuid\": \"ac31f7d7-6131-5b5e-9cdd-b7dfacc11c0e\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-19\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Address Building Unit Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008727", "geonet_info_createdate": "2020-11-19", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "99a62a06784a9a947b07fb34444db22bf58b27ea", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "90fdf641-9400-525d-be09-e6ec860fbe9c", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Property - Parcel Table", "alttitle": "PARCEL", "tempextentbegin": "2023-01-24T00:03:49+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:49+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;planning cadastre;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35993\", \"uuid\": \"90fdf641-9400-525d-be09-e6ec860fbe9c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2022-07-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Property - Parcel Table", "abstract": "This layer contains aspatial details for all legal parcel boundaries in Victoria, both freehold and crown. A parcel is defined as the smallest area of land capable of sale without further approval to subdivide. It may consist of more than one piece. Parcels are described by a parcel description (either lot/plan or allotment/section/parish).\n\nIt includes:\n- Parcel Identifiers, both freehold and crown;\n- Registered and proposed status;\n- Crown and Freehold land differentiation;\n- Council reference numbers;\n- LGA code;\n- Unique Feature Identifiers, date stamps and data quality information.\n\nMetaX records this dataset as VMPROP.PARCEL", "anzlicid": "ANZVI0803001034", "geonet_info_createdate": "2019-09-04", "revisiondate": "2022-07-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1e2e9aa711469f59d075961d09d52b766bf724ee", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "4ccf6a63-f700-57c9-9441-9c28c2319b5b", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2018-11-15", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "arcview, coverage, SDE layer", "type": "dataset", "title": "Conservation Management Network boundaries - CMN", "alttitle": "CMN", "tempextentbegin": "2011-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-04-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;planned", "topiccat": "environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35994\", \"uuid\": \"4ccf6a63-f700-57c9-9441-9c28c2319b5b\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-11-15\", \"changeDate\": \"2018-11-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "limitedDistribution", "defaulttitle": "Conservation Management Network boundaries - CMN", "abstract": "Conservation Management Network boundaries as a statewide coverage. This layer will be changing over time depending on new networks and amalgamations.\n A CMN:\nis a network of sites with native vegetation\nis a network of people who work together to protect and restore these sites, and also work to expand and link them across the landscape\nworks closely with local Landcare, government agencies and nongovernment organizations\nworks on both public and private land with site-based activities like revegetation, and addressing landscape-wide problems like tree die-back, weeds and foxes\nhas a strong focus on community education", "anzlicid": "ANZVI0803004708", "geonet_info_createdate": "2018-11-15", "revisiondate": "2018-11-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7695e1477987a140b7b59fbaba59cd590a53bf8a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9aeabfbc-23ef-5bbe-9ea4-56b0051cfa3a", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Statistical extents for 0.2% AEP or 1 in 500 years floods until 2014", "alttitle": "EXTENT_500Y_ARI", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-11-10T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42108\", \"uuid\": \"9aeabfbc-23ef-5bbe-9ea4-56b0051cfa3a\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-19\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Statistical extents for 0.2% AEP or 1 in 500 years floods until 2014", "abstract": "This layer contains information from multiple flood studies undertaken until 2014.\nThe data is statistically derived using hydrological models depicting the 1 in 500 year ARI (or 0.2% AEP) scenario flood extents. \nThis is Polygon data or a Shapefile.\nThis layer will not be updated.", "anzlicid": "ANZVI0803008743", "geonet_info_createdate": "2020-11-19", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0b099df03457ee71d60226c62f8ec1ccfdf564f1", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "8a607fad-a3d2-56af-a6c6-cdc20a12f0db", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Public Access Road Crossing", "alttitle": "PAIM_RDB_CROSSINGS", "tempextentbegin": "2014-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:50+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35997\", \"uuid\": \"8a607fad-a3d2-56af-a6c6-cdc20a12f0db\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-05-19\", \"changeDate\": \"2022-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Public Access Road Crossing", "abstract": "The layer is a subset of FORESTSROADS.RDB_CROSSINGS. It is used in the Public Access Map to display closed and accessible road crossings within public land.", "anzlicid": "ANZVI0803005655", "geonet_info_createdate": "2020-05-19", "revisiondate": "2022-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b61307f906331290c6e1098bf9ae2fc491aee9fa", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6d12e218-ce90-57d8-9546-46403616fc0c", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-05-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcGIS feature class", "type": "dataset", "title": "Regional Management Units of north west Victoria", "alttitle": "NW_REGIONAL_MANAGEMENT_UNIT", "tempextentbegin": "2010-06-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2012-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "farming;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33919\", \"uuid\": \"6d12e218-ce90-57d8-9546-46403616fc0c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-14\", \"changeDate\": \"2019-05-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Regional Management Units of north west Victoria", "abstract": "A polygonal dataset of Regional Map Units (RMUs) in the Victorian Mallee.\n\nThe dataset was created from the disaggregation of land systems originally defined by Rowan and Downes (1963).\n\nRMUs delineate areas of repeating landform component patterns that occur within a similar landscape context. They were created to provide the Mallee CMA with areas for priority investment to monitor, assess and manage regional land management issues, such as wind erosion. The units also assist in distinguishing the morphological variation in landform components, for example the difference in size of hummocks between the Tempy and Culgoa land systems.\n\nThe RMUs have been attributed for their relative wind erosion susceptibility and have been embedded into the Victorian Geomorphological Framework. Each RMU therefore has a local naming context (eg: Central Mallee 1) and a statewide Geomorphological reference, eg: 5.1.2.\n\nThe landform component grid developed by the same project, a 10 metre grid Digital Elevation Model (DEM), expert opinion and the GMU were key inputs into the creation of the landform units.\n\nAn alpha-numeric code has been applied as the naming convention for these new landform units. The letter indicates the primary parent land system to which the unit is a member whilst the number reflects the number of units the land system has been divided into.\n\nThe dataset was an output of the project \"Disaggregation of landform components within land systems of the Mallee\" and \"Wind erosion susceptibility mapping\" projects conducted by DPI between 2008 and 2011. These projects were sponsored by the Mallee Catchment Management Authority with funding from the Federal government's Caring for our Country initiative.\n\nThe final project reports and the Rowan and Downes (1963) report , \"A study of the land of north-western Victoria\", should be referred to when analysing or utilising this dataset.", "anzlicid": "ANZVI0803005566", "geonet_info_createdate": "2019-05-14", "revisiondate": "2019-05-14", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "997d37cb6ab47573db60266f3ae82453171f2652", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5f409457-2e98-556e-8ba3-2757091a4507", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - Country Fire Authority (CFA) Total Fire Ban District Polygon", "alttitle": "CFA_TFB_DISTRICT", "tempextentbegin": "2012-10-15T13:00:00+00:00", "resowner": "Country Fire Authority;Country Fire Authority", "tempextentend": "2023-01-24T00:03:51+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;boundaries;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36000\", \"uuid\": \"5f409457-2e98-556e-8ba3-2757091a4507\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - Country Fire Authority (CFA) Total Fire Ban District Polygon", "abstract": "Part of the Vicmap Admin dataset series. This layer contains polygon features delineating the current CFA Total Fire Ban Districts. \n\nIn 2010, the TFB Boundary Realignment project was conducted. As a result CFA, Department of Sustainability and Environment (DSE) and the Bureau of Meteorology (BOM) developed a proposal to align fire weather districts, TFB boundaries and Local Government Area (LGA) boundaries.\n\nAfter much consultation and amendments, it was agreed to approve the above proposal with the exception of Yarriambiack Shire which was divided using the east-west rabbit fence. The result created a total of 9 TFB Districts. These changes were implemented in October 2010.", "anzlicid": "ANZVI0803004761", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "98854e84c4f8911ee6bb5a9c88327cc704a42263", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1c35737f-8d13-526b-9e0e-cbe594da768b", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-12-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "nonGeographicDataset", "title": "Flood waterway list", "alttitle": "WATERWAY_LIST", "tempextentbegin": "1899-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;inland waters;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42111\", \"uuid\": \"1c35737f-8d13-526b-9e0e-cbe594da768b\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-19\", \"changeDate\": \"2022-12-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Flood waterway list", "abstract": "A table containing a list of individual flood study IDs, and the waterway IDs they have been assigned. \nUsed to link many-to-one waterways to single poly and line features in other flood layers.\nWaterways are identified in the WATERWAYS_LIST table.\n\nOther linked data requires corresponding values in STUDYID field", "anzlicid": "ANZVI0803008746", "geonet_info_createdate": "2020-11-19", "revisiondate": "2022-12-09", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d49311570e8bf656cc1f80685f48c9543f7e3c01", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "66f4e0cf-868a-56cb-a004-b5514921d032", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available on request", "type": "dataset", "title": "Anderson Inlet Seagrass 1999", "alttitle": "SEAGRASS_ANDERSON_INLET_1999", "tempextentbegin": "1998-05-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "1999-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36001\", \"uuid\": \"66f4e0cf-868a-56cb-a004-b5514921d032\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-25\", \"changeDate\": \"2015-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Anderson Inlet Seagrass 1999", "abstract": "This layer contains polygons defining the spatial extent, species distribution and density of seagrass meadows within Anderson Inlet mapped from 1999 aerial photography and ground-truthing.", "anzlicid": "ANZVI0803004100", "geonet_info_createdate": "2015-11-25", "revisiondate": "2015-11-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b908ce8ead1febf6622646a3e753fcd4e63c0885", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "b52c0046-6fd1-5398-8e64-386ee4aa9e0f", "publicationdate": "2022-04-13", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-04-12", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "Parks Victoria Visitor Sites", "alttitle": "PV_VISITOR_SITES", "tempextentbegin": "2009-04-30T14:00:00+00:00", "resowner": "Parks Victoria", "tempextentend": "2023-01-24T00:03:33+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete", "topiccat": "location", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35941\", \"uuid\": \"b52c0046-6fd1-5398-8e64-386ee4aa9e0f\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-09-12\", \"changeDate\": \"2022-04-12\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "mdclassification": "limitedDistribution", "defaulttitle": "Parks Victoria Visitor Sites", "abstract": "This dataset shows discrete visitor activity centres within Parks and Reserves managed by Parks Victoria meeting the minimum criteria of 'Very Basic' Level of Service criteria.\n\nLast Updated October 2021.", "anzlicid": "ANZVI0803004272", "geonet_info_createdate": "2016-09-12", "revisiondate": "2022-04-12", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b69280443c225c8d608279596be7b8d07b73ed1a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "4fccb899-9ec0-5805-a6a3-24e1bf6fbfb3", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-04-07", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Property - Property Polygon with Proposed Primary Detail", "alttitle": "V_S_PROPERTY_PRIMARY_PROPOSED", "tempextentbegin": "2023-01-24T00:03:34+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:34+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42079\", \"uuid\": \"4fccb899-9ec0-5805-a6a3-24e1bf6fbfb3\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-16\", \"changeDate\": \"2021-04-07\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Property - Property Polygon with Proposed Primary Detail", "abstract": "Property Primary Proposed dataset from the product Vicmap Property Simplified 2, specifically generated for Local Government use..", "anzlicid": "ANZVI0803008716", "geonet_info_createdate": "2020-11-16", "revisiondate": "2021-04-07", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2944821f5da2e7774cbdcce924ffa665398d6037", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ae75c7f7-2665-5169-9fc6-cd244aab88d1", "publicationdate": "2021-09-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-10-15", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Index of Estuarine Condition Submerged Vegetation Data", "alttitle": "IEC2021_SUB_VEG", "tempextentbegin": "2017-01-23T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-02-07T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42082\", \"uuid\": \"ae75c7f7-2665-5169-9fc6-cd244aab88d1\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-17\", \"changeDate\": \"2021-10-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Index of Estuarine Condition Submerged Vegetation Data", "abstract": "IEC2021_SUB_VEG is the spatial representation of submerged vegetation used in the calculation of Index of Estuarine Condition (IEC) scores. In the context of the IEC, 'submerged vegetation' refers to aquatic plants attached to bottom sediments that are generally entirely submerged but may be exposed during very low tides. Field data was collected at various locations within the estuary to ground-truth the mapping of full coverage derived from available aerial imagery. The field data was collected in late spring, summer and early autumn to correspond with warmer water temperatures and longer photoperiods, and to avoid winter periods of submerged vegetation dieback. In the field, ground-truthing by taking photos of the benthic environment largely followed the protocols outlined in Woodland and Cook (2015). If the estuarine bed was visible, photographic samples were collected of the different vegetation types present. Coverages of these different vegetation types (e.g. dense, sparse) were also photographed as well as bare ground. Ground-truthed benthic images were mapped over high-resolution (<20 cm) aerial imagery sourced from the DELWP imagery archive. Only imagery later than 2010 was considered, with most of the imagery used captured later than 2015. RPAS imagery collected for some estuaries was geo-rectified and mosaicked to provide very high-resolution imagery for mapping. Mapped areas were then compared to the geo-referenced ground-truthed benthic images and assigned a vegetation-coverage class and an indication of classification confidence (High, Medium or Low). For each estuary, MA:TV was then derived from the ratio of total macroalgae area to total vegetated area (i.e. seagrass and macroalgae) as per Woodland and Cook (2015). Briefly, vegetated habitat areas were weighted by their coverage classes such that polygons assigned `sparse\u00bfmedium\u00bf coverage were considered to contain 50% vegetation, and those assigned as `dense\u00bf coverage were considered as 100% vegetated. The ratio of macroalgae to total vegetation (MA:TV) was calculated as the sum of the weighted macroalgae areas divided by the sum of the weighted seagrass and macroalgae areas. MA:TV ranges from 0 to 1.", "anzlicid": "ANZVI0803008717", "geonet_info_createdate": "2020-11-17", "revisiondate": "2021-10-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f6e4d8cc04dcdd3ca9b3f93bd1358bb4892f186d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e1398ce5-fbf0-5e27-9bcd-0404af7cfed7", "publicationdate": "2021-12-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2023-01-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Historic Places (point features)", "alttitle": "HIST100_POINT", "tempextentbegin": "1981-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:37+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35954\", \"uuid\": \"e1398ce5-fbf0-5e27-9bcd-0404af7cfed7\", \"schema\": \"iso19115-3\", \"createDate\": \"2010-03-29\", \"changeDate\": \"2023-01-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Historic Places (point features)", "abstract": "Records about non-Aboriginal historic sites on Victorian public land, collected as a result of field survey by DELWP staff and contractors.\n\nUpdated during the Regional Forest Agrement (RFA) review in 1999-2000. \n\nAdditional attrbiutes included in 2021 library update are:\n1. Buffer - site buffer distance applied to some sites which already had a Forest Planning buffer for protection\n2. Source_data: most data is from the Historic Places database, during the RFA update included sites from other sources in DELWP regions and some external contractors.\n\nConsulted with DELWP Planning Heritage team during the update process.\nUFID - unique feature identifier added Jan 2023", "anzlicid": "ANZVI0803002072", "geonet_info_createdate": "2010-03-29", "revisiondate": "2023-01-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9ddd6df68166177f9dee43617318b490971f66f8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8881092d-29ab-5cee-9502-19758b6b3709", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-11", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Statistical flood height contours for 2% annual exceedence probability (AEP) or 1 in 50 year recurrence interval until 2014.", "alttitle": "CONTOUR_50Y_ARI", "tempextentbegin": "1997-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-03-11T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42112\", \"uuid\": \"8881092d-29ab-5cee-9502-19758b6b3709\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-19\", \"changeDate\": \"2022-10-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Statistical flood height contours for 2% annual exceedence probability (AEP) or 1 in 50 year recurrence interval until 2014.", "abstract": "This layer contains information from multiple flood studies undertaken until 2014. This layer will not be updated.\nThe data is statistically derived using hydrological models depicting the 1% AEP (or 1 in 100 ARI) scenario, historic flood extents and heights.\nThis is Polygon data or a Shapefile.", "anzlicid": "ANZVI0803008738", "geonet_info_createdate": "2020-11-19", "revisiondate": "2022-10-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a9da30ccd76eed39d24b3a7442ec12096f6eb910", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f97b06a7-405b-5e4f-a336-e77ca9662e07", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-11", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Statistical flood height contours for 5% annual exceedence probability (AEP) or 1 in 20 year recurrence interval until 2014.", "alttitle": "CONTOUR_20Y_ARI", "tempextentbegin": "1997-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-03-10T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42113\", \"uuid\": \"f97b06a7-405b-5e4f-a336-e77ca9662e07\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-19\", \"changeDate\": \"2022-10-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Statistical flood height contours for 5% annual exceedence probability (AEP) or 1 in 20 year recurrence interval until 2014.", "abstract": "This layer contains information from multiple flood studies undertaken until 2014. This layer will not be updated.\nThe data is statistically derived using hydrological models depicting the 5% AEP (or 1 in 20 ARI) scenario, historic flood extents and heights.\nThis is Polygon data or a Shapefile.", "anzlicid": "ANZVI0803008736", "geonet_info_createdate": "2020-11-19", "revisiondate": "2022-10-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "677d8054443fe8343dfb85e18a6b27b3b7211cf2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c12f635b-1d76-594f-95a4-63c1c73dd113", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-11", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Statistical flood height contours for 0.5% annual exceedence probability (AEP) or 1 in 200 year recurrence interval until 2014.", "alttitle": "CONTOUR_200Y_ARI", "tempextentbegin": "1997-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-03-11T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42117\", \"uuid\": \"c12f635b-1d76-594f-95a4-63c1c73dd113\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-19\", \"changeDate\": \"2022-10-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Statistical flood height contours for 0.5% annual exceedence probability (AEP) or 1 in 200 year recurrence interval until 2014.", "abstract": "This layer contains information from multiple flood studies undertaken until 2014. This layer will not be updated.\nThe data is statistically derived using hydrological models depicting the 0.5% AEP (or 1 in 200 ARI) scenario, historic flood extents and heights.\nThis is Polygon data or a Shapefile.", "anzlicid": "ANZVI0803008735", "geonet_info_createdate": "2020-11-19", "revisiondate": "2022-10-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8d949686610f132758a701b8afe5becd83739992", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "fcb63ea2-7430-526b-a139-060c8a2cf990", "publicationdate": "2023-01-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2023-01-11", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Victorian Heritage Inventory", "alttitle": "HERITAGE_INVENTORY", "tempextentbegin": "2008-01-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:55+00:00", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36014\", \"uuid\": \"fcb63ea2-7430-526b-a139-060c8a2cf990\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-10-18\", \"changeDate\": \"2023-01-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Heritage Inventory", "abstract": "The Heritage Inventory is a listing of all known historical (non-Indigenous) archaeological sites in Victoria.\n\nWhile there are over 6,800 sites listed on the Heritage Inventory, it is not a comprehensive list as large parts of the State have not had an archaeological survey. \n\nHeritage Inventory sites, as well as sites that have yet to be discovered, are protected under the Victorian Heritage Act 1995.", "anzlicid": "ANZVI0803004875", "geonet_info_createdate": "2016-10-18", "revisiondate": "2023-01-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e6a0fa431400b833d470f1f987b14d1a24b174a8", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e25217f7-8597-5224-a5de-5c479140dbee", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Road Structure Type Table", "alttitle": "TR_ROAD_STRUCTURE_TYPE", "tempextentbegin": "2023-01-24T00:03:56+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:56+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36017\", \"uuid\": \"e25217f7-8597-5224-a5de-5c479140dbee\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Road Structure Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003175", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d57187d6da0b95aa047483cb7db07bb04028385a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "b6bc636d-7641-5ab0-a64b-6bd9a8097af9", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-08-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Not Known", "type": "dataset", "title": "Victorian Water Asset Database (VWAD) - POINT_LAYER", "alttitle": "VWAD_PT", "tempextentbegin": "2013-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-05-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36024\", \"uuid\": \"b6bc636d-7641-5ab0-a64b-6bd9a8097af9\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-08-05\", \"changeDate\": \"2015-08-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Water Asset Database (VWAD) - POINT_LAYER", "abstract": "Victorian Water Asset Database (VWAD), contains the identification of water assets and their attributes for the state of Victoria. The VWAD includes features such as lakes, rivers, creeks, wetlands, water storages, estuaries, groundwater aquifers, springs, large marine intertidal zones,\nbut does not include specific irrigation and water supply infrastructure such as irrigation channels, bores and irrigation distribution networks.", "anzlicid": "ANZVI0803005339", "geonet_info_createdate": "2015-08-05", "revisiondate": "2015-08-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d40049ca73b199e872409beb28e6f1720235f91b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "262b9292-a214-5f84-bfe6-7f8529501fb7", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-11", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Statistical flood height contours for 10% annual exceedence probability (AEP) or 1 in 10 year recurrence interval until 2014.", "alttitle": "CONTOUR_10Y_ARI", "tempextentbegin": "1997-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-11-17T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42121\", \"uuid\": \"262b9292-a214-5f84-bfe6-7f8529501fb7\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-19\", \"changeDate\": \"2022-10-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Statistical flood height contours for 10% annual exceedence probability (AEP) or 1 in 10 year recurrence interval until 2014.", "abstract": "This layer contains information from multiple flood studies undertaken until 2014. This layer will not be updated.\nThe data is statistically derived using hydrological models depicting the 10% AEP (or 1 in 10 ARI) scenario, historic flood extents and heights.\nThis is Polygon data or a Shapefile.", "anzlicid": "ANZVI0803008734", "geonet_info_createdate": "2020-11-19", "revisiondate": "2022-10-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "46e3a63778a4a43b3a9b208b1e88f42fb372e446", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "b236fd06-a7fc-5ced-8b98-1f022a329b11", "publicationdate": "2022-10-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Features - Locality Point", "alttitle": "LOCALITY_POINT", "tempextentbegin": "2008-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:58+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36025\", \"uuid\": \"b236fd06-a7fc-5ced-8b98-1f022a329b11\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Features - Locality Point", "abstract": "Part of the Vicmap Features of Interest dataset - Point location of localities within Victoria.\n\nThis dataset is a cartographic product that optimises the display locality/township locations in Victoria and adjoining States specifically for map production and webservices.\n\nThe records in this dataset represent the location of localities where a spatial point is identifiable both within Victoria and 50 km's beyond the State border. All Victorian records are registered in the Geographic Names Register and hold the associated Geonames ID.\nNon Victorian records represent similiar features in order to support mapping in areas adjacent to the Victorian Border. \n\nFor a authoritative list of Victorian localities see VMADMIN_LOCALITY_POLYGON.", "anzlicid": "ANZVI0803003600", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0199fd50023caa2ecea72d5917d8132c95ae75a7", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "39708d26-e8df-5e15-a224-e7937262fded", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - State Council Polygon 1991", "alttitle": "STATE_COUNCIL_1991", "tempextentbegin": "1996-12-31T13:00:00+00:00", "resowner": "Victorian Electoral Commission", "tempextentend": "2001-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36028\", \"uuid\": \"39708d26-e8df-5e15-a224-e7937262fded\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - State Council Polygon 1991", "abstract": "State wide data showing Upper House boundaries and names 1991. These are the Legislative Council Electoral Boundaries referred to as the Upper House Boundaries.\n\nSUPERSESED dataset by VMADMIN_STATE_COUNCIL_2001", "anzlicid": "ANZVI0803002614", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e9b9dd4def9bffc62e114377414bf4539c0796b3", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "42cea5fc-e7e3-50d3-92e3-6470275b38bf", "publicationdate": "2018-01-23", "publishedforgroup": "12264;0", "geonet_info_changedate": "2021-06-16", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "csv", "type": "dataset", "title": "Sand Flat Head Management and Stock Assessment Program", "alttitle": "PPB_FV_TRAWL_FISH_SELECT", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2015-01-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33932\", \"uuid\": \"42cea5fc-e7e3-50d3-92e3-6470275b38bf\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-06-02\", \"changeDate\": \"2021-06-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Sand Flat Head Management and Stock Assessment Program", "abstract": "SAND_FLATHEAD_SNAPPER_BEAM_TRAWL_2000_2015\n\nSize frequency data from beam trawl surveys of snapper and sand flat head fish species. Surveys conducted at 9 areas within Port Phillip Bay using beam trawls in the 10-20 m depth range from 2000 to 2015. All snapper and sand flathead are counted and measured. Catch rates are standardised to number of individuals/1000 m2 of bottom trawled, using GPS records of the start and end of each trawl and the swept area of the trawl net.\nPoint data representing start and stop position of trawl survey locations.\n\n*Please speak to Lawrance Ferns for further information*", "anzlicid": "ANZVI0803005595", "geonet_info_createdate": "2016-06-02", "revisiondate": "2021-06-16", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "66c2b22c13329189a8c7ae866571707f04dd22aa", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0c6761ee-7107-5bef-8e8a-e9670d19b774", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Administrative Department of Sustainability and Environment (DSE) Region Table", "alttitle": "AM_DSE_REGION", "tempextentbegin": "2023-01-24T00:04:02+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:02+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42131\", \"uuid\": \"0c6761ee-7107-5bef-8e8a-e9670d19b774\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Administrative Department of Sustainability and Environment (DSE) Region Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008756", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "99241802bbd4fe67cbcdb3b339a5c6bc02f200aa", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2f2d921a-a355-5bb6-a6db-f7c80892612d", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, Non digital - printed map.", "type": "dataset", "title": "Basins (1:500,000), Geological Interpretation of Geophysical Features Polygon", "alttitle": "GPGEOL500_POLYGON", "tempextentbegin": "2000-02-29T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2002-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36057\", \"uuid\": \"2f2d921a-a355-5bb6-a6db-f7c80892612d\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-29\", \"changeDate\": \"2022-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Basins (1:500,000), Geological Interpretation of Geophysical Features Polygon", "abstract": "This dataset contains interpreted geological data, both units underlying the basins and magnetic (mostly volcanic) units enclosed by the basin sediments. The linear features in the data set are geological boundaries, major faults, lesser faults and dykes.\n\nThe onshore magnetic, radiometric, topographic and gravity data have been collected by the Geological Survey of Victoria. This has been supplemented by offshore magnetic and bathymetric data collected by the Australian Geological Survey Organisation and deep seismic data collected by the Australian Geological Survey Organisation and company sources.\n\nThe map attempts to reconcile the onshore geology interpreted in Simons & Moore (1999) with the geophysical responses in a way that is geologically reasonable, and to carry this interpretation offshore at least as far as the Tasmanian sea boundary (generally 39 degrees 12 minutes South). The legend broadly uses the same time breaks as that of the Pre-Permian geological map, but includes younger packages that lie beneath the basin. No attempt has been made to subdivide granitic rocks of a particular age.\n\nThe dataset is accompanied by other datasets representing lava flows and the basin edges. Lava flows have been interpreted either from intersections in drill holes or from magnetic responses.\n\n\nReferences:\n\nMOORE, D.H., 2002. Eastern and central Gippsland Basin, southeast Australia: basement interpretation and basin links. Victorian Initiative for Minerals and Petroleum Report 69, Department of Natural Resources and Environment. \n\nMOORE, D.H., 2002. Basement-basin relationships in the Otway Basin, Victoria, Australia. Victorian Initiative for Minerals and Petroleum Report 78, Department of Natural Resources and Environment.\n\nSIMONS B.A., & MOORE, D.H., 1999. Victoria 1:1 000 000 Pre-Permian Geology. Geological Survey of Victoria.", "anzlicid": "ANZVI0803003409", "geonet_info_createdate": "2018-03-29", "revisiondate": "2022-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c98932c3eaa8bc469f07841c81022100413eeace", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "eac59d64-b3ac-58c4-8f82-a584302f89a5", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-05-28", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Estuary-drained portions of Victorian coastal catchments", "alttitle": "EST_CATCH", "tempextentbegin": "2006-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2008-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36059\", \"uuid\": \"eac59d64-b3ac-58c4-8f82-a584302f89a5\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-08\", \"changeDate\": \"2021-05-28\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Estuary-drained portions of Victorian coastal catchments", "abstract": "Areas of catchments that drain directly to Victorian estuaries - i.e. not via major freshwater tributaries. The layer was derived by Deakin University as part of the project: \"Linking catchments to the sea: Understanding how human activities impact on Victorian estuaries\" funded by the National Heritage Trust and the Department of Sustainability and Environment.", "anzlicid": "ANZVI0803003704", "geonet_info_createdate": "2017-03-08", "revisiondate": "2021-05-28", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e1a84f0d4c6d038670066586dbd207f5aac356f2", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "bb484059-e767-55ba-a19c-a0508fbb57b4", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-11-20", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Vegetation Plantation Thinning Table", "alttitle": "VG_PLANTATION_THINNING", "tempextentbegin": "2023-01-24T00:04:08+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:08+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42141\", \"uuid\": \"bb484059-e767-55ba-a19c-a0508fbb57b4\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2020-11-20\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Vicmap Reference - Vegetation Plantation Thinning Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008786", "geonet_info_createdate": "2020-11-20", "revisiondate": "2020-11-20", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b474d1487d7e9871f2bab4f391ad793aa37bdf20", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "62a33b28-a4e7-5cc1-a702-af12f2537896", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Property and Parcel Annotation Text Feature Table", "alttitle": "PR_ANNOTEXT_FEATURECODE", "tempextentbegin": "2023-01-24T00:04:09+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:09+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42142\", \"uuid\": \"62a33b28-a4e7-5cc1-a702-af12f2537896\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Property and Parcel Annotation Text Feature Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008774", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c0ab2dad5b5712975cac792619c6272c9f815974", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "02de2616-f276-5e16-a15f-028437f77b49", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Address Class Table", "alttitle": "ADDRESS_CLASS", "tempextentbegin": "2023-01-24T00:04:10+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:10+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42143\", \"uuid\": \"02de2616-f276-5e16-a15f-028437f77b49\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Address Class Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008749", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ade65f5d8eddd970661bc6d046ee003f7b0c30ae", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "013295b1-dd42-56ff-b24d-1a9af36b9286", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-06-08", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "SPRING_LOCATIONS_XX", "alttitle": "SPRING_LOCATIONS_XX", "tempextentbegin": "2004-02-29T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Primary Industries", "tempextentend": "2023-01-24T00:04:10+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36065\", \"uuid\": \"013295b1-dd42-56ff-b24d-1a9af36b9286\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-06-08\", \"changeDate\": \"2017-06-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "SPRING_LOCATIONS_XX", "abstract": "SPRING_LOCATIONS_XX", "anzlicid": "ANZVI0803005740", "geonet_info_createdate": "2017-06-08", "revisiondate": "2017-06-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "37e5205e90bccebd08c05c634b8cb343ad39d5d4", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "804dc569-a9a3-57d5-b2c5-42c783714970", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Feature Type Table", "alttitle": "FT_FEATURE_TYPE", "tempextentbegin": "2023-01-24T00:04:10+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:10+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42144\", \"uuid\": \"804dc569-a9a3-57d5-b2c5-42c783714970\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Feature Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008764", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2eb6e1ec30596fe916630ec58060a9337dc8b6d2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f820e396-84ac-598c-9c73-f0305a028783", "publicationdate": "2023-01-17", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-12-02", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Recreation Historic Relics", "alttitle": "RECWEB_HISTORIC_RELIC", "tempextentbegin": "2013-07-17T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:10+00:00", "maintenanceandupdatefrequency_text": "Daily", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36067\", \"uuid\": \"f820e396-84ac-598c-9c73-f0305a028783\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-16\", \"changeDate\": \"2022-12-02\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Recreation Historic Relics", "abstract": "Recreation historic relic dataset describes historic relics suitable for public visitation (such as timber tramways, old sawmill sites etc) that are promoted for visitation. The recreation historic relics within State Forest have been captured and recorded with a Trimble Pro XR GPS and are actively promoted to the public and maintained by the Department of Environment, Land, Water and Planning.\n\n* recweb", "anzlicid": "ANZVI0803005216", "geonet_info_createdate": "2019-05-16", "revisiondate": "2022-12-02", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "13418158c061bcc44a5f759ba8656e1946639f6f", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "92a0cf3a-dbec-51d3-8ef0-1887b6e84603", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Address Geocode Feature Table", "alttitle": "ADDRESS_GEOCODE_FEATURE", "tempextentbegin": "2023-01-24T00:04:11+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:11+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42145\", \"uuid\": \"92a0cf3a-dbec-51d3-8ef0-1887b6e84603\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Address Geocode Feature Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008752", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ff9b48caa6565899f14b65907fcf2cf649dc3759", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d1009abb-2b9b-5e63-a631-55fec2905712", "publicationdate": "2018-06-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-06-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Position - Survey Control - GDA94 to GDA2020 Transformation Sample Point", "alttitle": "GDA94_GDA2020_SAMPLE_POINT", "tempextentbegin": "2023-01-24T00:04:28+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:28+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36124\", \"uuid\": \"d1009abb-2b9b-5e63-a631-55fec2905712\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-01-15\", \"changeDate\": \"2022-06-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Position - Survey Control - GDA94 to GDA2020 Transformation Sample Point", "abstract": "This dataset includes GDA94 and GDA2020 coordinates derived in different ways:\n- GDA94 coordinates from the Victorian Survey Control Network Adjustment\n- GDA2020 coordinates from the National Adjustment \n- GDA2020 coordinates derived by applying the conformal grid to the GDA94 coordinates\n- GDA2020 coordinates derived by applying the distortion + conformal grid to the GDA94 coordinates\n- GDA2020 coordinates derived by applying the 7 parameter transformation to the GDA94 coordinates", "anzlicid": "ANZVI0803005834", "geonet_info_createdate": "2018-01-15", "revisiondate": "2022-06-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c4ec2d782d80334ccd019548af7b4ccafa813b99", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "48d03335-0ee2-5107-838a-630808cf0f09", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-05-18", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": ".", "type": "dataset", "title": "Index of Stream Condition", "alttitle": "ISC_REACH", "tempextentbegin": "2003-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2003-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36125\", \"uuid\": \"48d03335-0ee2-5107-838a-630808cf0f09\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-05-18\", \"changeDate\": \"2015-05-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Index of Stream Condition", "abstract": "Rates each section of major rivers according to a defined set of rules.", "anzlicid": "ANZVI0803002935", "geonet_info_createdate": "2015-05-18", "revisiondate": "2015-05-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "cc6282d270b33ab1bab1dbc529f8a02a053fe51d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2d19643b-7e57-5e2b-8d9a-44d16fb09804", "publicationdate": "2018-02-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-02-06", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Victorian Wetlands listed in - A Directory of Important Wetlands in Australia", "alttitle": "WETLANDDIR", "tempextentbegin": "2000-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2001-11-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36128\", \"uuid\": \"2d19643b-7e57-5e2b-8d9a-44d16fb09804\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-02-06\", \"changeDate\": \"2019-02-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Wetlands listed in - A Directory of Important Wetlands in Australia", "abstract": "This layer contains Victorian wetlands listed in the 3rd Edition of 'A Directory of Important Wetlands of Australia' (2001). Descriptions for each wetland are available in the directory which is available on the Environment Austalia website at:\nhttp://www.ea.gov.au/water/wetlands/database/index.html \nThese wetlands are derived from the WETLAND_1994 CGDL layer, hydrological CGDL layer and other sources such as topographic maps.\nThe 2017 update of the Victorian Wetland Inventory (Current) resulted in improved accuracy of the boundary of a number of wetlands, based on on-ground mapping. WETLAND_CURRENT provided the source data to improve the WETLANDDIR dataset.", "anzlicid": "ANZVI0803002376", "geonet_info_createdate": "2019-02-06", "revisiondate": "2019-02-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a7a9047c8205bda59f4e666581797cb50a509ab8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "58e37f86-9930-5437-b2bd-d3ca090387b3", "publicationdate": "2022-05-24", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "type": "dataset", "title": "EPA Victoria Victorian Landfill Register (VLR) - Location Points", "alttitle": "VLR_POINT", "tempextentbegin": "1905-11-30T14:00:00+00:00", "resowner": "Environment Protection Authority Victoria", "tempextentend": "2019-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36131\", \"uuid\": \"58e37f86-9930-5437-b2bd-d3ca090387b3\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-08-15\", \"changeDate\": \"2020-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "EPA Victoria Victorian Landfill Register (VLR) - Location Points", "abstract": "The Victorian Landfill Register created by EPA in 2018 lists all current and known closed landfills in Victoria and creates a strong foundation for building a complete and comprehensive landfill register for Victorians. Landfills can cause contamination, but once a landfill is closed, operators are obliged to rehabilitate and manage their sites. Even when closed, careful management of sites is required. Many rehabilitated landfills are now safe parks and public spaces, enjoyed by the community.\n\nThe register draws information from various sources and all sites listed undergo verification before inclusion on the register. \n\nWhile this public register will make landfill information more available, it should not be used as the only source of information when making important decisions. EPA will continue to build on the register, adding information and improving the service.\n\nThis dataset mirrors the VLR data available on EPA's website, but may not be up to date due to data transfer processes. For the most up to date VLR data, go to EPA's website to view directly as an interactive map through NationalMap or be downloaded in a variety of file formats.", "anzlicid": "ANZVI0803005874", "geonet_info_createdate": "2019-08-15", "revisiondate": "2020-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5ede9c7d3d1f671410a4949dfb0ad13f91472ae1", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3aba3f15-e372-5c7a-a2eb-739f699f7edd", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Infrastructure Sports Type Table", "alttitle": "IN_SPORTS_TYPE", "tempextentbegin": "2023-01-24T00:04:12+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:12+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42147\", \"uuid\": \"3aba3f15-e372-5c7a-a2eb-739f699f7edd\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Infrastructure Sports Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008770", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "810b56fa39719adba498554a476238f1d33b9ece", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9865fbdf-8f54-5cc3-a79b-95c1d39ab7a6", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Infrastructure Utility Function Table", "alttitle": "IN_ALL_UTILITY_FUNCTION", "tempextentbegin": "2023-01-24T00:04:14+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:14+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42151\", \"uuid\": \"9865fbdf-8f54-5cc3-a79b-95c1d39ab7a6\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Infrastructure Utility Function Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008768", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e5611bb2c85fde756c6628f8a2a1de25789a238c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "60bfa03f-4a74-5d8e-82a3-c55cd8dac79e", "publicationdate": "2022-07-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-28", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "shapefile ArcSDE", "type": "dataset", "title": "Melbourne Water Retailers", "alttitle": "MELBOURNE_WATER_RETAILER", "tempextentbegin": "2007-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33960\", \"uuid\": \"60bfa03f-4a74-5d8e-82a3-c55cd8dac79e\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-11-30\", \"changeDate\": \"2022-07-28\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Melbourne Water Retailers", "abstract": "Boundaries defining the approximate jurisdiction of the Melbourne Water Retailers.\nOn 1 July 2021, Greater Western Water was formed by merging Western Water and City West Water.", "anzlicid": "ANZVI0803005831", "geonet_info_createdate": "2018-11-30", "revisiondate": "2022-07-28", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7755632aa0d9fe06ffe3aca2ae4c71ae34606c20", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "8f11f330-8db1-5188-8fb6-9ccb620132df", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-01-10", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Priority Rivers 2008", "alttitle": "ASSET_PRIORITY_RIVERS_2008", "tempextentbegin": "2012-03-19T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2012-03-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;planned", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36082\", \"uuid\": \"8f11f330-8db1-5188-8fb6-9ccb620132df\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-01-10\", \"changeDate\": \"2019-01-10\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "unclassified", "defaulttitle": "Priority Rivers 2008", "abstract": "Old priority rivers and estuaries layers were supplied for the Priority Rivers 2008.\nPlease Note that the spatial accuracy of the data is incorrect. There is a shift in numerous areas of up to 200m within the data. This discrepancy is not uniformed within the data.\nThe Water group will be creating a new layer sometime in 2012.\nThe information on values and threats for the priority rivers\nand estuaries all sits with individual CMAs on their old RiVERS databases. If RCS\nmanagers need to know the values and threats for the priority assets they need\nto work directly with their waterway manager in their CMA.", "anzlicid": "ANZVI0803004555", "geonet_info_createdate": "2019-01-10", "revisiondate": "2019-01-10", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "453e2e8e764113a419e03e38ff86b50b2f16bb7f", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0d3e3c3a-a3cd-583f-88e7-0128801acade", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Feature Subtype Table", "alttitle": "FEATURE_SUBTYPE_TABLE", "tempextentbegin": "2023-01-24T00:04:15+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:15+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42152\", \"uuid\": \"0d3e3c3a-a3cd-583f-88e7-0128801acade\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Feature Subtype Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008761", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "88930a57e7fe934bdb96648cf3c3964e3ac00f6a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "8c8b7ae3-108c-5e9a-8086-e184a1963f68", "publicationdate": "2018-10-11", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-11-19", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Bedrock Outcrop", "alttitle": "BEDROCK_OUTCROP", "tempextentbegin": "2012-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2017-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36083\", \"uuid\": \"8c8b7ae3-108c-5e9a-8086-e184a1963f68\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2019-11-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Bedrock Outcrop", "abstract": "Spatial extent of areas in Victoria where the consolidated bedrock is exposed to the surface. This is usually due to geological activity such as faulting or erosion.", "anzlicid": "ANZVI0803005944", "geonet_info_createdate": "2019-11-19", "revisiondate": "2019-11-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1777e358892b3d4f08388bb086ef95176493bf19", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "be15bc57-a614-5df1-a2a7-2e8d39fe6d1b", "publicationdate": "2021-08-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "PTV Metro Tram Routes", "alttitle": "PTV_METRO_TRAM_ROUTE", "tempextentbegin": "2018-02-28T13:00:00+00:00", "resowner": "Department of Transport", "tempextentend": "2023-01-24T00:04:15+00:00", "maintenanceandupdatefrequency_text": "Quarterly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33961\", \"uuid\": \"be15bc57-a614-5df1-a2a7-2e8d39fe6d1b\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-02\", \"changeDate\": \"2022-02-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "PTV Metro Tram Routes", "abstract": "This layer depicts a spatial object (polyline) representing metropolitan tram routes. Each polylines represents a unique route variation. Each route has attributes that describe route, trip headsign (direction), route length, first/last stop, number of stops and operator name. The data has been generated from the PTV GTFS data with extra attributes from PTV's TransNet database. \nThis dataset supersedes \"PTV_TRAM_ROUTE\".\nThis dataset was first loaded into the VSDL in March 2018 and will be updated approximately quarterly.", "anzlicid": "ANZVI0803005849", "geonet_info_createdate": "2018-03-02", "revisiondate": "2022-02-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6b33d38bb993d8257b92ab756d29126660396658", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "732423a6-f0f0-5027-bad8-174f68e9bb64", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "GIPSLAND LAKES 1% AEP MSL INUNDATION", "alttitle": "GL_1AEP_MSL_EXTENT", "tempextentbegin": "2012-10-11T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-04-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;climatology, meteorology, atmosphere;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36084\", \"uuid\": \"732423a6-f0f0-5027-bad8-174f68e9bb64\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-09-27\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "GIPSLAND LAKES 1% AEP MSL INUNDATION", "abstract": "The GIPPSLAND LAKES Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Gippsland Lakes coastal environment.\n\nThe data represents the extent of the 1% Average Exceedance Probability (AEP) water level within the Gippsland Lakes, incorporating existing mean sea level (MSL) conditions based on hydrodynamic modelling. The 1% AEP water level conditions comprise of a combination of catchment generated inflows, coastal ocean levels and wind setup. \n\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.", "anzlicid": "ANZVI0803005603", "geonet_info_createdate": "2018-09-27", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1710dced5198bb9d0f090cd3cda993bef47f7f63", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0aa541e7-1d37-50a9-9e55-e156a18fb366", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Address Feature Quality Table", "alttitle": "ADDRESS_FEATURE_QUALITY", "tempextentbegin": "2023-01-24T00:04:18+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:18+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42156\", \"uuid\": \"0aa541e7-1d37-50a9-9e55-e156a18fb366\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Address Feature Quality Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008750", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "100c4f645d5e18afa00038c0320e3cb6f4699a0c", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a83c453c-84bf-59c9-9f24-0532688359d2", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Airport Hierarchy Table", "alttitle": "TR_AIRPORT_HIERARCHY", "tempextentbegin": "2023-01-24T00:04:18+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:18+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42157\", \"uuid\": \"a83c453c-84bf-59c9-9f24-0532688359d2\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Airport Hierarchy Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008781", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6e68854c5d638d07f1430f6581d05fb3082582ab", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "63051886-510f-533e-8afc-5dcc2a44af3e", "publicationdate": "2019-08-26", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-02-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, Digital - MapInfo (planned for 2001), Non digital - plotted maps", "type": "dataset", "title": "Regolith Regional type polygons (1:100,000)", "alttitle": "RRREGO100_POLYGON", "tempextentbegin": "2001-06-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36095\", \"uuid\": \"63051886-510f-533e-8afc-5dcc2a44af3e\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-09\", \"changeDate\": \"2016-02-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Regolith Regional type polygons (1:100,000)", "abstract": "The data contains primary geological data, namely regolith-landform units and boundary types separating regolith-landform units.\n\nThe dataset is part of the geological mapping dataset, which includes datasets representing geological rock units and boundaries, regolith-landform units and boundaries, structural lines, miscellaneous lines and points, miscellaneous polygons, metamorphism and placer deposits.\n\nThe data have been collected by the Geological Survey of Victoria. Data have been captured in projects covering special interest areas, and have been recorded in the field by hand at scales between 1:10,000 and 1:25,000 then prepared for hard copy printing at a range of scales.", "anzlicid": "ANZVI0803003393", "geonet_info_createdate": "2016-02-09", "revisiondate": "2016-02-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9905957c8bdf8f87aee677ca1003f69b8b0ecf54", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "4f4420a5-2c75-571b-8eaa-b38a80aef7d9", "publicationdate": "2022-10-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-06-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Planning - Codelist Table", "alttitle": "PLAN_CODELIST", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:20+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36099\", \"uuid\": \"4f4420a5-2c75-571b-8eaa-b38a80aef7d9\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-09\", \"changeDate\": \"2021-06-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Planning - Codelist Table", "abstract": "This dataset consists of an aspatial table that links the attribute \"zone_num\" with the full planning scheme descriptions. \n\nThis layer is attributed with:\n- zone number\n- zone code\n- description\n- legend groupings (4 separate attributes)\n- scheme type\n- RGB colour values", "anzlicid": "ANZVI0803002913", "geonet_info_createdate": "2019-09-09", "revisiondate": "2021-06-16", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9ab6b5a7f00934bce7297bec3ebbd5c49017230a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3508ad58-e66b-50e4-9717-0338845ded77", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available.", "type": "dataset", "title": "Victorian Bioregions - Mapped at 1:100,000 (version 3.0 - May2004)", "alttitle": "VBIOREG100", "tempextentbegin": "2001-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2002-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36100\", \"uuid\": \"3508ad58-e66b-50e4-9717-0338845ded77\", \"schema\": \"iso19115-3\", \"createDate\": \"2010-01-08\", \"changeDate\": \"2021-08-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Bioregions - Mapped at 1:100,000 (version 3.0 - May2004)", "abstract": "This dataset delineates Victorian biogeographic regions (Victorian bioregions) that capture the patterns of ecological characteristics in the landscape, providing a natural framework for recognising and responding to biodiversity values. Victorian bioregions form part of the national framework for the terrestrial environment, the Interim Biogeographic Regionalisation for Australia (IBRA). The boundaries are aligned with pre-1750 ecological vegetation class boundaries mapped at 1:100,000. The dataset upgrades the VBIOREGION250 dataset which was primarily based in 1:250,000 landsystem boundaries.", "anzlicid": "ANZVI0803002636", "geonet_info_createdate": "2010-01-08", "revisiondate": "2021-08-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4e7cd1751819dce7aa77f86032d48e3544db227e", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3a99ba15-bdba-5b32-882e-89988ba05a9b", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Mapping Scale Use Table", "alttitle": "SCALE_USE", "tempextentbegin": "2023-01-24T00:04:21+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:21+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42162\", \"uuid\": \"3a99ba15-bdba-5b32-882e-89988ba05a9b\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Mapping Scale Use Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008778", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f137aa2dec364061108c53704c7e8733cd120c70", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "545fbaea-7617-5aa0-9deb-76534ac49465", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Address Location Descripton Table", "alttitle": "ADDRESS_LOCATION_DESCRIPTOR", "tempextentbegin": "2023-01-24T00:04:22+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:22+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42164\", \"uuid\": \"545fbaea-7617-5aa0-9deb-76534ac49465\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Address Location Descripton Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008754", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9a256ce6c47860d48320c778353b0a981c10d565", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e5e52c37-a5bb-5e65-b3ff-1d043f0f2305", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Crown Land Managment Tenure Description Table", "alttitle": "CL_TENURE_DESC", "tempextentbegin": "2023-01-24T00:04:23+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:23+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42166\", \"uuid\": \"e5e52c37-a5bb-5e65-b3ff-1d043f0f2305\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Crown Land Managment Tenure Description Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008758", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0e2926f3dcd68b022d62b78581437dd4693b78bf", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ad7ccd98-56ff-583a-92bb-141cdda06e74", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Vicmap Lite Airport Hierarchy Table", "alttitle": "VL_AIRPORT_HIERARCHY", "tempextentbegin": "2023-01-24T00:04:24+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:24+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42168\", \"uuid\": \"ad7ccd98-56ff-583a-92bb-141cdda06e74\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Vicmap Lite Airport Hierarchy Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008783", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "62397e0936b5568c933807119946577f97d5c847", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "579d189a-cdd6-5d1b-a02c-3c6f2ce5662c", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Crown Land Tenure - Crown Land Management Tenure Polygon", "alttitle": "CL_TENURE_VIEW", "tempextentbegin": "1990-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:27+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33983\", \"uuid\": \"579d189a-cdd6-5d1b-a02c-3c6f2ce5662c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Crown Land Tenure - Crown Land Management Tenure Polygon", "abstract": "NOTE: This layer is current up to August 2011.\n\nPart of the Vicmap Crown Land Tenure dataset series. This is a statewide dataset that plays a key role in the management of Victoria's Crown land. It has been created (June 2003 - Feb 2004) from migrating LCMP layers into the Vicmap structure.\n\nThe layer provides information about the Private use of Crown land Parcels and Crown Roads.\n\nThe database is continually maintained, obtaining maintenance from authoritative sources within State Government.\n\nCL_TENURE_VIEW contains a number of Tenure types including:\n- (A) Agricultural including Unused Road licences, Water Frontage licences and Grazing licences,\n- (L) Lease including Commercial type leases,\n- (G) General Licences including miscellaneous community use licences, permits & consents\n- (P) Pipe including Water supply pipelines,\n- (RM) Reserve including land gazetted as a Reserve in Government Gazettes,\n- Tenure Identifiers, Tenure type identifiers and Tenure code identifiers.\n- Unique feature identifiers, date stamps and data quality information.\n- Cross reference to Vicmap Property.", "anzlicid": "ANZVI0803002916", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1139d5f26e9c5adaa80fe5ab66b9378185e1a42a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d257574b-6630-51f1-a53e-a9a23c0de1c8", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-12-15", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "product", "title": "Vicmap Features of Interest", "alttitle": "VICMAP_FEATURES_OF_INTEREST", "tempextentbegin": "2009-04-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:03+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "location;structure;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33940\", \"uuid\": \"d257574b-6630-51f1-a53e-a9a23c0de1c8\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-05-12\", \"changeDate\": \"2022-12-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Features of Interest", "abstract": "Vicmap Features of Interest Product contains a series of datasets.\nThis dataset series contains a range of features of interest represented by points, lines and/or polygons within Victoria. \nDatasets in the series are listed below. See their metadata entries for more detailed metadata.\nVMFEAT_FOI_INDEX_CENTROID\nVMFEAT_FOI_INDEX_EXTENT\nVMFEAT_FOI_LINE\nVMFEAT_FOI_POINT\nVMFEAT_FOI_POLYGON\nVMFEAT_LOCALITY_POINT\nRegister of Geographic Names - Vicmap Features of Interest (GNR);\nBuilt Up area - Vicmap Features of Interest (PL_PLACE_AREA_POLYGON);\nBuilding Point (VMFEAT_BUILDING_POINT);\nBuilding Poly (VMFEAT_BUILDING_POLY):", "anzlicid": "ANZVI0803003646", "geonet_info_createdate": "2020-05-12", "revisiondate": "2022-12-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "3433aabc89d6023b2f1789844def2a6060af8c66", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "75305b63-7a03-523f-a8d1-3b54718b9c28", "publicationdate": "2021-09-17", "publishedforgroup": "0;12264", "geonet_info_changedate": "2018-11-26", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI Shape", "type": "dataset", "title": "Oil and Gas Fields", "alttitle": "OILGAS", "tempextentbegin": "2001-06-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2017-08-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33945\", \"uuid\": \"75305b63-7a03-523f-a8d1-3b54718b9c28\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-11-26\", \"changeDate\": \"2018-11-26\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Oil and Gas Fields", "abstract": "Oil and Gas fields as supplied by Petroleum Section within Minerals and Petroleum Division in the Department of Primary Industries.", "anzlicid": "ANZVI0803002448", "geonet_info_createdate": "2018-11-26", "revisiondate": "2018-11-26", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b8857e88f609b0bb9308f4e0b2226ac80ff52ade", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5330c00b-2083-50cc-b532-4406c1d57901", "publicationdate": "2018-02-01", "publishedforgroup": "12264;0", "geonet_info_changedate": "2019-05-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Not Known", "type": "dataset", "title": "Victorian Land Use Information System 2006/2007", "alttitle": "LANDUSE_2006", "tempextentbegin": "2005-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2007-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33996\", \"uuid\": \"5330c00b-2083-50cc-b532-4406c1d57901\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-14\", \"changeDate\": \"2019-05-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Land Use Information System 2006/2007", "abstract": "The Victorian Land Use Information System (VLUIS) dataset has been created by the Spatial Information Sciences Group of the Agriculture Research Division in the Department of Economic Development, Jobs, Transport, and Resources. The method used to create VLUIS is significantly different to traditional methods used to create land use information and has been designed to create regular and consistent data over time. It covers the entire landmass of Victoria and separately describes the land tenure, land use and land cover for each cadastral parcel across the state, biennially for land tenure and use and annually for land cover; for each year from 2006 to 2015. The data is in the form of a feature class. \n\nTo use the VLUIS data correctly it is important to understand the difference between the three components of VLUIS. The Guidelines for land use mapping in Australia: principles, procedures and definitions, Edition 3 published in 2006 by the Commonwealth of Australia, defines them as follows: \nLand tenure is the ownership and leasehold interests in land (VLUIS only reports ownership). Land use means the purpose to which the land cover is committed or the property type. Land cover refers to the physical surface of the earth, including various combinations of vegetation types, soils, exposed rocks and water bodies as well as anthropogenic elements, such as agriculture and built environments. \nThe Victorian Land Use Information System (VLUIS) is an ongoing project designed to maintain and manage the Victorian land use mapping dataset.\n\nThe methodology is still being refined and as such the dataset is subject to improvements and the release of later versions. It is important you speak to the custodian to be advised of the technical details of the dataset and its utility for your desired use. \n\nLand cover classification accuracy varies between classes and the overall classification accuracy may be misleading in terms of the accuracy of an individual class. Users are asked to contact the data custodians for detailed class accuracy information if required for their purposes.\n\nIrrigation activity is included when available. The data was not available in 2006-07 and there was incomplete coverage in 2012-13 and therefore the irrigation activity was not included in either of those datasets.\n\nThe dataset does not replace LandUse100 which is still valid for the time in which it was created (1996 - 2005).\n\nA metadata statement, for the VLUIS 2006/07 product, and ESRI symbology files for the data can be freely downloaded from the VLUIS project page:\nhttp://vro.depi.vic.gov.au/dpi/vro/vrosite.nsf/pages/vluis\n\nDOI: http://dx.doi.org/10.5061/dryad.n08t0", "anzlicid": "ANZVI0803005383", "geonet_info_createdate": "2019-05-14", "revisiondate": "2019-05-14", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "675704392ccc19c62f643935b1269e0998a7de9a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5a3bec68-69ea-5596-9d07-f414faff39b6", "publicationdate": "2021-11-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-18", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Estuaries", "alttitle": "ESTUARIES", "tempextentbegin": "2001-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-02-07T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36134\", \"uuid\": \"5a3bec68-69ea-5596-9d07-f414faff39b6\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-06\", \"changeDate\": \"2021-11-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Estuaries", "abstract": "Areas of estuarine waters derived and updated by the Index of Estuary Condition funded by the Department Environment, Land, Water and Planning. Underlying estuarine areas were produced by Deakin University as part of the projects: \"Linking catchments to the sea: Understanding how human activities impact on Victorian estuaries\" funded by the National Heritage Trust (Barton et al., 2008) and the Department of Sustainability and Environment and the Trial Implementation of the Index of Estuary Condition, funded by the Department of Sustainability and Environment and Deakin University (Pope et al., 2015).", "anzlicid": "ANZVI0803003703", "geonet_info_createdate": "2015-11-06", "revisiondate": "2021-11-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "405a98342eb0ba02842efe4f197470290fec873c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "74130d00-be40-5993-9455-5c651ba5717f", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Land Systems of Victoria at 1:250 000", "alttitle": "LSYS250", "tempextentbegin": "1949-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:02+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36037\", \"uuid\": \"74130d00-be40-5993-9455-5c651ba5717f\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-04-07\", \"changeDate\": \"2021-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Land Systems of Victoria at 1:250 000", "abstract": "The land systems of Victoria, as described and delineated by Rowan in 1989, provide a statewide coverage of land types that are applicable to a wide range of land resource management and planning programs. These land systems sit within a geomorphological framework developed by Jenkin and Rowan.\n\nThis data set consolidates a broad range of land resource information drawn from an uneven base to provide a consistent, if limited, coverage of the lands of Victoria. The explicit links with the original sources of data have been retained.\n\nThe data set was developed from a range of studies of varying methodologies and intensities over some forty years. The reliability of the information varies across regions accordingly.\n\nThis edition (3) incorporates new survey material [Shires of West Wimmera, Lowan, West Towong and East Gippsland (east of Snowy River)] as well as changes in the nomenclature with the substitution of broad slope class with relative relief classes (eg. plains, hills, mountains). An addition factor (lithological age) was also added to the key. There is still a link with the Edition 2 version in the main Land Systems table.\n\nMore information on land system mapping can be found on Victorian Resources Online\nhttp://vro.depi.vic.gov.au/dpi/vro/vrosite.nsf/pages/landform_systems\n\nDOI 10.4226/92/58e727e0dd1be", "anzlicid": "ANZVI0803001033", "geonet_info_createdate": "2017-04-07", "revisiondate": "2021-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "231cbd77fa3b84829c27b9f293a6f238eb3b364b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "4d8d7d33-f33b-5d56-82de-7687048e7a16", "publicationdate": "2023-01-22", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-02-25", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All ESRI supported formats available", "type": "dataset", "title": "DSE Roads database - Crossing structures", "alttitle": "RDB_CROSSINGS", "tempextentbegin": "2005-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:39+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34020\", \"uuid\": \"4d8d7d33-f33b-5d56-82de-7687048e7a16\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-05-12\", \"changeDate\": \"2021-02-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "DSE Roads database - Crossing structures", "abstract": "Crossings is the location and description of crossing structures on roads within Public land.\nIt includes bridges, culverts, fords and other crossing types, particularly those requiring maintenance.\nIt is a point feature class, tied to Vicmap Transport lines.\n\nDSE's ROADS database contains information relating to DSE-managed road and crossings assets.\nIt is envisaged that the database be accessible through GIMS asset management system.", "anzlicid": "ANZVI0803003403", "geonet_info_createdate": "2017-05-12", "revisiondate": "2021-02-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "95e3fd2a16740721fb3b6808c9ad3e9d7970475d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "d29b5d2e-57da-50b0-a9a3-6a5b675e808d", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2011-07-22", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "Sensitive view areas within the East Gippsland Forest Management Area", "alttitle": "EG_SENSITIVE_VIEW_AREAS", "tempextentbegin": "2006-01-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2006-01-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36158\", \"uuid\": \"d29b5d2e-57da-50b0-a9a3-6a5b675e808d\", \"schema\": \"iso19115-3\", \"createDate\": \"2011-07-22\", \"changeDate\": \"2011-07-22\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "limitedDistribution", "defaulttitle": "Sensitive view areas within the East Gippsland Forest Management Area", "abstract": "This layer shows the location of sensitive view areas and major lookouts in the East Gippsland FMA.\n\nThis layer should be used in conjunction with two other layers EG_SCENIC_DRIVE_NETWORK and EG_SENSITIVE_RIDGELINES.\n\nThe East Gippsland Forest Management Plan acknowledges that while timber harvesting is the mainstay of the local economy, harvested areas should not dominate visitor's experience and their impressions of the forest. One component of landscape protection outlined in the Plan is the importance of coupe design and timimg to ensure that harvesting which is conducted in highly visible areas as seen from lookouts or vantage points (sensitive view areas) is visually minimised. Map 22 of the Proposed East Gippsland Forest Management Plan clearly shows the areas which are highly visible from lookouts or vantage points in the East Gippsland FMA. Map 26 of the East Gippsland Forest Management Plan shows the location of major lookouts within the East Gippsland Forest Management Area. In 2006 the Landscape Management Guidelines EGFMA were developed which included the creation of this digital arcview layer using the information from map 22 and map 26.", "anzlicid": "ANZVI0803004456", "geonet_info_createdate": "2011-07-22", "revisiondate": "2011-07-22", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "60c782ae9588d66a51a2db7ac90c04fa7f1c5fa2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e7e8d36e-9e6a-5487-abdb-59ce3b97fef6", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-11-18", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Potential Groundwater Dependent Ecosystem (GDE) Mapping for the Wimmera CMA", "alttitle": "GDE_TERR_WCMA", "tempextentbegin": "1995-01-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2005-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;biota;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34026\", \"uuid\": \"e7e8d36e-9e6a-5487-abdb-59ce3b97fef6\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-11-18\", \"changeDate\": \"2013-11-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Potential Groundwater Dependent Ecosystem (GDE) Mapping for the Wimmera CMA", "abstract": "Potential Groundwater Dependent Ecosystems (GDE) are ecosystems identified within the landscape as likely to be at least partly dependent on groundwater. State-wide screening analysis was performed to identify locations of potential terrestrial GDEs, including wetland areas. The GDE mapping was developed utilising satellite remote sensing data, geological data and groundwater monitoring data in a GIS overlay model. Validation of the model through field assessment has not been performed. The method has been applied for all of Victoria and is the first step in identifying potential groundwater dependent ecosystems that may be threatened by activities such as drainage and groundwater pumping. The dataset specifically covers the Wimmera Catchment Management Authority (CMA) area. The method used in this research is based upon the characteristics of a potential GDE containing area as one that:\n1. Has access to groundwater. By definition a GDE must have access to groundwater. For GDE occurrences associated with wetlands and river systems the water table will be at surface with a zone of capillary extension. In the case of terrestrial GDE's (outside of wetlands and river systems), these are dependent on the interaction between depth to water table and the rooting depth of the vegetation community.\n2. Has summer (dry period) use of water. Due to the physics of root water uptake, GDEs will use groundwater when other sources are no longer available; this is generally in summer for the Victorian climate. The ability to use groundwater during dry periods creates a contrasting growth pattern with surrounding landscapes where growth has ceased.\n3. Has consistent growth patterns, vegetation that uses water all year round will have perennial growth patterns.\n4. Has growth patterns similar to verified GDEs. \nThe current mapping does not indicate the degree of groundwater dependence, only locations in the landscape of potential groundwater dependent ecosystems. This dataset does not directly support interpretation of the amount of dependence or the amount of groundwater used by the regions highlighted within the maps. Further analysis and more detailed field based data collection are required to support this.\n\nThe core data used in the modelling is largely circa 1995 to 2005. It is expected that the methodology used will over estimate the extent of terrestrial GDEs. There will be locations that appear from EvapoTranspiration (ET) data to fulfil the definition of a GDE (as defined by the mapping model) that may not be using groundwater. Two prominent examples are: 1. Riparian zones along sections of rivers and creeks that have deep water tables where the stream feeds the groundwater system and the riparian vegetation is able to access this water flow, as well as any bank storage contained in the valley alluvials. 2. Forested regions that are accessing large unsaturated regolith water stores.\nThe terrestrial GDE layer polygons are classified based on the expected depth to groundwater (ie shallow <5 m or deep >5 m). Additional landscape attributes are also assigned to each mappnig polygon.\n\nIn 2011-2012 a species tolerance model was developed by Arthur Rylah Institute, collaborating with DPI, to model landscapes with ability to support GDEs and to provide a relative measure of sensitivity of those ecosystems to changes in groundwater availability and quality. Rev 1 of the GDE mapping incorporates species tolerance model attributes for each potential GDE polygon and attributes for interpreted depth to groundwater.\n\nSeparate datasets and associated metadata records have been created for GDE species tolerance.", "anzlicid": "ANZVI0803005169", "geonet_info_createdate": "2013-11-18", "revisiondate": "2013-11-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "cb9a6728e5d6dfc009f57b896cc2f773b4965b72", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "07c6d541-2b02-5a3a-9bf8-a6f5a7d70bf2", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-02-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, Digital - ArcView, Digital - MapInfo", "type": "dataset", "title": "Geological zones of contact metamorphism (1:100,000)", "alttitle": "CONMETA100_POLYGON", "tempextentbegin": "1969-12-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34028\", \"uuid\": \"07c6d541-2b02-5a3a-9bf8-a6f5a7d70bf2\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-09\", \"changeDate\": \"2016-02-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological zones of contact metamorphism (1:100,000)", "abstract": "The data displays areas of contact and regional metamorphism, and the style of metamorphism\n\nThe data have been collected by the Geological Survey of Victoria. The dataset is accompanied by other datasets representing geology outcrop and boundaries, structural lines, miscellaneous lines and points, miscellaneous polygons, and placer deposits.", "anzlicid": "ANZVI0803003384", "geonet_info_createdate": "2016-02-09", "revisiondate": "2016-02-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "28da9e04caefa53a2c009518c696d1ad4d502767", "fields": {"available_formats": "ECW,GeoTIFF,JPEG,JPEG 2000,TIFF", "resclassification": "unclassified", "uuid": "c5c5b1b2-1ec2-5bbb-af6c-6e24d0ee7655", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - GeoTiff", "type": "dataset", "title": "NaturePrint v4.0 Strategic Biodiversity Values", "alttitle": "NATUREPRINT_4_0_SBV", "tempextentbegin": "2016-04-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-04-19T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34050\", \"uuid\": \"c5c5b1b2-1ec2-5bbb-af6c-6e24d0ee7655\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-01-29\", \"changeDate\": \"2021-08-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "NaturePrint v4.0 Strategic Biodiversity Values", "abstract": "Strategic Biodiversity Values (SBV) is one of NaturePrint's decision-support products. It combines information on important areas for threatened flora and fauna, levels of depletion, connectivity, vegetation types and condition to provide a view of relative biodiversity importance of all parts of the Victorian landscape. This integrated information is important because decision-makers need access to an objective, comprehensive and spatially explicit view of the importance of biodiversity assets to enable comparison of locations across Victoria.", "anzlicid": "ANZVI0803005827", "geonet_info_createdate": "2019-01-29", "revisiondate": "2021-08-16", "spatialrepresentationtype_text": "Grid"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e76f269c8b367f8f9f6cf559208efb79438d4555", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "357c687e-512d-5fe3-9386-5eb93b05cc9e", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-11-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - Shapefile", "type": "dataset", "title": "Geological boundaries represented as two dimensional lines (1:250,000)", "alttitle": "SG_GEOL_UNIT_CONTACT_250K", "tempextentbegin": "2005-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2014-08-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36187\", \"uuid\": \"357c687e-512d-5fe3-9386-5eb93b05cc9e\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-11-05\", \"changeDate\": \"2014-11-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological boundaries represented as two dimensional lines (1:250,000)", "abstract": "Geological boundaries represented as two dimensional lines. Other geological features (e.g. fault or dyke) are included where the feature forms a boundary to rock units. The polygon edges are constructed from the corresponding geological contacts and faults layer\n\nThe data have been collected by the GeoScience Victoria.", "anzlicid": "ANZVI0803004694", "geonet_info_createdate": "2014-11-05", "revisiondate": "2014-11-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7f714b487da9fa5964ec19ff7bb246649a3e079e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a6314070-7afa-585a-92ad-470a7635f2fd", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, Non digital - printed map.", "type": "dataset", "title": "Interpreted Lava Flows (1:500,000), Geological Interpretation of Geophysical Features Arc", "alttitle": "GPLAVAFLW500_ARC", "tempextentbegin": "2000-02-29T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2002-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36190\", \"uuid\": \"a6314070-7afa-585a-92ad-470a7635f2fd\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-29\", \"changeDate\": \"2022-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Interpreted Lava Flows (1:500,000), Geological Interpretation of Geophysical Features Arc", "abstract": "This dataset contains Lava flows that have been interpreted either from intersections in drill holes or from magnetic responses.\n\nThe dataset is accompanied by other datasets representing geological boundaries, major faults, lesser faults, dykes and the basin edges.\n\n\nReferences:\n\nMOORE, D.H., 2002. Eastern and central Gippsland Basin, southeast Australia: basement interpretation and basin links. Victorian Initiative for Minerals and Petroleum Report 69, Department of Natural Resources and Environment. \n\nMOORE, D.H., 2002. Basement-basin relationships in the Otway Basin, Victoria, Australia. Victorian Initiative for Minerals and Petroleum Report 78, Department of Natural Resources and Environment.\n\nSIMONS B.A., & MOORE, D.H., 1999. Victoria 1:1 000 000 Pre-Permian Geology. Geological Survey of Victoria.", "anzlicid": "ANZVI0803003412", "geonet_info_createdate": "2018-03-29", "revisiondate": "2022-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fe337aed7b6381f2e37686a7314953127fa9c022", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "7e95626b-0cac-51be-adb2-18f4dbc9e769", "publicationdate": "2019-02-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "GMU", "alttitle": "GMU", "tempextentbegin": "2015-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36192\", \"uuid\": \"7e95626b-0cac-51be-adb2-18f4dbc9e769\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2020-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "GMU", "abstract": "This table is used by the Groundwater Resource Reporting Tool.\n\nIt includes GMAs and WSPAs.", "anzlicid": "ANZVI0803008422", "geonet_info_createdate": "2019-11-19", "revisiondate": "2020-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bdaee9a87d191b4f45a4fd6deb368e5bc0e81ae5", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "e9941a4e-bd57-5c79-a322-2dffee39c30b", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-11-16", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Vicroads Mapbook Pagegrid 1:25,000 Edition 8", "alttitle": "VICROADS_PAGEGRID_25_ED8", "tempextentbegin": "2023-01-24T00:04:51+00:00", "resowner": "VicRoads", "tempextentend": "2023-01-24T00:04:51+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34060\", \"uuid\": \"e9941a4e-bd57-5c79-a322-2dffee39c30b\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-05-20\", \"changeDate\": \"2020-11-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Vicmap Index - Vicroads Mapbook Pagegrid 1:25,000 Edition 8", "abstract": "This dataset is derived from the Vicroads directory and contains the page grid for the 1:25 000 town maps.", "anzlicid": "ANZVI0803004585", "geonet_info_createdate": "2013-05-20", "revisiondate": "2020-11-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8c1f5b23525681850732ae82f96c71550af31570", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "55d8ec52-6bb8-5698-949b-4825b44a66dd", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "1:50 000 AMG Mapsheet Boundaries", "alttitle": "TILE50", "tempextentbegin": "2005-04-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2005-04-19T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36200\", \"uuid\": \"55d8ec52-6bb8-5698-949b-4825b44a66dd\", \"schema\": \"iso19115-3\", \"createDate\": \"2010-03-26\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "1:50 000 AMG Mapsheet Boundaries", "abstract": "1:50 000 Australian Mapgrid Mapsheet Boundaries.", "anzlicid": "ANZVI0803003006", "geonet_info_createdate": "2010-03-26", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "756e5acd957c5bcc381bf61815a6a66e90887d9e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "95b06937-04aa-5928-9a27-0ebe4b4731e0", "publicationdate": "2018-07-17", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-01-04", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All ESRI supported formats available", "type": "dataset", "title": "DSE Roads database - VicForest Toll Roads", "alttitle": "RDB_TOLLROADS", "tempextentbegin": "2011-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:53+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36205\", \"uuid\": \"95b06937-04aa-5928-9a27-0ebe4b4731e0\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-01-04\", \"changeDate\": \"2017-01-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "DSE Roads database - VicForest Toll Roads", "abstract": "Toll Roads are a linear representation of roads on Public land defined by if the road is used by VicForests for their logging operations.\n\nThe underlying linear data is derived from Vicmap Transport Roads. Toll Roads are assigned through a relational database connection and the arcs grouped to simplify data geometry.\n\nDSE's ROADS database contains information relating to DSE-managed road assets.\nIt is envisaged that the database be accessible through GIMS asset management system.", "anzlicid": "ANZVI0803004724", "geonet_info_createdate": "2017-01-04", "revisiondate": "2017-01-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8a1f89fa6ec9462d9b98fb13d310ae4feff2869a", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ecf98a18-329e-5be4-845d-0f67972c6734", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Parcel Standard Parcel Identifier (SPI) Reliability Table", "alttitle": "PR_SPI", "tempextentbegin": "2023-01-24T00:04:54+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:54+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36206\", \"uuid\": \"ecf98a18-329e-5be4-845d-0f67972c6734\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Parcel Standard Parcel Identifier (SPI) Reliability Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003152", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "33e45ed295433d99d017ba1c552928565c6c7a19", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a95c7ad8-f5d2-5a03-8ade-748b9fc1a03a", "publicationdate": "2018-12-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-06-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Aquifer Salinity - Basal", "alttitle": "AQUIFER_SAL_BASAL", "tempextentbegin": "2023-01-24T00:04:55+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:55+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36210\", \"uuid\": \"a95c7ad8-f5d2-5a03-8ade-748b9fc1a03a\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-06-19\", \"changeDate\": \"2013-06-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Aquifer Salinity - Basal", "abstract": "This dataset contains groundwater salinity information for boreholes which had terminated at least 5m and no more than 50m above bedrock. The bores have been extracted predominantly from the Groundwater Management System (GMS) and the State Observation Bore Network (SOBN).\n \nIt should be noted that the analysis undertaken with the salinity data was only of a preliminary nature and should be treated with a critical approach. Local validation of the data (e.g. screen depths) needs to be undertaken in detail.\n \nThe dataset was compiled by GHD to inform the report 'Potential Influences of Geological Structures on Groundwater Flow Systems' for DEPI's Secure Allocation Future Entitlements (SAFE) Project.", "anzlicid": "ANZVI0803005002", "geonet_info_createdate": "2013-06-19", "revisiondate": "2013-06-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e58f2907d35dda547d44303ab91c8c87c21e6232", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6524d691-d254-530e-b691-3b1013172716", "publicationdate": "2018-01-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - all major formats available", "type": "dataset", "title": "Coastal bird habitats on the Victorian coast", "alttitle": "COASTAL_BIRD_HABITAT", "tempextentbegin": "2006-05-31T14:00:00+00:00", "resowner": "Department of Transport", "tempextentend": "2015-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34074\", \"uuid\": \"6524d691-d254-530e-b691-3b1013172716\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-04-04\", \"changeDate\": \"2021-11-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Coastal bird habitats on the Victorian coast", "abstract": "This layer identifies bird habitats in the Victorian coastal region. The layer is a polygon coverage with the polygon areas representing the main area of the respective bird habitats. Sites were identified from a broad range of published and unpublished sources of information and from personal communications made by experts in the field. In 2015 some additional locations were added with data from Birdlife Australia Shorebird 2020 Data. This dataset was formerly know as SHOREBIRD HABITAT but was renamed as it contains sites for seabirds and other birds.", "anzlicid": "ANZVI0803002183", "geonet_info_createdate": "2019-04-04", "revisiondate": "2021-11-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "aaa23ff0fdf3dc80e80ed99fe13dd3b167845bfd", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "eeeffb68-0c39-548e-b9aa-07ab4444021f", "publicationdate": "2022-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital Shapefile", "type": "dataset", "title": "Average Modelled Wind Speeds (m/s) for Victoria", "alttitle": "WIND_SPEED", "tempextentbegin": "2013-05-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2013-05-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36168\", \"uuid\": \"eeeffb68-0c39-548e-b9aa-07ab4444021f\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-04-06\", \"changeDate\": \"2022-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Average Modelled Wind Speeds (m/s) for Victoria", "abstract": "The wind resource has been mapped on a 3 km x 3 km grid across Victoria. Average annual wind speeds have been modelled using the WindScape wind resource mapping tool that was developed by the Wind Energy Research Unit of CSIRO Land and Water in 2002. WindScape uses atmospheric data, and regional topography to model the wind resource at 65 metres above ground level to a resolution of 3 kilometres. The resolution of the modelled wind resource means that it does not incorporate the effects of local landscape features smaller than 3 kilometres in size, like small hills and ridges. This dataset is derived from the same data used to create the overview map of the Victorian wind atlas published by the Sustainable Energy Authority Victoria, c2003", "anzlicid": "ANZVI0803005049", "geonet_info_createdate": "2018-04-06", "revisiondate": "2022-11-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7874e36289be2ee4d776409db2e9484e95de1e23", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "77b2e70f-60b4-5387-b88a-240990838b07", "publicationdate": "2018-10-24", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-11-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "2016 Bellarine Peninsula 1% AEP Coastal Inundation Dynamic Model with 0.2m Sea Level Rise", "alttitle": "BP_DYNAMIC_1AEP_020SLR", "tempextentbegin": "2014-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;geoscientific information;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34033\", \"uuid\": \"77b2e70f-60b4-5387-b88a-240990838b07\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-10-19\", \"changeDate\": \"2022-11-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2016 Bellarine Peninsula 1% AEP Coastal Inundation Dynamic Model with 0.2m Sea Level Rise", "abstract": "The Bellarine-Corio Bay Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Bellarine-Corio Bay coastal environment.\n\nDynamic inundation modelling was carried out to create this data layer for 1% Annual Exceedance Probability (AEP) coastal inundation under the assumption of 0.2 m Sea Level Rise in 2016, for the following study areas along the coast of the Bellarine Peninsula and Greater Geelong area: Barwon Heads / Lake Connewarre; Breamlea; Newcomb; and Queenscliff / Lakers Cutting.\n\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.\n\nAttribute Information: Max_d - Maximum depth (m); max_s - Maximum velocity (m/s); max_vxd - Velocity*Depth Criteria; max_wse - Maximuum water surface elevation (mAHD).", "anzlicid": "ANZVI0803005922", "geonet_info_createdate": "2018-10-19", "revisiondate": "2022-11-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5d4d3b23e9c677f39e49aec77f66c2983c1fec4c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7bb3df75-8ca6-5a33-bba6-7d28ff14d858", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Land Conservation Council Study Areas as applied in 1989", "alttitle": "LCC500_1989", "tempextentbegin": "1994-10-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:42+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "obsolete", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36169\", \"uuid\": \"7bb3df75-8ca6-5a33-bba6-7d28ff14d858\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-08\", \"changeDate\": \"2017-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Obsolete", "mdclassification": "unclassified", "defaulttitle": "Land Conservation Council Study Areas as applied in 1989", "abstract": "This layer contains the line and polygon features depicting the Land Conservation Council Study Area boundaries according to the Statewide Assessment Report of 1989.\n\nThere are no boundaries for Special Investigations included in this dataset.", "anzlicid": "ANZVI0803001100", "geonet_info_createdate": "2017-03-08", "revisiondate": "2017-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d9a6860c236b9dd799f2d5b6f49f9ad67a5976e0", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "89be9d3f-a4fc-55be-888b-94e12283e5f6", "publicationdate": "2020-11-04", "publishedforgroup": "12264;0", "geonet_info_changedate": "2014-11-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - Shapefile", "type": "dataset", "title": "Shear displacement structures (1:250,000)", "alttitle": "SG_SHEAR_DISPLACE_STRUC_250K", "tempextentbegin": "2005-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2014-08-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34038\", \"uuid\": \"89be9d3f-a4fc-55be-888b-94e12283e5f6\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-11-05\", \"changeDate\": \"2014-11-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Shear displacement structures (1:250,000)", "abstract": "Shear displacement structures. Other geological features (e.g. fault or dyke) are included where the feature forms a boundary to rock units. The lines are constructed from the corresponding geological contacts and faults layer\n\nThe data have been collected by the GeoScience Victoria.", "anzlicid": "ANZVI0803004695", "geonet_info_createdate": "2014-11-05", "revisiondate": "2014-11-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c927970ea36fb592b9dba72ce5cfd3ff07c8d656", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d3879f1d-490b-5e96-876b-63711a600094", "publicationdate": "2022-08-06", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Fire history overlay of most recent fires only showing scars", "alttitle": "FIRE_HISTORY_SCAR_LASTBURNT", "tempextentbegin": "1899-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:46+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34044\", \"uuid\": \"d3879f1d-490b-5e96-876b-63711a600094\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-08-23\", \"changeDate\": \"2022-08-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Fire history overlay of most recent fires only showing scars", "abstract": "This layer has been derived from FIRE_HISTORY data and represents the spatial extent of the last fires recorded, primarily on public land. The layer stores details of the last time an area was known to be burnt by wildfire or prescribed burning and represents a consecutive overlay of all FIRE_HISTORY layers, from older fire seasons to the most recent fire seasons. The data will show fire scars but not severity.\n\nThis data set is current to 2021/22 fire season.", "anzlicid": "ANZVI0803008514", "geonet_info_createdate": "2019-08-23", "revisiondate": "2022-08-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4ac2409226c08070600e6c13e0ed43fc4ccf91eb", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7c845620-0393-55fd-a560-104f91ea5588", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-11-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Flood levee spot heights as at 2000", "alttitle": "LEVEE_SPOTHEIGHT", "tempextentbegin": "1869-12-31T14:20:08+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "1999-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34118\", \"uuid\": \"7c845620-0393-55fd-a560-104f91ea5588\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-09-21\", \"changeDate\": \"2022-11-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Flood levee spot heights as at 2000", "abstract": "Point features showing recorded spot heights of flood levees relevant to flood mapping projects. \n\nThis layer may be used with levee lines to show location and condition of levees and their height. For flood modelling and management of levee infrastructure.\n\nNote:\n- The nodes in the lines (arcs) can be attributed with height where applicable.", "anzlicid": "ANZVI0803003337", "geonet_info_createdate": "2015-09-21", "revisiondate": "2022-11-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c4f5e5f3833bc3026c55a16b49f8f09b59a7264a", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e27f62a8-75ec-55fc-b638-b3fcb2882ec2", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-02-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Transport - Road Locality Table", "alttitle": "TR_ROAD_LOCALITY", "tempextentbegin": "2023-01-24T00:05:08+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:08+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36251\", \"uuid\": \"e27f62a8-75ec-55fc-b638-b3fcb2882ec2\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-21\", \"changeDate\": \"2020-02-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Transport - Road Locality Table", "abstract": "Part of Vicmap Transport, TR_ROAD_LOCALITY is an Aspatial table.", "anzlicid": "ANZVI0803003244", "geonet_info_createdate": "2020-02-21", "revisiondate": "2020-02-21", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a682289d28703fd2066452dc5bcafa4576426baa", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6ae45d3c-45f1-5ced-b27a-8e91a37b139d", "publicationdate": "2019-04-16", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-10-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI Shape", "type": "dataset", "title": "Seismic Survey Points - for Petroleum Industry Exploration", "alttitle": "SEISMIC_POINT", "tempextentbegin": "1948-12-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2004-10-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36252\", \"uuid\": \"6ae45d3c-45f1-5ced-b27a-8e91a37b139d\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-10-21\", \"changeDate\": \"2016-10-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Seismic Survey Points - for Petroleum Industry Exploration", "abstract": "Seismic Survey Points - for Petroleum Industry Exploration", "anzlicid": "ANZVI0803002765", "geonet_info_createdate": "2016-10-21", "revisiondate": "2016-10-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5de75da2bfc712037531f6c98bdcc931829b86b9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1553f19f-3b03-5e40-924e-6355eb9a3f89", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-01-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "product", "title": "Vicmap Admin", "alttitle": "VICMAP_ADMIN", "tempextentbegin": "1998-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:09+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34121\", \"uuid\": \"1553f19f-3b03-5e40-924e-6355eb9a3f89\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-07-26\", \"changeDate\": \"2022-01-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin", "abstract": "This dataset series contains polygon features delineating key Victorian administrative boundaries. It comprises several data sets and is part of the Vicmap suite of products.\nDatasets in the series are listed below. See their individual metadata entries for more product specific metadata.\n\nLocal Government Area Boundaries - LGA_POLYGON (aligned to Property);\nLocal Government Area Boundaries - AD_LGA_AREA_POLYGON (aligned to Topo);\n\nLocality Boundaries - LOCALITY_POLYGON (aligned to Property):\nLocality Boundaries - AD_LOCALITY_AREA_POLYGON (aligned to Topo);\n\nPostcode Boundaries - POSTCODE_POLYGON (aligned to Property);\n\nParish Boundaries - PARISH_POLYGON;\n\nTownship Boundaries - TOWNSHIP_POLYGON;\n\nVictorian Lower House Electoral Boundaries 2022 - STATE_ASSEMBLY_2022;\nVictorian Lower House Electoral Boundaries 2013 - STATE_ASSEMBLY_2013 (to be retired after 1 March 2023);\n\nVictorian Upper House Electoral Boundaries 2022 - STATE_COUNCIL_2022;\nVictorian Upper House Electoral Boundaries 2013 - STATE_COUNCIL_2013 (to be retired after 1 March 2023);\n\nWard Boundaries (Property) - WARD_2020;\n\nVictorian Government Regional Departmental Boundaries - VICGOV_REGION (aligned to Property);\nVictorian Government Regional Departmental Boundaries - AD_VICGOV_REGION (aligned to Topo);\n\nDept of Environment, Land, Water and Planning - DELWP_REGION (aligned to Topo);\n\nCountry Fire Authority (CFA) District Boundaries - CFA_DISTRICT;\nCountry Fire Authority (CFA) Region Boundaries - CFA_REGION;\nCountry Fire Authority (CFA) Total Fire Ban Districts - CFA_TFB_DISTRICT;\n\nFire Rescue Victoria Regions - FRV_REGION;\nFire Rescue Victoria Districts - FRV_DISTRICT;\nFire Rescue Victoria Response Area - FRV_RESPONSE_AREA;\nFire Rescue Victoria Legislated Boundary - FRV_LEGISLATED_BOUNDARY;\n\nEmergency Management Victoria Regions - EMERGENCY_MANAGEMENT_REGION.", "anzlicid": "ANZVI0803002529", "geonet_info_createdate": "2019-07-26", "revisiondate": "2022-01-14", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5e5ad22587e2d0d43cd008b8bc7ec4b808933799", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3736c691-de05-5ae8-a8db-52a7bcf09854", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-02-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Hydro - Navigation Line", "alttitle": "HY_NAVIGATION_LINE", "tempextentbegin": "1998-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2000-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;environment;inland waters;farming;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36262\", \"uuid\": \"3736c691-de05-5ae8-a8db-52a7bcf09854\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-21\", \"changeDate\": \"2020-02-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Hydro - Navigation Line", "abstract": "This layer is part of Vicmap Hydro and contains line features delineating hydro/navigation features.\nIncludes; Reefs & Ledges.", "anzlicid": "ANZVI0803002494", "geonet_info_createdate": "2020-02-21", "revisiondate": "2020-02-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b528d9e3039809dded63bed7fe5eff5f8f9eaae8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "fb2f263a-00b9-5d7f-9ea8-7e7bdab370cd", "publicationdate": "2020-11-04", "publishedforgroup": "12264;0", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "product", "title": "Coal Model - Latrobe Valley - Earth Resources Spatial Data Collection for the Datamart.", "alttitle": "DM_MIN_COAL_LATVAL", "tempextentbegin": "1998-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:05:03+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34097\", \"uuid\": \"fb2f263a-00b9-5d7f-9ea8-7e7bdab370cd\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Coal Model - Latrobe Valley - Earth Resources Spatial Data Collection for the Datamart.", "abstract": "Datasets relating to the coal model in the Latrobe Valley.\nCollected for Earth Resources within DSDBI", "anzlicid": "ANZVI0803003355", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "49d9a715261963f46dee3d479743daf3aad11139", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c8685890-d4fc-5f29-97be-5a2be61d032a", "publicationdate": "2023-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Victorian Biodiversity Atlas flora records (unrestricted) for sites with moderate to low spatial accuracy", "alttitle": "VBA_FLORA100", "tempextentbegin": "1749-12-31T14:20:08+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:04+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36237\", \"uuid\": \"c8685890-d4fc-5f29-97be-5a2be61d032a\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-07-22\", \"changeDate\": \"2021-08-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Biodiversity Atlas flora records (unrestricted) for sites with moderate to low spatial accuracy", "abstract": "This layer contains a snapshot of flora taxa records from the Victorian Biodiversity Atlas (VBA) (including most threatened taxa). The main attributes in this layer are survey id, survey location, date, time, locational accuracy, taxa recorded, counts, observation type, survey type, collector, and reliability of the record. The VERS_DATE column identifies the currency of the data.\n\nAlthough this is a point layer, the actual accuracy of the site can range from +/- 500m to +/- 10 km.\n\nThe FFG field has been updated to reflect the 2021 FFG Act amendments, and the Victorian Advisory List (VICADV) is now obsolete.\n\nThis layer excludes restricted taxa records. These records are contained in the related (but restricted) dataset VBA_FLORA_RESTRICTED. Public users wishing to view the general location of these records should refer to the related dataset VBA_RESTRICTED_1M,", "anzlicid": "ANZVI0803004162", "geonet_info_createdate": "2016-07-22", "revisiondate": "2021-08-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "40d677adffbab1d84cef29c187d752fe5733ff94", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "558dc7cb-937d-5ed6-886e-9c43c3d98704", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2005-04-26", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo coverage/ArcView shapefile/MapInfo table - see LIG or dataset expert for other data formats not available in the corporate library.", "type": "dataset", "title": "Final ECC recommendations for the Box-Ironbark Forests and Woodlands Investigation.", "alttitle": "BOXIRON_RECS", "tempextentbegin": "1995-10-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2001-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36240\", \"uuid\": \"558dc7cb-937d-5ed6-886e-9c43c3d98704\", \"schema\": \"iso19115-3\", \"createDate\": \"2005-04-26\", \"changeDate\": \"2005-04-26\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Final ECC recommendations for the Box-Ironbark Forests and Woodlands Investigation.", "abstract": "Box-Ironbark Forests and Woodlands Investigation Final Recommendations - for the Environment Conservation Council.\nThe Minister, under Section 17 of the Environment Conservation Council Act 1997 required the Environment Conservation Council to carry out an investigation of Victoria\u0092s Box-Ironbark Forests and Woodlands occurring on public land in northern Victoria. The area investigated was the box-ironbark ecosystem stretching from the Grampians in the west to Wodonga in the north-east.", "anzlicid": "ANZVI0803002694", "geonet_info_createdate": "2005-04-26", "revisiondate": "2005-04-26", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9dfff94e98fae53cc321953aac1a1c603e338a83", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2713c5f8-efb0-5938-9bf2-fdd1aa98efe2", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-03-07", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "type": "dataset", "title": "1 minute increments of the GDA94 latitude/longitude graticule", "alttitle": "GRID_1M", "tempextentbegin": "2011-10-25T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:06+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36243\", \"uuid\": \"2713c5f8-efb0-5938-9bf2-fdd1aa98efe2\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-07\", \"changeDate\": \"2017-03-07\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "1 minute increments of the GDA94 latitude/longitude graticule", "abstract": "This dataset is a simple polygon layer of rectangular cells aligned to 1 minute increments of the GDA94 latitude/longitude graticule. It is designed for use as an indexing mechanism for point record observations of flora and fauna. The layer covers an area of south-east Australia extending from 139 degrees to 151 degrees 30 minutes EAST and 33 degrees to 42 degrees SOUTH. It thus incorporates substantial areas of South Australia and New South Wales plus all of Bass Strait and the north coast of Tasmania.", "anzlicid": "ANZVI0803004131", "geonet_info_createdate": "2017-03-07", "revisiondate": "2017-03-07", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fdafcc6e28e6b2862a2fd7a7c963f8f3dab2ebc8", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "5f6dfa9d-bb33-54b2-8477-7206803c2f81", "publicationdate": "2023-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-17", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All major formats available", "type": "nonGeographicDataset", "title": "Fire Danger Ratings from the CFA Website", "alttitle": "CFA_FIRE_DANGER_RATINGS", "tempextentbegin": "2010-09-22T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:07+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36246\", \"uuid\": \"5f6dfa9d-bb33-54b2-8477-7206803c2f81\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-10-31\", \"changeDate\": \"2022-02-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Fire Danger Ratings from the CFA Website", "abstract": "A table that holds daily fire danger forecasts as released by the CFA RSS feed: http://www.cfa.vic.gov.au/restrictions/tfbfdrforecast_rss.xml.\n\nThis table is populated on all Mapshare database instances at 6am each day.", "anzlicid": "ANZVI0803005385", "geonet_info_createdate": "2019-10-31", "revisiondate": "2022-02-17", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2790aca206064fd8d9b539ec0c2bea37ba97206d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "f0ac1e33-110d-5641-96df-e333b161a3f8", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-21", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Major River Basins of South-eastern Australia", "alttitle": "BASIN100_SEAUS", "tempextentbegin": "2011-03-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2011-03-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34113\", \"uuid\": \"f0ac1e33-110d-5641-96df-e333b161a3f8\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-06-01\", \"changeDate\": \"2022-10-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Major River Basins of South-eastern Australia", "abstract": "This layer combines the river basins of Victoria (from DSE's \"BASIN100\") with neighbouring river basins in other states (from Geoscience Australia's \"Australia's River Basins 1997\"). The basins are contained within two drainage divisions; the Murray Darling Division and the South East Coast Division.", "anzlicid": "ANZVI0803004279", "geonet_info_createdate": "2016-06-01", "revisiondate": "2022-10-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2e9e13e0df057452c390f221c7dfaab71a44f384", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "aed3a0d1-0b45-57bf-b1b2-976265578471", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-02-11", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, MapInfo, Non digital - plotted maps", "type": "dataset", "title": "SubSurface Geophysics (1:250,000), Geological Interpretation of Subsurface Geophysical Features, at level 2", "alttitle": "GPSGEOL2250_POLYGON", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36230\", \"uuid\": \"aed3a0d1-0b45-57bf-b1b2-976265578471\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-11\", \"changeDate\": \"2016-02-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "SubSurface Geophysics (1:250,000), Geological Interpretation of Subsurface Geophysical Features, at level 2", "abstract": "This dataset contains interpreted geological data, using combined interpretations of airborne magnetic, radiometric and gravity survey data, mapped at 1:250,000 of deeply buried geological units. In this layer units, along with their associated linework, have been classified as 'deep' since they reside beneath other geophysically interpreted units which are usually themselves below the mapped surface geology.\n\nAt scales larger than 1:120,000 the display is a combination of both 1:100,000 and 1:250,000 geophysical mapping. Recent 1:250,000 geophysical mapping has been of such quality and detail it has been used to supersede older coincident 1:100,000 mapping. This occurs in the following areas: St Arnaud 7524, Dunolly 7624, Charlton 7525, Wedderburn 7625 and part of Ararat 7423 are superseded by St Arnaud SJ54-4. Bendigo 7724, Heathcote 7824 and Nagambie 7924 are superseded by Bendigo SJ55-1. \n\nBalmoral 7223, Ararat 7423, Horsham SJ54-3 and St Arnaud SJ54-4 supersede Grampians 7323 where there is overlap.\n\nThe Ouyen SI54-15 and Horsham SJ54-3 map areas are datasets derived from a combination of Geological Interpretation of Basement Geophysical Features maps and Geological Interpretation of Post-Cratonic Geophysical Features maps performed by Moore, D. H.\n\nThis data has been collected by the Geological Survey of Victoria. This dataset is accompanied by other datasets representing geological polygons and boundaries, structural lines, miscellaneous lines and metamorphism.", "anzlicid": "ANZVI0803003429", "geonet_info_createdate": "2016-02-11", "revisiondate": "2016-02-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "019910d366727b2f7e6a0545fc8b858e9ab9a522", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "40bba3e7-c3ab-5ded-ba44-036ae5bab00b", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Land Victoria Senior Land Use Planning Officer (SLUPO) Areas", "alttitle": "LANDVIC", "tempextentbegin": "1998-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "1998-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34007\", \"uuid\": \"40bba3e7-c3ab-5ded-ba44-036ae5bab00b\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-17\", \"changeDate\": \"2013-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Land Victoria Senior Land Use Planning Officer (SLUPO) Areas", "abstract": "Land Victoria Senior Land Use Planning Officer (SLUPO) Areas are not the same as the Land Vic Areas , so a copy of their areas were taken and modified to produce the new layer.\nThis layer is meant to indicate the SLUPO that is responsible for the land contained within a tenement.", "anzlicid": "ANZVI0803002334", "geonet_info_createdate": "2013-09-17", "revisiondate": "2013-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4d66a16eab6658db54b429f8d497268ab1487afd", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "dce454c0-0a84-56c4-942f-0675ddfbe1d8", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-11-03", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "type": "dataset", "title": "Coal Cross Section Lines", "alttitle": "XSEC_COAL", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2004-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36147\", \"uuid\": \"dce454c0-0a84-56c4-942f-0675ddfbe1d8\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-11-03\", \"changeDate\": \"2016-11-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Coal Cross Section Lines", "abstract": "Coal Cross Section Lines. The lines are an index to cross sectional diagrams relating to coal.", "anzlicid": "ANZVI0803003507", "geonet_info_createdate": "2016-11-03", "revisiondate": "2016-11-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f6db03898cac0deacebc8f597cd8d4651b09d3cd", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5eabd7bd-d51c-5b93-acf8-a425cc452de3", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Vicmap Topographic 1:50,000 MGA Single Format Map Index", "alttitle": "VICMAP_MAPINDEX_50S", "tempextentbegin": "1980-08-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "1980-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36148\", \"uuid\": \"5eabd7bd-d51c-5b93-acf8-a425cc452de3\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-01-24\", \"changeDate\": \"2022-07-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Vicmap Topographic 1:50,000 MGA Single Format Map Index", "abstract": "1:50 000 Mapgrid of Australia Boundaries.", "anzlicid": "ANZVI0803004578", "geonet_info_createdate": "2017-01-24", "revisiondate": "2022-07-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ec2bd79078fa868ffa80ecd5c8dbc61d97d2a69d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "21a6ba36-c257-5dd7-a3f3-1dd14815de1b", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-01-28", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI Shapefile", "type": "dataset", "title": "Coal Strip Ratio Maps", "alttitle": "COAL_RESOURCE", "tempextentbegin": "2011-04-12T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2011-04-12T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;economy;structure;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36336\", \"uuid\": \"21a6ba36-c257-5dd7-a3f3-1dd14815de1b\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-01-28\", \"changeDate\": \"2014-01-28\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Coal Strip Ratio Maps", "abstract": "Strip Ratio Maps\nThe following ten strip ratio maps were generated accross the 2011 Coal model area:\nto Yallourn seam floor;\nto Morwell 1a seam floor;\nto Morwell 1b seam floor;\nto Morwell 2a seam floor;\nto Morwell 2a seam floor;\nto Traralgon seam floor;\nto 200m depth;\nto 300m depth;\nto 400m depth; and\nto 500m depth.\nMaps show vertical striping ratio expressed as coal tonnes to waste cubic metres. Seam floor maps are calculated to the floor of the specified seam (or lowest split); or lowest overlying seam if this seam is absent. Depth maps are calculated to the lowest seamfloor that is shallower than the specified depth. The model is based on a pre-mine topography and substantial coal has already been extracted.\n\n\nLink to Further Coal Seam model Information\n\nLink to Coal Model Data (works in firefox , but not internet explorer)", "anzlicid": "ANZVI0803004557", "geonet_info_createdate": "2014-01-28", "revisiondate": "2014-01-28", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c961e7223ff1e56a1c4f6534017a5da0d584103d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "22418f7c-7db3-5056-bbc4-dc0e943c2fd4", "publicationdate": "2023-01-16", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Original Exploration Licence Area at the time it was first Granted", "alttitle": "ELPEND", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:05:34+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36337\", \"uuid\": \"22418f7c-7db3-5056-bbc4-dc0e943c2fd4\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-19\", \"changeDate\": \"2021-07-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Original Exploration Licence Area at the time it was first Granted", "abstract": "Contains details only on current titles. The idea is to save the original area and when the title finally expires, transfer it to the expired layers eg ELHST", "anzlicid": "ANZVI0803002347", "geonet_info_createdate": "2013-09-19", "revisiondate": "2021-07-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f65176c9393977f7643b237a6369041dd7957962", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3e0c18ed-ed48-583e-983b-edf79aca469b", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-11-18", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Potential Groundwater Dependent Ecosystem (GDE) Mapping for the Glenelg Hopkins CMA", "alttitle": "GDE_TERR_GHCMA", "tempextentbegin": "1995-01-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2005-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;biota;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36338\", \"uuid\": \"3e0c18ed-ed48-583e-983b-edf79aca469b\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-11-18\", \"changeDate\": \"2013-11-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Potential Groundwater Dependent Ecosystem (GDE) Mapping for the Glenelg Hopkins CMA", "abstract": "Potential Groundwater Dependent Ecosystems (GDE) are ecosystems identified within the landscape as likely to be at least partly dependent on groundwater. State-wide screening analysis was performed to identify locations of potential terrestrial GDEs, including wetland areas. The GDE mapping was developed utilising satellite remote sensing data, geological data and groundwater monitoring data in a GIS overlay model. Validation of the model through field assessment has not been performed. The method has been applied for all of Victoria and is the first step in identifying potential groundwater dependent ecosystems that may be threatened by activities such as drainage and groundwater pumping. The dataset specifically covers the Glenelg Hopkins Catchment Management Authority (CMA) area. The method used in this research is based upon the characteristics of a potential GDE containing area as one that:\n1. Has access to groundwater. By definition a GDE must have access to groundwater. For GDE occurrences associated with wetlands and river systems the water table will be at surface with a zone of capillary extension. In the case of terrestrial GDE's (outside of wetlands and river systems), these are dependent on the interaction between depth to water table and the rooting depth of the vegetation community.\n2. Has summer (dry period) use of water. Due to the physics of root water uptake, GDEs will use groundwater when other sources are no longer available; this is generally in summer for the Victorian climate. The ability to use groundwater during dry periods creates a contrasting growth pattern with surrounding landscapes where growth has ceased.\n3. Has consistent growth patterns, vegetation that uses water all year round will have perennial growth patterns.\n4. Has growth patterns similar to verified GDEs. \nThe current mapping does not indicate the degree of groundwater dependence, only locations in the landscape of potential groundwater dependent ecosystems. This dataset does not directly support interpretation of the amount of dependence or the amount of groundwater used by the regions highlighted within the maps. Further analysis and more detailed field based data collection are required to support this.\n\nThe core data used in the modelling is largely circa 1995 to 2005. It is expected that the methodology used will over estimate the extent of terrestrial GDEs. There will be locations that appear from EvapoTranspiration (ET) data to fulfil the definition of a GDE (as defined by the mapping model) that may not be using groundwater. Two prominent examples are: 1. Riparian zones along sections of rivers and creeks that have deep water tables where the stream feeds the groundwater system and the riparian vegetation is able to access this water flow, as well as any bank storage contained in the valley alluvials. 2. Forested regions that are accessing large unsaturated regolith water stores.\nThe terrestrial GDE layer polygons are classified based on the expected depth to groundwater (ie shallow <5 m or deep >5 m). Additional landscape attributes are also assigned to each mappnig polygon.\n\nIn 2011-2012 a species tolerance model was developed by Arthur Rylah Institute, collaborating with DPI, to model landscapes with ability to support GDEs and to provide a relative measure of sensitivity of those ecosystems to changes in groundwater availability and quality. Rev 1 of the GDE mapping incorporates species tolerance model attributes for each potential GDE polygon and attributes for interpreted depth to groundwater.\n\nSeparate datasets and associated metadata records have been created for GDE species tolerance.", "anzlicid": "ANZVI0803005164", "geonet_info_createdate": "2013-11-18", "revisiondate": "2013-11-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5b5d9cb088e71b272f22aef58943bdf50f119a23", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1d907fde-e82f-59d2-a4c4-754c5d8dac95", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-11-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Declared floodways 2012", "alttitle": "FLOODWAY", "tempextentbegin": "1997-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2012-02-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34204\", \"uuid\": \"1d907fde-e82f-59d2-a4c4-754c5d8dac95\", \"schema\": \"iso19115-3\", \"createDate\": \"2011-12-06\", \"changeDate\": \"2022-11-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Declared floodways 2012", "abstract": "Polygon features representing 'Declared' or otherwise delineated floodways as at 2012. \n\nDeclared floodways are a legally defined area subject to flooding, documented through the municipal planning schemes. Floodways are typically areas of low lying land close to rivers that are prone to flooding. They may include natural or modified depressions and intermittent lakes. \n\nData originally sourced from Flood Data Transfer Project, 2000. This layer superceedes floodway25.", "anzlicid": "ANZVI0803004311", "geonet_info_createdate": "2011-12-06", "revisiondate": "2022-11-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2e140c98b74e8f95b8750e5c561eda616583bf43", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3d73977e-3b20-5920-8eb5-3a82f9e612e8", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - Metropolitan Fire Brigade (MFB) Region Polygon", "alttitle": "MFB_REGION", "tempextentbegin": "2013-03-11T13:00:00+00:00", "resowner": "Fire Rescue Victoria;Fire Rescue Victoria", "tempextentend": "2020-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36345\", \"uuid\": \"3d73977e-3b20-5920-8eb5-3a82f9e612e8\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - Metropolitan Fire Brigade (MFB) Region Polygon", "abstract": "Part of the Vicmap Admin dataset series. This layer contains polygon features delineating the current Metropolitan Fire Brigade Region Boundaries.\n\nPolygon features demonstrating MFB's two administrative regions. MFB Regions are a parent-group to MFB Districts.\n\nNOTE: This dataset was superceded by FRV_REGION in July 2020, and was withdrawn in December 2020 from the Vicmap Admin product.", "anzlicid": "ANZVI0803004854", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b2ee3c3c1999d1ee91b14db440d7238c30de2fad", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "46955d9b-5e2c-59f0-a134-76157607d38f", "publicationdate": "2019-10-25", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-11-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Feature Class", "type": "dataset", "title": "2010 Index of Stream Condition Scores", "alttitle": "ISC2010_SCORES", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34133\", \"uuid\": \"46955d9b-5e2c-59f0-a134-76157607d38f\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-13\", \"changeDate\": \"2019-11-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition Scores", "abstract": "The ISC2010_SCORES dataset represents the 2010 Index of Stream Condition (ISC) overall score and subindex scores for each ISC river reach in the state of Victoria. This was the third ISC assessment providing a snapshot of river health for major rivers and streams in Victoria, using data collected over a six-year period from 2004 to 2010. The methods used in 2010 differed to the 1999 and 2004 assessments. Method changes were undertaken to strike a balance between incorporating new scientific advances while maintaining compariability of results with the 1999 and 2004 benchmarks. The ISC 2010 provides scores for five components of stream condition: (i) hydrology (based on change in volume and seasonality of flow from natural conditions); (ii) physical form (based on bank stability, bed erosion or aggradation, influence of artificial barriers, and abundance and origin of coarse woody debris); (iii) streamside zone (based on types of plants; spatial extent, width, and intactness of riparian vegetation; regeneration of overstorey species, and condition of wetlands and billabongs); (iv) water quality (based on an assessment of phosphorus, turbidity, electrical conductivity and pH); and (v) aquatic life (based on number of families of macroinvertebrates). The Physical Form and Riparian Vegetation components of the ISC were mapped by the Department of Environment and Primary Industries (DEPI) in 2010-12 using LIDAR and aerial photography. Other ISC metrics were derived from other sources. Further information available at: https://www.water.vic.gov.au/waterways-and-catchments/rivers-estuaries-and-waterways/monitoring", "anzlicid": "ANZVI0803008551", "geonet_info_createdate": "2019-11-13", "revisiondate": "2019-11-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "095f36407f3d4ccfaa5bd586e562f2ac3df82b9b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d371ff80-1e32-59ab-91c9-717bb99acf8c", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Vegetation Overhang polygon features", "alttitle": "ISC2010_VEGETATION_OVERHANG", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36266\", \"uuid\": \"d371ff80-1e32-59ab-91c9-717bb99acf8c\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Vegetation Overhang polygon features", "abstract": "The ISC2010_VEGETATION_OVERHANG polygon features represent areas of vegetation that partially or wholly overhang the Stream Bed. The data set contains the whole vegetation polygon, not only the overhanging part of the polygon. Candidate vegetation is defined as vegetation cover greater than 20%. Vegetation Overhang has been mapped within a 200m buffer of the ISC2010_STREAMBED_WIDTH feature. This data set is derived from source Fractional Cover raster data. The data set also contains additional polygon divisions created by the introduction of Side and 200m buffer boundaries. Small polygons (<10m2) that were created by the introduction of these boundaries have been removed.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005117", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1bf845c5c000aa230368f4229c663d594732d0f7", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "47352a58-1fd6-5b50-a2ec-9df8afdf8ac9", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - Locality Polygon Aligned to Property", "alttitle": "LOCALITY_POLYGON", "tempextentbegin": "2005-05-14T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:15+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34141\", \"uuid\": \"47352a58-1fd6-5b50-a2ec-9df8afdf8ac9\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - Locality Polygon Aligned to Property", "abstract": "Part of the Vicmap Admin dataset series. This dataset contains the polygons for the authoritative Locality boundary dataset for Victoria.\n\nLocality Boundaries are as defined by Local Governments and registered by the Registrar of Geographic Names (GeoNames). The Vicmap Admin Locality data only contains Bounded Localities (known as LOCB in the GeoNames data). There are also unbounded localities/neighbourhoods (LOCU or NBHD) in the GeoNames data but this is NOT contained within Vicmap Admin Locality.\n\nAligned to Vicmap Property.", "anzlicid": "ANZVI0803003027", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b197d2e2ebe457c287933b3197e21256e26742f2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "6b685211-3217-540e-bf98-dea84e8bf504", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-11", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Spatial Vision Mapbook Index 1:50,000 Edition 6", "alttitle": "MAPBOOK_MAPINDEX_50_ED6", "tempextentbegin": "2018-11-26T13:00:00+00:00", "resowner": "Spatial Vision Pty Ltd", "tempextentend": "2018-11-26T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Biannually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36275\", \"uuid\": \"6b685211-3217-540e-bf98-dea84e8bf504\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-05-20\", \"changeDate\": \"2021-11-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Spatial Vision Mapbook Index 1:50,000 Edition 6", "abstract": "This dataset is derived from the Mapbook directory and contains the map index for the 1:50 000 district maps.", "anzlicid": "ANZVI0803004604", "geonet_info_createdate": "2013-05-20", "revisiondate": "2021-11-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f42cb740353716302228843f28733854398fb0da", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c426d57d-0cd9-5ab0-ac78-82b8427b28a2", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "DRAFT VERSION - Fire Severity Classes (Landsat) for East Victoria Fires 2006-07 - North East Gippsland Complex only", "alttitle": "FIRE_SEV07TM", "tempextentbegin": "2007-02-19T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2007-03-27T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36278\", \"uuid\": \"c426d57d-0cd9-5ab0-ac78-82b8427b28a2\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-07-08\", \"changeDate\": \"2022-02-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "DRAFT VERSION - Fire Severity Classes (Landsat) for East Victoria Fires 2006-07 - North East Gippsland Complex only", "abstract": "The East Victoria Fires 2006-07 were ignited on 1st December 2006 by a series of lightning strikes across eastern Victoria. This layer depicts fire severity, derived from Landsat imagery, across the extent of the fires to provide a reliable strategic management dataset to interpret fire effects.", "anzlicid": "ANZVI0803003343", "geonet_info_createdate": "2015-07-08", "revisiondate": "2022-02-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f4ab9158615220b8b443a96cd495d9bc08f263ca", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "76137660-e350-5958-98c5-c62937c8eeac", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-08-27", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Permian Geological Basement, Goulburn-Murray Area", "alttitle": "GEOL_BSE_PERMIAN", "tempextentbegin": "2023-01-24T00:05:28+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:28+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36317\", \"uuid\": \"76137660-e350-5958-98c5-c62937c8eeac\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-08-27\", \"changeDate\": \"2015-08-27\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Permian Geological Basement, Goulburn-Murray Area", "abstract": "This dataset defines the extent of the Permian glacial sediments in the Goulburn-Murray area. According to Holdgate (1995) \"the Permian sediments extend south coincident with the main river valleys of the Loddon, Campaspe, Goulburn and Ovens and can extend into the highlands. They appear to exert an influence on the location of the early Tertiary Renmark Group, on the deep leads and in themselves are controlled by underlying basement faults\".\n\nThe dataset was compiled by GHD to inform the report 'Potential Influences of Geological Structures on Groundwater Flow Systems' for DEPI's Secure Allocation Future Entitlements (SAFE) Project.", "anzlicid": "ANZVI0803005022", "geonet_info_createdate": "2015-08-27", "revisiondate": "2015-08-27", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7028d78b72ecfa16f4c87c0e8366abf15deeed2f", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7b6505f2-6022-5b0b-84e0-54a274a83fd6", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Hydrography Pipeline Function Table", "alttitle": "HY_PIPELINE_FUNCTION", "tempextentbegin": "2023-01-24T00:05:29+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:29+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36319\", \"uuid\": \"7b6505f2-6022-5b0b-84e0-54a274a83fd6\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Hydrography Pipeline Function Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003187", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e7d4d02e5c78a96ba9030180b988ca5c506a72dc", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "41b4d70e-81a9-57cd-a75e-48474e707af6", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, Non digital - printed map.", "type": "dataset", "title": "Interpreted Lava Flows (1:500,000), Geological Interpretation of Geophysical Features Polygon", "alttitle": "GPLAVAFLW500_POLYGON", "tempextentbegin": "2000-02-29T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2002-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36325\", \"uuid\": \"41b4d70e-81a9-57cd-a75e-48474e707af6\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-29\", \"changeDate\": \"2022-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Interpreted Lava Flows (1:500,000), Geological Interpretation of Geophysical Features Polygon", "abstract": "This dataset contains Lava flows that have been interpreted either from intersections in drill holes or from magnetic responses.\n\nThe dataset is accompanied by other datasets representing geological boundaries, major faults, lesser faults, dykes and the basin edges.\n\n\nReferences:\n\nMOORE, D.H., 2002. Eastern and central Gippsland Basin, southeast Australia: basement interpretation and basin links. Victorian Initiative for Minerals and Petroleum Report 69, Department of Natural Resources and Environment. \n\nMOORE, D.H., 2002. Basement-basin relationships in the Otway Basin, Victoria, Australia. Victorian Initiative for Minerals and Petroleum Report 78, Department of Natural Resources and Environment.\n\nSIMONS B.A., & MOORE, D.H., 1999. Victoria 1:1 000 000 Pre-Permian Geology. Geological Survey of Victoria.", "anzlicid": "ANZVI0803003410", "geonet_info_createdate": "2018-03-29", "revisiondate": "2022-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "09d9e8be7b4d0a3ba4f6177c4b340f29b68b8b21", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8201244f-6d03-5756-8fdf-5674b926354a", "publicationdate": "2019-11-22", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-12-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Victorian Aquifer Framework (VAF) Salinity Distribution - UTAF_TDS", "alttitle": "VAF105_UTAF_TDS", "tempextentbegin": "2012-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2014-04-13T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34193\", \"uuid\": \"8201244f-6d03-5756-8fdf-5674b926354a\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-12-05\", \"changeDate\": \"2019-12-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Aquifer Framework (VAF) Salinity Distribution - UTAF_TDS", "abstract": "This dataset is the Victorian Aquifer Framework (VAF) Salinity Distribution. It refers to the salinity distribution for Aquifer Number of 105 (Upper Tertiary Aquifer (Fluvial)). The salinity distributions reflect the beneficial use segments prescribed in the State Environment Protection Policy (Waters) (2018)\nPlease refer to the master metadata record VAF 'Victorian Aquifer Framework (VAF) Salinity Distribution for detailed information.", "anzlicid": "ANZVI0803008611", "geonet_info_createdate": "2019-12-05", "revisiondate": "2019-12-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9c615cbf362d5023c853cd02856757048865c488", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "15c5adfb-e67f-5aca-ad44-0525411ed0ca", "publicationdate": "2021-08-03", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Elevation - Morphology Point", "alttitle": "EL_MORPHOLOGY_POINT", "tempextentbegin": "1973-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "1994-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;environment;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36329\", \"uuid\": \"15c5adfb-e67f-5aca-ad44-0525411ed0ca\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2019-09-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Elevation - Morphology Point", "abstract": "This layer is part of Vicmap Elevation 10-20 Contours & Relief, a subset of Vicmap Elevation. It contains point features delineating morphology and related features.\nIncludes; Sinkholes & Caves.", "anzlicid": "ANZVI0803002501", "geonet_info_createdate": "2019-09-04", "revisiondate": "2019-09-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9b042c2b7058a85fa9d59e9b5c634a9ef28ab747", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d5659c3f-2f2e-5eee-8ac4-8b5c89ba12a9", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-02-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Geological Phase Areas - Polygons (1:100,000)", "alttitle": "PHASE100_POLYGON", "tempextentbegin": "1995-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36280\", \"uuid\": \"d5659c3f-2f2e-5eee-8ac4-8b5c89ba12a9\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-09\", \"changeDate\": \"2016-02-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological Phase Areas - Polygons (1:100,000)", "abstract": "Geological Phase Areas - Polygons", "anzlicid": "ANZVI0803005574", "geonet_info_createdate": "2016-02-09", "revisiondate": "2016-02-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4aa0b079ea3dd47bdae11939f99c805ae1e4d1b8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "b6722101-8db5-51f0-8a6f-d1e4fe805b73", "publicationdate": "2021-08-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "PTV Metro Train Stations", "alttitle": "PTV_METRO_TRAIN_STATION", "tempextentbegin": "2018-02-28T13:00:00+00:00", "resowner": "Department of Transport", "tempextentend": "2023-01-24T00:05:17+00:00", "maintenanceandupdatefrequency_text": "Quarterly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34148\", \"uuid\": \"b6722101-8db5-51f0-8a6f-d1e4fe805b73\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-02\", \"changeDate\": \"2022-02-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "PTV Metro Train Stations", "abstract": "This layer depicts spatial objects (points) representing Metro Train Stations. Each station has attributes that describe StopID, StopName (station), Lat/Long, Ticket Zone and Routes Using Stop. The data has been generated from the PTV GTFS data with extra attributes from PTV's TransNet database. \nThis dataset supersedes \"PTV_TRAIN_STATION\" (which included both metro and regional stations).\nThis dataset was first loaded into the VSDL in March 2018 and will be updated approximately quarterly.", "anzlicid": "ANZVI0803005858", "geonet_info_createdate": "2018-03-02", "revisiondate": "2022-02-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f3cccdb4b4af617affe7dc8bef207489f7f65eb9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1621d8fc-4afa-5d31-a612-f822c88f4891", "publicationdate": "2022-05-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-09-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Victorian Wetland Inventory (Current)", "alttitle": "WETLAND_CURRENT", "tempextentbegin": "2003-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-05-20T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36287\", \"uuid\": \"1621d8fc-4afa-5d31-a612-f822c88f4891\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-02-06\", \"changeDate\": \"2021-09-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Wetland Inventory (Current)", "abstract": "Polygons showing the extent and types of wetlands in Victoria. WETLAND_CURRENT was created in 2013 and was derived from WETLAND_1994 (the state\u00bfs first wetland geospatial inventory) and several local and regional wetland datasets. A number of updates have occurred to the dataset during 2014, 2017 and 2021. The 2014 update incorporated new regional mapping, some supplementary mapping and repositioning of planimetrically inaccurate wetlands. Supplementary mapping involved identifying and delineating wetlands which had not previously been mapped, but did not modify the extent of existing wetlands. It was undertaken primarily using aerial photograph interpretation (photos from 2007 to 2011) supplemented with existing geospatial datasets that provided context and informed the identification of wetland boundaries (e.g. vegetation mapping, topography). Wetlands were classified (according to the new classification framework) into primary categories based on wetland system type, salinity regime, water regime, water source, dominant vegetation and wetland origin. The 2017 update improved the accuracy of the layer by updating wetland mapping and attributes in the Melbourne area and for alpine bogs and fens in East and West Gippsland catchment regions. It also involved correcting inaccurate classification attributes and correcting wetland polygons for individual wetlands based on new data and feedback from wetland inventory users. The 2021 update incorporates new mapping and refinements to existing wetland polygons for several regional wetland datasets. These include Tootgarook Swamp, Alpine Bogs, Mitchell River Floodplain Wetlands, Melbourne Water Billabongs and Mallee CMA Wetlands. The dataset currently consists of 38,799 polygons totalling 784,120 ha.", "anzlicid": "ANZVI0803004912", "geonet_info_createdate": "2018-02-06", "revisiondate": "2021-09-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f3a978799aac4d5e5d31974e54d200b3a8149ff4", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7a81f102-3c3d-5e81-8ef1-164b48f17f3c", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-06-18", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Lineaments interpreted from Topography", "alttitle": "LINEAMENTS_TOPO", "tempextentbegin": "2008-06-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2008-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34157\", \"uuid\": \"7a81f102-3c3d-5e81-8ef1-164b48f17f3c\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-06-18\", \"changeDate\": \"2013-06-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Lineaments interpreted from Topography", "abstract": "This dataset comprises lineaments interpreted from the State's 100m x 100m resolution Digital Terrain Model (DTM). The interpretation has been completed on a regional or sub-regional scale using geophysical remote sensing techniques and has confirmed that topography is a key structural analysis dataset. This is because it frequently shows strong evidence of the recent reactivation of older fault structures.\n\nThe analysis identified a number of key topography lineament directions across the state:\n\nENE-WSW: the dominant set of long and persistent linear features;\nWNW-ESE: the next most obvious interpreted topographic lineament dataset;\nN-S to NNE-SSW: trends mostly associated with known terrane boundaries.\n\nGenerally, only lineaments which have not been published in existing datasets developed by the former Department of Primary Industries (DPI) have been identified in this study. \n\nThe dataset was compiled by GHD to inform the report 'Potential Influences of Geological Structures on Groundwater Flow Systems' for DEPI's Secure Allocation Future Entitlements (SAFE) Project.", "anzlicid": "ANZVI0803005004", "geonet_info_createdate": "2013-06-18", "revisiondate": "2013-06-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f98724a67560c72467d4cb6eb1711548b787b3f2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5280baec-416e-53b9-ac29-54d32d625cf0", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-07-03", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Lite - State Polygon 1:2,000,000 to 1:5,000,000", "alttitle": "VMLITE_VICTORIA_POLYGON_SU2", "tempextentbegin": "2006-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-04-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36298\", \"uuid\": \"5280baec-416e-53b9-ac29-54d32d625cf0\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-07-03\", \"changeDate\": \"2020-07-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Lite - State Polygon 1:2,000,000 to 1:5,000,000", "abstract": "This layer is part of Vicmap Lite and contains polygons representing the mainland, islands and the sea. This Vicmap Lite dataset is suited for use between scales of 1: 2 million and 1 : 5 million. The level of attribute information, the number of features and the number of vertices has been simplified to suit the 1: 2 million - 1 : 5 million scale range. The concept of a Scale Use Code has been introduced to help control the level of detail displayed.\n\nTHIS DATASET WAS LAST UPDATED IN MAY 2014", "anzlicid": "ANZVI0803003514", "geonet_info_createdate": "2020-07-03", "revisiondate": "2020-07-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9888ff3d866ba53c17190a4445ea75899bab0b13", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0753b87f-0896-5eab-a3c7-afc0e9b9f882", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-11-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL All major formats available on request", "type": "dataset", "title": "Mallacoota Inlet Depth Contours at 1:10,000", "alttitle": "BATHYMETRY_MALLACOOTA_ARC", "tempextentbegin": "1981-07-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2000-03-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34167\", \"uuid\": \"0753b87f-0896-5eab-a3c7-afc0e9b9f882\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-11-13\", \"changeDate\": \"2014-11-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Mallacoota Inlet Depth Contours at 1:10,000", "abstract": "This layer contains line features which represent depth contours (bathymetry) in Mallacoota Inlet.", "anzlicid": "ANZVI0803004021", "geonet_info_createdate": "2014-11-13", "revisiondate": "2014-11-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b172f333b810334344c7d889d41d3e31887e134f", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a6baeafa-0d39-55e2-81e0-4dfda58acb12", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Road Class Table", "alttitle": "TR_ROAD_CLASS", "tempextentbegin": "2023-01-24T00:05:25+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:25+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34173\", \"uuid\": \"a6baeafa-0d39-55e2-81e0-4dfda58acb12\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Road Class Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003171", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d1f7fe9e18230a0da4bff0b994e9defff1afb21b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "01479b8f-5d52-5697-a01d-37ab56efa6d9", "publicationdate": "2022-11-11", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Victorian Biodiversity Atlas flora - 10 minute grid summary", "alttitle": "VBA_FLORA_GRID_10M", "tempextentbegin": "1749-12-31T14:20:08+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:27+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36313\", \"uuid\": \"01479b8f-5d52-5697-a01d-37ab56efa6d9\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-07-22\", \"changeDate\": \"2021-08-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Biodiversity Atlas flora - 10 minute grid summary", "abstract": "This layer summarises VBA flora records against a standard grid of 10 degrees longitude/latitude (GDA94). Any VBA taxa record with its centre in a cell is counted as a record for that cell. The number of times a taxon has been recorded in a cell is collated in the RECORDS column. The first date and last date that a taxon has been recorded in a cell are also summarised. VBA data summarised against 5 and 1 minute grids are also available in related datasets. VBA records with a spatial accuracy worse than +/- 9 km are excluded from this layer.", "anzlicid": "ANZVI0803005204", "geonet_info_createdate": "2016-07-22", "revisiondate": "2021-08-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9a2a98851c8ad3c05dbc79c8323fcb907d3541bd", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9c8032e2-0419-5ec3-a76d-d86f957aaf69", "publicationdate": "2022-11-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-02-22", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Catchment Management Authority boundaries", "alttitle": "CMA100", "tempextentbegin": "1997-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2003-09-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34219\", \"uuid\": \"9c8032e2-0419-5ec3-a76d-d86f957aaf69\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-02-22\", \"changeDate\": \"2019-02-22\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Catchment Management Authority boundaries", "abstract": "This layer represents the Catchment Management Authority boundaries (derived from CALP100). It is indicative and should not be used for operational decisions about funding.\nThe Catchment Management Authorities (CMAs) were established on 1 July 1997 with the aim of creating a whole of catchment approach to natural resource management in the state. The new CMAs combined the roles of the former, River Management Boards and Catchment and Land Protection Boards, and community based advisory groups such as salinity plan implementation groups and water quality working groups. Port Phillip has also recently become a CMA. 2014 correction on the West Gippsland and East Gippsland CMA border around the Gippsland Lakes.\nIt is accurate to +/- 100 metres for 80% of the time.", "anzlicid": "ANZVI0803002317", "geonet_info_createdate": "2019-02-22", "revisiondate": "2019-02-22", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "dd08dec720262181109b588483eebdcf15368826", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3d7e5f97-386c-5c5f-b840-a1c735b35413", "publicationdate": "2018-01-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "East Gippsland Marine Habitats November 2009", "alttitle": "EAST_GIPPS_MARINE_HAB_2009", "tempextentbegin": "2003-12-13T13:00:00+00:00", "resowner": "Department of Transport", "tempextentend": "2008-07-15T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36355\", \"uuid\": \"3d7e5f97-386c-5c5f-b840-a1c735b35413\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-04-04\", \"changeDate\": \"2021-11-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "East Gippsland Marine Habitats November 2009", "abstract": "This polygon layer represents marine habitat in the East Gippsland region mapped from satellite imagery and aerial photography with underwater video ground-truthing. The mapping was funded by Natural Heritage Trust to increase the capacity of natural resource managers to make informed decisions regarding asset identification, risk assessment, and management action targets for nearshore marine habitats in the region.", "anzlicid": "ANZVI0803003974", "geonet_info_createdate": "2019-04-04", "revisiondate": "2021-11-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ed3540763e0ecf02e28ad732cd0b158d24b29ef6", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "4d33e1c5-efd0-5fed-ad39-372be4e6db13", "publicationdate": "2022-08-30", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-26", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "type": "dataset", "title": "Plot location for all current Permanent Growth Plots (PGPs) managed by VicForests.", "alttitle": "PGPVF", "tempextentbegin": "2013-06-30T14:00:00+00:00", "resowner": "VicForests", "tempextentend": "2022-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34220\", \"uuid\": \"4d33e1c5-efd0-5fed-ad39-372be4e6db13\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-05-04\", \"changeDate\": \"2022-08-26\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Plot location for all current Permanent Growth Plots (PGPs) managed by VicForests.", "abstract": "Point data describing the location and key characteristics of all PGPs that are currently under active management by VicForests.\nThe data consists of one point for each PGP that is classified as 'current' in VicForests' network of PGPs. PGPs that have been retired or abandoned are not included in the dataset.\nPGPs are permanently demarcated areas of forest that are periodically measured over long periods of time (20-50 years) and they require protection from unplanned distrubance events such fuel reduction burns.", "anzlicid": "ANZVI0803005347", "geonet_info_createdate": "2017-05-04", "revisiondate": "2022-08-26", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8ff134eef41de97863f1f28effecb8fa4541a48c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1b74209b-f279-5d90-9e37-f0d40a42e84e", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-05-30", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcGIS shapefile", "type": "dataset", "title": "Land units of the Corangamite region of Victoria", "alttitle": "CORANGAMITE_LRA", "tempextentbegin": "2002-06-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2003-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36358\", \"uuid\": \"1b74209b-f279-5d90-9e37-f0d40a42e84e\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-30\", \"changeDate\": \"2019-05-30\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Land units of the Corangamite region of Victoria", "abstract": "This dataset is the primary data output from the Corangamite land resource assessment project undertaken in 2002-2003. It contains soil and land information at a scale of 1:100 000 for all land in the region. The study also includes land degradation assessments for each unit.\n\nAt the map scale of this dataset soil-landform units are not homogeneous. For each defined soil-landform unit, the number and proportion of landforms and soil types will vary. A group or groups of soils have been associated with each unit. representative sites and their associated profile properties are recorded in the study report.\n\nImportantly it should be noted that soil attributes (for example texture, sodicity, pH) are expected to vary between acquired soil sites. As the variability of soil attributes within a map unit is difficult to predict, it is important to note that representative soils should be used as a guide only.\n\nThe study report describing the project methodology and dataset attributes, including representative soil profile data, is available from the Victorian Resources Online website (http://vro.depi.vic.gov.au/dpi/vro/coranregn.nsf/pages/soil_landform_map).\n\nDOI 10.4226/92/58e7149507e74", "anzlicid": "ANZVI0803005182", "geonet_info_createdate": "2019-05-30", "revisiondate": "2019-05-30", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2b3634b92cda6e85a038c7a9d8c1aaf02dd15c0e", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3a057b39-7958-57be-8bb9-1b5d1595c844", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Hydrogaphy Water Use Function Table", "alttitle": "HY_WATER_USE_FUNCTION", "tempextentbegin": "2023-01-24T00:05:41+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:41+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34224\", \"uuid\": \"3a057b39-7958-57be-8bb9-1b5d1595c844\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Hydrogaphy Water Use Function Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003195", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6359ed0c3077c8cfd6b1268cebf445ff1dcd41cf", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "21f3f0a9-9c56-50d2-9b16-3147bc8c9fba", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Port Fairy Rocky Cliff Coastal Erosion Hazard", "alttitle": "PF_COAST_HAZARD_ROCKY_CLIFF", "tempextentbegin": "2012-04-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2013-04-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;climatology, meteorology, atmosphere;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36381\", \"uuid\": \"21f3f0a9-9c56-50d2-9b16-3147bc8c9fba\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-07-12\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Port Fairy Rocky Cliff Coastal Erosion Hazard", "abstract": "The Port Fairy Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Port Fairy coastal environment.\n\nThis data identifies areas which feature rocky cliffs in the coastal zone requiring further specific geotechnical investigation.\n\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.", "anzlicid": "ANZVI0803005642", "geonet_info_createdate": "2016-07-12", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "75e28f77b9d99fbf8b1ac4d3dee3f65ca5ab258d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1bb47241-d1c8-5320-9928-1386e5898b3e", "publicationdate": "2023-01-23", "publishedforgroup": "12264;0", "geonet_info_changedate": "2022-09-15", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Limited Distribution", "format": "ESRI Shape", "type": "dataset", "title": "CCS Tender Areas", "alttitle": "CCSPRO", "tempextentbegin": "2009-09-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:05:50+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34251\", \"uuid\": \"1bb47241-d1c8-5320-9928-1386e5898b3e\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-19\", \"changeDate\": \"2022-09-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "CCS Tender Areas", "abstract": "Geological Carbon Storage Exploration Tender Areas\n\nOnshore and Offshore areas that have been offered for work program bidding under the following Acts: \n\nOffshore Commonwealth waters - Offshore Petroleum and Greenhouse Gas Storage Act 2006\n\nOnshore Victoria - Greenhouse Gas Geological Sequestration Act 2008", "anzlicid": "ANZVI0803003708", "geonet_info_createdate": "2013-09-19", "revisiondate": "2022-09-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7801b5f6dd9dbefbc375d80d006c358fec5dceea", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c66d2a77-7333-5770-a2ff-03c5323417aa", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Exploration Graticules with 1 km intervals - AGD66 - Expires 30th June 2005", "alttitle": "GRAT1KM", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "1999-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36391\", \"uuid\": \"c66d2a77-7333-5770-a2ff-03c5323417aa\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-17\", \"changeDate\": \"2013-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Exploration Graticules with 1 km intervals - AGD66 - Expires 30th June 2005", "abstract": "Exploration Graticules are used as the main boundaries for Exploration Licences since 1973\n- AGD66 - Expires 30th June 2005", "anzlicid": "ANZVI0803002371", "geonet_info_createdate": "2013-09-17", "revisiondate": "2013-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4263f1475d6da8855eab8d71643d717f19821256", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9f36fc1c-5145-5d47-b2d3-0595ab0cd9f1", "publicationdate": "2019-04-16", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-09-23", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI Shape", "type": "dataset", "title": "Seismic Survey Lines - for Petroleum Industry Exploration", "alttitle": "SEISMIC_ARC", "tempextentbegin": "1948-12-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2004-10-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36369\", \"uuid\": \"9f36fc1c-5145-5d47-b2d3-0595ab0cd9f1\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-23\", \"changeDate\": \"2013-09-23\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Seismic Survey Lines - for Petroleum Industry Exploration", "abstract": "Seismic Survey Lines - for Petroleum Industry Exploration", "anzlicid": "ANZVI0803002766", "geonet_info_createdate": "2013-09-23", "revisiondate": "2013-09-23", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0128904a51215a1410372ba5b1feabc914c6ef7e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "1d12aef0-cd35-5cbc-833e-4fbbe90f602c", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcInfo, ArcView & MapInfo", "type": "dataset", "title": "Minerals and Petroleum 1:250,000 AMG Map Index", "alttitle": "GINDEX250", "tempextentbegin": "2003-03-27T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2003-03-27T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36372\", \"uuid\": \"1d12aef0-cd35-5cbc-833e-4fbbe90f602c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Minerals and Petroleum 1:250,000 AMG Map Index", "abstract": "Minerals and Petroleum 1:250,000 AMG Map Index. Derived from l250g index - with reduced polygons", "anzlicid": "ANZVI0803002680", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c2742199199a43d55f52292d7a9d739e6cb0436b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9d9c50db-a1a9-505c-b0a3-8815e0c5da66", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:15,000 Edition 47", "alttitle": "MELWAY_MAPINDEX_15_ED47", "tempextentbegin": "2019-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2019-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34236\", \"uuid\": \"9d9c50db-a1a9-505c-b0a3-8815e0c5da66\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-10-04\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:15,000 Edition 47", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:15 000 Queenscliffe maps.", "anzlicid": "ANZVI0803004592", "geonet_info_createdate": "2018-10-04", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "65ff88ed1b34ec71846ebdbb1af452a2bff2e88c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "411d8214-d506-5e2f-bc0b-c93137cc46c8", "publicationdate": "2020-02-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-04-07", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "type": "dataset", "title": "Historical Business Listings from Sands & McDougall directories", "alttitle": "SANDS_MCDOUGALL_PUBLIC", "tempextentbegin": "1895-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "1974-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36377\", \"uuid\": \"411d8214-d506-5e2f-bc0b-c93137cc46c8\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-08-08\", \"changeDate\": \"2021-04-07\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Historical Business Listings from Sands & McDougall directories", "abstract": "The Sands & McDougall dataset is for use on the Victoria Unearthed website and is available for download.\n\nThis dataset contains the business listings from selected years of the Sands & McDougall directories, a pre-cursor to the Yellow Pages. \n\nThe dataset was created by digitising the business directories that were published at approximately 10 year intervals between 1896 and 1974. The extracted information includes the business name, address and business type as listed in the Sands & McDougall directories. The extracted address information was subsequently geocoded to provide a point location that can be mapped using GIS software.\n\nAdditional information has been provided to allow the accuracy of the results to be evaluated with each record containing the data used at each stage of the data capture process; from the extraction from the directory to the final QA checks.", "anzlicid": "ANZVI0803005905", "geonet_info_createdate": "2019-08-08", "revisiondate": "2021-04-07", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "846ab3f41049d5a52c1fc81ca1e8b1bcb12290b0", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "088a053c-6402-5584-ae18-a76d8176049e", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Bare Ground Reach Summary Table", "alttitle": "ISC2010_BARE_GROUND_R", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36330\", \"uuid\": \"088a053c-6402-5584-ae18-a76d8176049e\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Bare Ground Reach Summary Table", "abstract": "The ISC2010_BARE_GROUIND_R table is the Statistical Summary table for the Bare Ground Metric at the Reach level.\n\nThe ISC2010_BARE_GROUND_R table is designed to JOIN to the ISC2010_RIVER_CENTRELINES_R feature class.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005128", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "aa21e3a6e1d2c608bc110d96534c2403c87af3ee", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d433599e-e517-5b5b-a75b-45bb95ad1b85", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-05-20", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Structural Vegetation (1995)", "alttitle": "SVEG100", "tempextentbegin": "1993-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2000-02-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Unknown", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34339\", \"uuid\": \"d433599e-e517-5b5b-a75b-45bb95ad1b85\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-08\", \"changeDate\": \"2021-05-20\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Structural Vegetation (1995)", "abstract": "Structural vegetation mapping of forest in Victoria based on the Land Conservation Council (LCC) vegetation classification scheme.\nThe layer is independent of land tenure and is a combination of existing data from multiple sources (predominantly LCC) and primary mapping based on satellite image interpretation.\nUsing histoirc 1:63,360 forest maps as a source.", "anzlicid": "ANZVI0803002171", "geonet_info_createdate": "2017-03-08", "revisiondate": "2021-05-20", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f72a8a6e28a4ccea3dd8aac5f7ea59426d8b263a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "bd4147bb-e07c-5d7b-8894-debdd6a54251", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats available: \u00b7 MapInfo \u00b7 ESRI 'SHAPE' files \u00b7 DXF File \u00b7 Intergraph.DGN \u00b7 DWG (AutoCAD)", "type": "product", "title": "Planning scheme ordinance links - Vicmap Planning", "alttitle": "VMPLAN_PLAN_ORDINANCE", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:18+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36477\", \"uuid\": \"bd4147bb-e07c-5d7b-8894-debdd6a54251\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-07-26\", \"changeDate\": \"2022-07-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Planning scheme ordinance links - Vicmap Planning", "abstract": "Product version containing the following 2 datasets:- For detailed metadata, see individual records.\nVMPLAN_PLAN_ORDINANCE_LPP_URL (ANZVI0803005951)\nVMPLAN_PLAN_ORDINANCE_VPP_URL (ANZVI0803005954) \n\nNote: The VPP table was updated 14/7/2022 to accommodate changes to the the new format Planning Scheme webpages.The field LGA_CODE was added and a unique url for each zone and overlay for every scheme now exists. Hence, the number of records n the table has significantly increased.", "anzlicid": "ANZVI0803005955", "geonet_info_createdate": "2019-07-26", "revisiondate": "2022-07-14", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ae09794dbb5110e5fd3c61a4e1896303ad3d32ee", "fields": {"available_formats": "ECW,GeoTIFF,JPEG,JPEG 2000,TIFF", "resclassification": "unclassified", "uuid": "c034d98c-eb78-5a7b-b04d-03cf044f9f9a", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Not Known", "type": "dataset", "title": "Victorian Land Cover Mapping 2015", "alttitle": "LANDCOVER_2015", "tempextentbegin": "2014-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2015-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34343\", \"uuid\": \"c034d98c-eb78-5a7b-b04d-03cf044f9f9a\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-20\", \"changeDate\": \"2021-07-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Land Cover Mapping 2015", "abstract": "Land cover mapping data is an annual component of the Victorian Land Use Information System, the VLUIS. The land cover information has been created specifically for the VLUIS using time series analysis of the MOD13Q1 or MYD13Q1 products produced by NASA using data collected by the MODIS sensor and freely available on the Reverb | ECHO website.\nGround data is collected annually across Victoria using a stratified random sampling approach for calibration of the annual seasonal curves and validation of the classification output. The ground data is split into three groups with 50% used to develop classification rules, 25% used to produce interim validation results that feed back into the rule development process with the remaining 25% used to independently validate the final classification. Error matrices for each land cover dataset from 2009 have been produced from this final validation.\n\nThe TIMESAT GUI is used to create smoothed annual time series for the Normalised Difference Vegetation Index (NDVI), Enhanced Vegetation Index (EVI) and the Red and Near Infrared (NIR) MOD13Q1 or MYD13Q1 bands using the Savitsky-Golay algorithm. A time series of 23 images was used and a suite of 11 seasonal parameters created that each numerically describe features of the annual seasonal curves for each band. In addition the standard deviation of the annual seasonal curve is calculated for each band and used in conjunction with the seasonal parameters.\nA three-tiered hierarchical classification was developed to assign a dominant land cover class to each pixel. Initially, rules developed using the data mining tool See5 and / or expert knowledge were applied to the seasonal parameters and the annual standard deviation in conjunction with a GIS data-set of water bodies greater than 12.5ha in area to classify each pixel as either Tree, Non-tree or Water based on two data sets from the corporate spatial data library, HY_WATER_AREA_POLY.shp and VM_LITE_HY_WATER_AREA.shp; and are combined to form the water bodies layer. In addition, the primary classes are cross checked using data from preceding and following years to reduce misclassification prior to the secondary classification.\nA secondary classification developed using rules based on expert knowledge and / or See5 is applied to split the primary class Tree into the secondary classes Native Woody Cover and Treed Production and the primary class Non-tree into the secondary classes Pasture/ Grassland and Crops.\n\nFinally, a tertiary classification further divides the secondary class Treed Production into the tertiary classes Hardwood Plantation, Softwood Plantation and evergreen or deciduous Woody Horticulture and the secondary class Crops into the tertiary classes Brassicas, Legumes, Cereals and Non-Woody Horticulture based on rules developed using the data mining tool See5 and modified where appropriate by expert knowledge.\nAdditional information on land cover mapping, including map symbology, can be found on Victorian Resources Online.\n\nDOI 10.4226/92/58e732125d9d0", "anzlicid": "ANZVI0803005645", "geonet_info_createdate": "2019-05-20", "revisiondate": "2021-07-14", "spatialrepresentationtype_text": "Grid"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "af3d2b8b01b369c1cd4cac6b515cf903fe78f603", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "56f4f2e2-0063-5f76-b4c9-e95e932cdb4b", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Planned Burns 2014/15 - 2016/17", "alttitle": "BURNPLAN15", "tempextentbegin": "2014-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2015-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34344\", \"uuid\": \"56f4f2e2-0063-5f76-b4c9-e95e932cdb4b\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-08\", \"changeDate\": \"2017-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Planned Burns 2014/15 - 2016/17", "abstract": "Last updated: October 2014\n\nThis dataset represents the spatial extent of prescribed burns planned for ignition and associated mechanical and vegetation works on Public Land in Victoria. This data is prepared annually for prescribed burns planned for the immediate three-year period.", "anzlicid": "ANZVI0803005318", "geonet_info_createdate": "2017-03-08", "revisiondate": "2017-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ae65af7f6175a3df39cd522c336b9feead264b21", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "77e839ac-425e-5b9e-a9f8-1c032406eda8", "publicationdate": "2018-12-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-06-18", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Aquifer Salinity - Shallow", "alttitle": "AQUIFER_SAL_SHALLOW", "tempextentbegin": "2023-01-24T00:06:20+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:20+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36485\", \"uuid\": \"77e839ac-425e-5b9e-a9f8-1c032406eda8\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-06-18\", \"changeDate\": \"2013-06-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Aquifer Salinity - Shallow", "abstract": "This dataset contains groundwater salinity information for boreholes which were less than 20m in depth and had terminated at least 30m above bedrock. The bores have been extracted predominantly from the Groundwater Management System (GMS) and the State Observation Bore Network (SOBN). \nIt should be noted that the analysis undertaken with the salinity data was only of a preliminary nature and should be treated with a critical approach. Local validation of the data (e.g. screen depths) needs to be undertaken in detail.\n \nThe dataset was compiled by GHD to inform the report 'Potential Influences of Geological Structures on Groundwater Flow Systems' for DEPI's Secure Allocation Future Entitlements (SAFE) Project.", "anzlicid": "ANZVI0803005003", "geonet_info_createdate": "2013-06-18", "revisiondate": "2013-06-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d3b9123450fd1d6aabea9abcfbdf4ff6b6e26fe9", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "5e1c4933-0ab6-5172-8a31-1be412a45ee9", "publicationdate": "2019-02-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-21", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "DIGITAL", "type": "nonGeographicDataset", "title": "RWC contact details", "alttitle": "RWC_CONTACT_DETAILS", "tempextentbegin": "2015-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36439\", \"uuid\": \"5e1c4933-0ab6-5172-8a31-1be412a45ee9\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2022-10-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "RWC contact details", "abstract": "This table is used by the Groundwater Resource Reporting Tool to display the contact details of Rural Water Corporations in the report.\n\nEach row in the table relates to a groundwater catchment and the relavent corporation who manages the catchment area.", "anzlicid": "ANZVI0803008421", "geonet_info_createdate": "2019-11-19", "revisiondate": "2022-10-21", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b5a298d51fdbc7cc12961f6b9f5411a3f1c204d2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3a6e97a2-7f95-532f-b618-e4e10a078d83", "publicationdate": "2019-11-22", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-12-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Victorian Aquifer Framework (VAF) Salinity Distribution - LTB1_TDS", "alttitle": "VAF112_LTB1_TDS", "tempextentbegin": "2012-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2014-04-13T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36442\", \"uuid\": \"3a6e97a2-7f95-532f-b618-e4e10a078d83\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-12-05\", \"changeDate\": \"2019-12-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Aquifer Framework (VAF) Salinity Distribution - LTB1_TDS", "abstract": "This dataset is the Victorian Aquifer Framework (VAF) Salinity Distribution. It refers to the salinity distribution for Aquifer Number of 112 (Lower Tertiary Basalts). The salinity distributions reflect the beneficial use segments prescribed in the State Environment Protection Policy (Waters) (2018)\nPlease refer to the master metadata record VAF 'Victorian Aquifer Framework (VAF) Salinity Distribution for detailed information.", "anzlicid": "ANZVI0803008615", "geonet_info_createdate": "2019-12-05", "revisiondate": "2019-12-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bfacf0e537feb8aaffd15bfe0710f5e1bc0c1a49", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f028ec41-2edf-58f8-bddf-22aac9b8231f", "publicationdate": "2023-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo, ArcView.", "type": "dataset", "title": "Relinquished Mineral Exploration Licence Areas", "alttitle": "ELRELIN", "tempextentbegin": "1964-12-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:05:53+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36398\", \"uuid\": \"f028ec41-2edf-58f8-bddf-22aac9b8231f\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-19\", \"changeDate\": \"2021-07-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Relinquished Mineral Exploration Licence Areas", "abstract": "The areas occur usually when part of an Exploration Licence is relinquished and the entire tenement has not expired.", "anzlicid": "ANZVI0803004622", "geonet_info_createdate": "2013-09-19", "revisiondate": "2021-07-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "35da31186e538c1325d602ae9fe389db654ab059", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "4b490b93-88a7-5fd1-8947-f9d7c691ff0f", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-12-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "nonGeographicDataset", "title": "Flood data note code reference table at 2014", "alttitle": "NOTE_CODE", "tempextentbegin": "1899-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-08-17T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;environment;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36407\", \"uuid\": \"4b490b93-88a7-5fd1-8947-f9d7c691ff0f\", \"schema\": \"iso19115-3\", \"createDate\": \"2011-07-04\", \"changeDate\": \"2022-12-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Flood data note code reference table at 2014", "abstract": "This table decodes the random integer IDs found in the NOTE_CODE field of many flood schema datasets.\nIts purpose is to condense lengthy comments regarding flood data collection notes, into a 6 digit numeric value to store against spatial features in the respective attribute tables.\n\nThere may be many to one relationships between features and note codes. Note codes are not a mandatory field and many features have a null note code.\n\nNote codes are stored against all features in flood layers and these can be expanded to detailed comments about the accuracy, reliability or interdependancies of the data.", "anzlicid": "ANZVI0803004344", "geonet_info_createdate": "2011-07-04", "revisiondate": "2022-12-09", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9c27b89744b7dfb2e7466e1f0f8ed97ee915da2c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e4f7a09b-0cdc-56cb-ac27-2b83b3bb2b0e", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-02-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Hydro - Water Structure Line", "alttitle": "HY_WATER_STRUCT_LINE", "tempextentbegin": "1973-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "1994-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;environment;inland waters;farming;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34272\", \"uuid\": \"e4f7a09b-0cdc-56cb-ac27-2b83b3bb2b0e\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-21\", \"changeDate\": \"2020-02-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Hydro - Water Structure Line", "abstract": "This layer is part of Vicmap Hydro and contains lines delineating structural features relating to hydrography.\nIncludes; Wharfs, Marinas, Offshore Platforms, Breakwates, Launching Ramps, Dam Walls, Spill Ways, Locks & Pipelines.", "anzlicid": "ANZVI0803002496", "geonet_info_createdate": "2020-02-21", "revisiondate": "2020-02-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a00693f36168221a58878c3248e7a40adf886887", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "aecf5e44-a5fa-5f03-b96b-e4aae0950556", "publicationdate": "2018-08-06", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-07-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Car Parking / PPTN Area", "alttitle": "PPTN_400M_UNION", "tempextentbegin": "2018-08-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:13+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34322\", \"uuid\": \"aecf5e44-a5fa-5f03-b96b-e4aae0950556\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-07-17\", \"changeDate\": \"2019-07-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Car Parking / PPTN Area", "abstract": "Area that is impacted by the reduced car parking requirements for uses in commercial areas and for land within walking distance of high-quality public transport.\n\nFor land within 400m of public transport (as shown on the new Principal Public Transport Network Area Maps, the reduced carparking rates specified in Column B of Table 1 in Clause 52.06 will apply. These rates will apply to the whole of a site, even if it is only part of the site which is within the PPTN Area", "anzlicid": "ANZVI0803005907", "geonet_info_createdate": "2019-07-17", "revisiondate": "2019-07-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a9168141310708ac9ec9e24667ae440eb7fb9bc7", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0b20b187-71ab-5236-9176-5e471ceae6bb", "publicationdate": "2022-11-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-10-11", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL. As per data.vic, spatial datamart and fme.", "type": "dataset", "title": "Geological Deep Leads Polygons (1:100,000)", "alttitle": "DEEPLD100_POLYGON", "tempextentbegin": "1995-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2023-01-24T00:06:14+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36463\", \"uuid\": \"0b20b187-71ab-5236-9176-5e471ceae6bb\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-10-11\", \"changeDate\": \"2019-10-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological Deep Leads Polygons (1:100,000)", "abstract": "The data displays areas of geological deep leads\n\nThe data have been collected by the Geological Survey of Victoria. The dataset is accompanied by other datasets representing geology outcrop and boundaries, structural lines, miscellaneous lines and points, miscellaneous polygons, and placer deposits.", "anzlicid": "ANZVI0803003367", "geonet_info_createdate": "2019-10-11", "revisiondate": "2019-10-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a90f235f5540aaa9b459c5ac25bf89217e20415a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "78afcae2-d505-5c40-a8f4-83c5f4842646", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-11-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, MapInfo Non digital - printed map.", "type": "dataset", "title": "Geological Lines (1:1,000,000)", "alttitle": "GEOL1M_ARC", "tempextentbegin": "1999-07-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2003-10-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36465\", \"uuid\": \"78afcae2-d505-5c40-a8f4-83c5f4842646\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-29\", \"changeDate\": \"2019-11-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological Lines (1:1,000,000)", "abstract": "This dataset contains primary geological data, namely boundary types separating rock units. The linear features in this dataset are only comprised of geological boundaries and faults.\n\nThe data have been collected by the Geological Survey of Victoria. The dataset is accompanied by another dataset representing structural lines.", "anzlicid": "ANZVI0803003377", "geonet_info_createdate": "2019-11-29", "revisiondate": "2019-11-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "374009223aff556b3d35391c4fbec420552febf5", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "329b4124-9b3c-55ab-ac34-d58482bc8b06", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Fire Severity Classes for April fire 2005 Wilson's Promontory.", "alttitle": "FIRE_SEV05", "tempextentbegin": "2005-03-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2005-08-24T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;imagery base maps earth cover;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36469\", \"uuid\": \"329b4124-9b3c-55ab-ac34-d58482bc8b06\", \"schema\": \"iso19115-3\", \"createDate\": \"2010-01-27\", \"changeDate\": \"2022-02-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Fire Severity Classes for April fire 2005 Wilson's Promontory.", "abstract": "This map is derived from a screen based interpretation and mapping of aerial imagery into fire severity \nclasses aerial photography. The classes represent levels of fire burn and scorch activity in the eucalypt and non-eucalypt forest, understorey and treeless areas. The classification was validated using field check sites. An accuracy assessment has not been carried out.", "anzlicid": "ANZVI0803003335", "geonet_info_createdate": "2010-01-27", "revisiondate": "2022-02-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4bd65d0cc315255233d7cd6781b9a3323d4916a2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1715e2ef-5bb6-52a6-801b-2f30fb277830", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Exploration Graticules with 10 km intervals - AGD66 - Expires 30th June 2005", "alttitle": "GRAT10KM", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "1999-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36470\", \"uuid\": \"1715e2ef-5bb6-52a6-801b-2f30fb277830\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-17\", \"changeDate\": \"2013-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Exploration Graticules with 10 km intervals - AGD66 - Expires 30th June 2005", "abstract": "Exploration Graticules are used as the main boundaries for Exploration Licences since 1973\n- AGD66 - Expires 30th June 2005", "anzlicid": "ANZVI0803002370", "geonet_info_createdate": "2013-09-17", "revisiondate": "2013-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5b7277fb54d27e48548cf2248168094e3ffc3598", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8d2d9567-af0f-595e-92bd-465bcf55ed34", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Road Divided Road Table", "alttitle": "TR_DIVIDED_ROAD", "tempextentbegin": "2023-01-24T00:06:27+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:27+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34367\", \"uuid\": \"8d2d9567-af0f-595e-92bd-465bcf55ed34\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Road Divided Road Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003543", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5d3ae462817741fce20809499906626bca8f3650", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ffb4ff2b-7c99-5d51-9265-7ed4588b4185", "publicationdate": "2018-10-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-11-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "2016 Bellarine Peninsula 1% AEP Coastal Inundation Static Model with 0.2m Sea Level Rise", "alttitle": "BP_STATIC_1AEP_020SLR", "tempextentbegin": "2014-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;climatology, meteorology, atmosphere;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34273\", \"uuid\": \"ffb4ff2b-7c99-5d51-9265-7ed4588b4185\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-10-03\", \"changeDate\": \"2022-11-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2016 Bellarine Peninsula 1% AEP Coastal Inundation Static Model with 0.2m Sea Level Rise", "abstract": "The Bellarine-Corio Bay Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Bellarine-Corio Bay coastal environment.\n\nStatic (bathtub) inundation modelling was carried out to create this data layer for 1% Annual Exceedance Probability (AEP) coastal inundation under the assumption of 0.2m Sea Level Rise in 2016, for the following study areas along the coast of the Bellarine Peninsula and Greater Geelong area: Avalon; Breamlea; Connewarre Lake; Geelong Waterfront; Indented Head; Limeburners Lagoon; Newcomb; North Geelong; Portarlington; Queenscliff; Salt Lake; Sands Caravan Park; St Leonards; and Swan Bay.\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.\nUnits are in mAHD", "anzlicid": "ANZVI0803005915", "geonet_info_createdate": "2018-10-03", "revisiondate": "2022-11-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5bd0193d88f657760d3efcdbc6c3f8bcdc320ef3", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7258931e-3703-5d52-9401-5591a1048872", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-08-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Not Known", "type": "dataset", "title": "Victorian Water Asset Database (VWAD) - POLYLINE_LAYER", "alttitle": "VWAD_PL", "tempextentbegin": "2013-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-05-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36411\", \"uuid\": \"7258931e-3703-5d52-9401-5591a1048872\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-08-05\", \"changeDate\": \"2015-08-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Water Asset Database (VWAD) - POLYLINE_LAYER", "abstract": "Victorian Water Asset Database (VWAD), contains the identification of water assets and their attributes for the state of Victoria. The VWAD includes features such as lakes, rivers, creeks, wetlands, water storages, estuaries, groundwater aquifers, springs, large marine intertidal zones,\nbut does not include specific irrigation and water supply infrastructure such as irrigation channels, bores and irrigation distribution networks.", "anzlicid": "ANZVI0803005335", "geonet_info_createdate": "2015-08-05", "revisiondate": "2015-08-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "66f6682c99e192c43de65e67f86f34c5bd41752c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3a20e0fd-7586-585c-a387-788f452c3c6e", "publicationdate": "2022-11-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-02-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Transport - Airport Infrastucture Point", "alttitle": "TR_AIR_INFRA_POINT", "tempextentbegin": "1973-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:58+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36414\", \"uuid\": \"3a20e0fd-7586-585c-a387-788f452c3c6e\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-21\", \"changeDate\": \"2020-02-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Transport - Airport Infrastucture Point", "abstract": "This layer is part of Vicmap Transport and exists is a dataset containing point features delineating Helipads.", "anzlicid": "ANZVI0803002612", "geonet_info_createdate": "2020-02-21", "revisiondate": "2020-02-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c589554ef266d71af456205e3fe8c6e2ac12f117", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ad412542-d72d-54f5-8ee3-1eb0635e9333", "publicationdate": "2018-02-02", "publishedforgroup": "12264;0", "geonet_info_changedate": "2017-03-07", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "type": "dataset", "title": "5 minute increments of the GDA94 latitude/longitude graticule", "alttitle": "GRID_5M", "tempextentbegin": "2011-10-25T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:59+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36417\", \"uuid\": \"ad412542-d72d-54f5-8ee3-1eb0635e9333\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-07\", \"changeDate\": \"2017-03-07\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "5 minute increments of the GDA94 latitude/longitude graticule", "abstract": "This dataset is a simple polygon layer of rectangular cells aligned to 5 minute increments of the GDA94 latitude/longitude graticule. It is designed for use as an indexing mechanism for point record observations of flora and fauna. The layer covers an area of south-east Australia extending from 139 degrees to 151 degrees 30 minutes EAST and 33 degrees to 42 degrees SOUTH. It thus incorporates substantial areas of South Australia and New South Wales plus all of Bass Strait and the north coast of Tasmania.", "anzlicid": "ANZVI0803004130", "geonet_info_createdate": "2017-03-07", "revisiondate": "2017-03-07", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1036c35a97d42304893bfa97a170f90c07c1d71b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a0a3117e-8ad5-5ab5-b5fc-7f3c12d4d1bc", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, MapInfo Non digital - printed maps", "type": "dataset", "title": "Miscellaneous geological lines and points (1:250,000)", "alttitle": "MISCL250", "tempextentbegin": "1969-12-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2003-10-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34280\", \"uuid\": \"a0a3117e-8ad5-5ab5-b5fc-7f3c12d4d1bc\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-17\", \"changeDate\": \"2013-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Miscellaneous geological lines and points (1:250,000)", "abstract": "This dataset displays miscellaneous geological line and point data not covered by other geological datasets.\n\nThe data has been collected by the Geological Survey of Victoria. This dataset is accompanied by other datasets representing geological polygons and boundaries, structural lines, miscellaneous polygons, metamorphism, and placer deposits.", "anzlicid": "ANZVI0803002725", "geonet_info_createdate": "2013-09-17", "revisiondate": "2013-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "42a80a5e5bc8954278baa96334c154fe4a7b1cc0", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "b2a80090-1731-54a1-a264-63cd3b9f2f54", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "Land Status - PA - Water Authority Land (subset of PLM100_POLYGON)", "alttitle": "PLM100_V_PA_WATER", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:06:01+00:00", "maintenanceandupdatefrequency_text": "Daily", "locale": "eng", "status": "notobsolete;planned", "topiccat": "utilities communication;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34284\", \"uuid\": \"b2a80090-1731-54a1-a264-63cd3b9f2f54\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-19\", \"changeDate\": \"2022-09-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "limitedDistribution", "defaulttitle": "Land Status - PA - Water Authority Land (subset of PLM100_POLYGON)", "abstract": "Land Status - Petroleum Act (PA) - Water Authority Land (subset of PLM100_POLYGON)", "anzlicid": "ANZVI0803003070", "geonet_info_createdate": "2013-09-19", "revisiondate": "2022-09-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d1aa5e91ca6de42ea0c23f767f19db1ae3eced69", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "4803b0e0-e312-5371-8e6a-88248e42e17d", "publicationdate": "2022-11-11", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Victorian Biodiversity Atlas flora records (unrestricted) for sites with high spatial accuracy", "alttitle": "VBA_FLORA25", "tempextentbegin": "1749-12-31T14:20:08+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:01+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36421\", \"uuid\": \"4803b0e0-e312-5371-8e6a-88248e42e17d\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-07-22\", \"changeDate\": \"2021-08-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Biodiversity Atlas flora records (unrestricted) for sites with high spatial accuracy", "abstract": "This layer contains a snapshot of flora taxa records from the Victorian Biodiversity Atlas (VBA) (including most threatened taxa). The main attributes in this layer are survey id, survey location, date, time, locational accuracy, taxa recorded, counts, observation type, survey type, collector, and reliability of the record. The VERS_DATE column identifies the currency of the data.\n\nAlthough this is a point layer, the actual accuracy of the site can range from +/- 1m to +/- 500m.\n\nThe FFG field has been updated to reflect the 2021 FFG Act amendments, and the Victorian Advisory List (VICADV) is now obsolete.\n\nThis layer excludes restricted taxa records. These records are contained in the related (but restricted) dataset VBA_FLORA_RESTRICTED. Public users wishing to view the general location of these records should refer to the related dataset VBA_RESTRICTED_1M.", "anzlicid": "ANZVI0803004163", "geonet_info_createdate": "2016-07-22", "revisiondate": "2021-08-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "52fc8fd69ea10ad790c3d6bd3063b50d62984ec1", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "eb49d133-830c-5d15-8541-103d32a82ed3", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-15", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI Shapefile", "type": "dataset", "title": "Geological Facies (1:100,000)", "alttitle": "FACIES100_POLYGON", "tempextentbegin": "1995-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2023-01-24T00:06:03+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36427\", \"uuid\": \"eb49d133-830c-5d15-8541-103d32a82ed3\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-29\", \"changeDate\": \"2022-09-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological Facies (1:100,000)", "abstract": "Geological Facies", "anzlicid": "ANZVI0803002512", "geonet_info_createdate": "2018-03-29", "revisiondate": "2022-09-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "eda87707085481f8a52894452ec015ec4a1ae3e8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "55f6cc6b-20d5-5fbf-b601-3728aa8ad41c", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Port Fairy 100 ARI 2050 0.4m SLR Inundation", "alttitle": "PF_100ARI_40CMSLR_EXTENT", "tempextentbegin": "2012-04-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2013-04-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;geoscientific information;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36430\", \"uuid\": \"55f6cc6b-20d5-5fbf-b601-3728aa8ad41c\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-07-12\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Port Fairy 100 ARI 2050 0.4m SLR Inundation", "abstract": "The Port Fairy Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Port Fairy coastal environment.\n\nThis data represents the inundation extent for the Port Fairy study area. It has been derived from the combined analysis of the results of \"bathtub\" inundation modelling (considering astronomical tide, barometric setup and wave setup) and \"dynamic coastal inundation numerical modelling\" for the coastal area of the Port Fairy township (estimating combined ocean and catchment flooding).\n\nThe following conditions were assumed:\n- 10 year Average Recurrence Interval (ARI) Riverine Boundary Condition\n- 100 year ARI Ocean Boundary Condition\n- 2050, 0.4 m Sea Level Rise \n\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.", "anzlicid": "ANZVI0803005635", "geonet_info_createdate": "2016-07-12", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d439e6fe270b57eaa4bb808dbc90559041c1d68d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1f4cb259-2850-517b-9157-85fdb87000cd", "publicationdate": "2021-07-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Expired Gold Mining Leases - 1860s to 1958", "alttitle": "GMLHST", "tempextentbegin": "2001-04-09T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:06:07+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34301\", \"uuid\": \"1f4cb259-2850-517b-9157-85fdb87000cd\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Expired Gold Mining Leases - 1860s to 1958", "abstract": "Contains mostly licences from 1860 to 1930\nWas digitized to help in identifying land where native title claims could be rejected.", "anzlicid": "ANZVI0803002428", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ddfadd754b2f65ff132fb5e64222f0a93b6d89c0", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8508ebb0-1299-5b99-a527-cdf3fa0837c0", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Water Body polygon features", "alttitle": "ISC2010_WATER_BODIES", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34378\", \"uuid\": \"8508ebb0-1299-5b99-a527-cdf3fa0837c0\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Water Body polygon features", "abstract": "The ISC2010_WATER_BODIES polygon features represent the areas of the stream bed that contained water at the time of the survey. Water body features less than 5m2 have been removed so that data volume is manageable.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005118", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ae6375c781494c82cd7aed2579468a0d0544de5f", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f64602d7-08e4-5530-a4d4-d70eb849dcd1", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Property Graphic Type Table", "alttitle": "PR_GRAPHIC_TYPE", "tempextentbegin": "2023-01-24T00:06:31+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:31+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36518\", \"uuid\": \"f64602d7-08e4-5530-a4d4-d70eb849dcd1\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Property Graphic Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003147", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ae3b169c9fe8ef649ccc4ccfcf2980335859718c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "5bf85f7b-f296-5671-b0ba-009cf588b3da", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:5,000 Edition 47", "alttitle": "MELWAY_PAGEGRID_5_ED47", "tempextentbegin": "2019-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2019-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36523\", \"uuid\": \"5bf85f7b-f296-5671-b0ba-009cf588b3da\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-10-04\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:5,000 Edition 47", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:5 000 city maps.", "anzlicid": "ANZVI0803004596", "geonet_info_createdate": "2018-10-04", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "687f4d2e0d976bdc601f034b3f0fdcc56041975b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5ef177dc-9bea-5b18-8555-8f66de2330bc", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-07-03", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Lite - Public Land Classification Polygon - 1:1,000,000 to 1:5,000,000", "alttitle": "VMLITE_PUBLIC_LAND_SU3", "tempextentbegin": "2006-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2008-07-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36542\", \"uuid\": \"5ef177dc-9bea-5b18-8555-8f66de2330bc\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-07-03\", \"changeDate\": \"2020-07-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Lite - Public Land Classification Polygon - 1:1,000,000 to 1:5,000,000", "abstract": "This layer is part of Vicmap Lite and contains polygon features delineating public land areas. This Vicmap Lite dataset is suited for use between scales of 1: 1 million and 1 : 5 million. The polygons were sourced from PLMMT100PLY. The level of attribute information, the number of features and the number of vertices has been simplified to suit the 1:1 million - 1 : 5 million scale range. The concept of a Scale Use Code has been introduced to help control the level of detail displayed.\n\nTHIS DATASET WAS LAST UPDATED IN AUGUST 2008", "anzlicid": "ANZVI0803003529", "geonet_info_createdate": "2020-07-03", "revisiondate": "2020-07-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8b88b4d843c38863abee8f5937c7473ec4216de3", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "4c1c6992-2be6-5d70-853d-c30407e394ea", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-02-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Regolith Regional Radiometric Signature Area Lines (1:100,000)", "alttitle": "RRRADSIG100_ARC", "tempextentbegin": "2001-06-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36546\", \"uuid\": \"4c1c6992-2be6-5d70-853d-c30407e394ea\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-09\", \"changeDate\": \"2016-02-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Regolith Regional Radiometric Signature Area Lines (1:100,000)", "abstract": "This data contains areas of regolith materials classified according to their radiometric response. The interpretation concentrates on areas of alluvial and colluvial sediments and is intended to give an indication of the provenance of the material contained in these deposits.", "anzlicid": "ANZVI0803003392", "geonet_info_createdate": "2016-02-09", "revisiondate": "2016-02-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "25ba72b7dff7883f94e840ae8ce11037cdc81254", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5999b66c-da42-53b9-9ac3-40c28cba1d3b", "publicationdate": "2022-09-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "CFA_PDD_RAPPEL", "alttitle": "CFA_PDD_RAPPEL", "tempextentbegin": "2018-10-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;planned", "topiccat": "boundaries;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34409\", \"uuid\": \"5999b66c-da42-53b9-9ac3-40c28cba1d3b\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-29\", \"changeDate\": \"2022-03-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "limitedDistribution", "defaulttitle": "CFA_PDD_RAPPEL", "abstract": "Boundaries indicating the Predetermined Rappel Dispatch Boundaries for Aircraft. The main area is in the east of the state.This dataset is upto date for 2021/22 season.", "anzlicid": "ANZVI0803005956", "geonet_info_createdate": "2019-11-29", "revisiondate": "2022-03-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "60a1f6adebb462c9d0a6bdb53d4c4747e6629332", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9c3af4a5-319e-5a44-a662-4da755882d8f", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-09-19", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcInfo", "type": "dataset", "title": "Petroleum Polygons and Text for the image TSHEOTWTWT - please refer to it's metadata", "alttitle": "TSHEOTWTWT_T", "tempextentbegin": "1994-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:06:47+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36572\", \"uuid\": \"9c3af4a5-319e-5a44-a662-4da755882d8f\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-19\", \"changeDate\": \"2013-09-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "limitedDistribution", "defaulttitle": "Petroleum Polygons and Text for the image TSHEOTWTWT - please refer to it's metadata", "abstract": "Petroleum Polygons and Text for the image TSHEOTWTWT - please refer to it's metadata", "anzlicid": "ANZVI0803002956", "geonet_info_createdate": "2013-09-19", "revisiondate": "2013-09-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "195197807ecbbc6a94b0c1bcdfd493c8571daf39", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "dc3dade1-803e-5804-87b4-681121c1ee22", "publicationdate": "2020-11-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-05-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Marginal Mile", "alttitle": "MARGINAL_MILE", "tempextentbegin": "2018-12-29T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34442\", \"uuid\": \"dc3dade1-803e-5804-87b4-681121c1ee22\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-06-12\", \"changeDate\": \"2021-05-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Marginal Mile", "abstract": "This dataset records where the Marginal Mile has been identified across Eastern Victoria. The data was created from a review across all government gazettes in 2019/20. This is a subset of the Fire Protected Area.\nThe marginal mile layer consists of private land within 1.5km of national park, State forest or protected public land in the east of the state. DELWP is responsible for fire prevention within the marginal mile and declares the prohibited period across 14 local government areas (LGAs) in the east annually for this tenure. Information included is LGAs, PLM 25, town and major road names.", "anzlicid": "ANZVI0803008645", "geonet_info_createdate": "2020-06-12", "revisiondate": "2021-05-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "dc6b8d1eb53336c41ffc33f32e86f198a01c0ae4", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "fa5a6f82-f3a4-5012-85ee-361707bc6c87", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Bank Full Width 100m Section Summary Table", "alttitle": "ISC2010_BANKFULL_WIDTH_S", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36583\", \"uuid\": \"fa5a6f82-f3a4-5012-85ee-361707bc6c87\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Bank Full Width 100m Section Summary Table", "abstract": "The ISC_BANKFULL_WIDTH_S table is the Statistical Summary table for the Bankfull Width metric at the 100m Section level.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005139", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4eaaaec7c3b7b5fad862354592c6b22d53249998", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "03ee0727-c130-5c80-828a-9dd720b54498", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, MapInfo, Non digital - plotted maps", "type": "dataset", "title": "Geophysics (1:100,000), Geological Interpretation of Geophysical Features Polygon", "alttitle": "GPGEOL100_POLYGON", "tempextentbegin": "1994-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36603\", \"uuid\": \"03ee0727-c130-5c80-828a-9dd720b54498\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-29\", \"changeDate\": \"2022-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geophysics (1:100,000), Geological Interpretation of Geophysical Features Polygon", "abstract": "This dataset contains interpreted geological data, using combined interpretations of airborne magnetic, radiometric and gravity survey data, mapped at 1:100,000. \n\nAt scales larger than 1:120,000 the display is a combination of both 1:100,000 and 1:250,000 geophysical mapping. Recent 1:250,000 geophysical mapping has been of such quality and detail it has been used to supersede older coincident 1:100,000 mapping. This occurs in the following areas: St Arnaud 7524, Dunolly 7624, Charlton 7525, Wedderburn 7625 and part of Ararat 7423 are superseded by St Arnaud SJ54-4. Bendigo 7724, Heathcote 7824 and Nagambie 7924 are superseded by Bendigo SJ55-1. \n\nBalmoral 7223, Ararat 7423, Horsham SJ54-3 and St Arnaud SJ54-4 supersede Grampians 7323 where there is overlap.\n\nThis data has been collected by the Geological Survey of Victoria. This dataset is accompanied by other datasets representing sub-surface geological polygons, structural lines, miscellaneous lines and metamorphism.", "anzlicid": "ANZVI0803003420", "geonet_info_createdate": "2018-03-29", "revisiondate": "2022-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "42725e33b473f01f2e54b63be69c3679e3dd55bf", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "285f8200-c14c-5a99-a220-61754807c48c", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available on request", "type": "dataset", "title": "Shallow Inlet Seagrass 1999", "alttitle": "SEAGRASS_SHALLOW_INLET_1999", "tempextentbegin": "1998-05-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "1999-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36614\", \"uuid\": \"285f8200-c14c-5a99-a220-61754807c48c\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-25\", \"changeDate\": \"2015-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Shallow Inlet Seagrass 1999", "abstract": "This layer contains polygons defining the spatial extent, species distribution and density of seagrass meadows within Shallow Inlet mapped from 1999 aerial photography and ground-truthing.", "anzlicid": "ANZVI0803004104", "geonet_info_createdate": "2015-11-25", "revisiondate": "2015-11-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b12aee3273fd708656dcb38c93ffed8697d4982f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c2d93381-480c-53a2-b41d-03720d542ca1", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-02-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, Digital - ArcView, Digital - MapInfo", "type": "dataset", "title": "Miscellaneous geological lines and points (1:100,000)", "alttitle": "MISCL100", "tempextentbegin": "1969-12-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36616\", \"uuid\": \"c2d93381-480c-53a2-b41d-03720d542ca1\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-09\", \"changeDate\": \"2016-02-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Miscellaneous geological lines and points (1:100,000)", "abstract": "The data displays miscellaneous geological line and point data not covered by other geological datasets.\n\nThe data have been collected by the Geological Survey of Victoria. The dataset is accompanied by other datasets representing geology outcrop and boundaries, structural lines, miscellaneous polygons, metamorphism, and placer deposits.", "anzlicid": "ANZVI0803002515", "geonet_info_createdate": "2016-02-09", "revisiondate": "2016-02-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "90d0c22b624574cb2247adaba5611589f43c2412", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "dc891fc4-05d7-5ae8-af7d-f845c0a678eb", "publicationdate": "2021-07-01", "publishedforgroup": "12264;0", "geonet_info_changedate": "2022-01-13", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Neighbourhood Region - Property Sales & Valuations (PSV)", "alttitle": "NEIGHBOURHOOD_PSV", "tempextentbegin": "2010-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:01+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "obsolete", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34480\", \"uuid\": \"dc891fc4-05d7-5ae8-af7d-f845c0a678eb\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-01-16\", \"changeDate\": \"2022-01-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Obsolete", "mdclassification": "unclassified", "defaulttitle": "Neighbourhood Region - Property Sales & Valuations (PSV)", "abstract": "This dataset was withdrawn in Jauary, 2022 as per Vicmap Change Notice 275.\n\nThis layer contains polygon features delineating neighbourhood areas. A neighbourhood is also known as an unbounded locality. It does not have officially recognised and registered boundaries. It is therefore important to note that that these polygons are simply an interpretation of the extent of the neighbourhood, based on sales data for that neighbourhood. \n\nThe neighbourhood areas may cross over one or more bounded localities, and may represent estate names or names that the general public have given to an area.\n\nAll neighbourhood names within this dataset are gazetted by the Office of Geographic Names (OGN)\n\nThis dataset was withdrawn in January, 2022 as it was created for a Departmentall application which no longer requires this dataset.\n\nThe dataset was incomplete and had not been maintaned for many years..", "anzlicid": "ANZVI0803004776", "geonet_info_createdate": "2017-01-16", "revisiondate": "2022-01-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7c03f58da2cec90ce910de2ea9e116b2fd0d30b0", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0aa49986-3076-5362-8c8f-73d96d308e96", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Large Trees Reach Summary Table", "alttitle": "ISC2010_LARGE_TREES_R", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34429\", \"uuid\": \"0aa49986-3076-5362-8c8f-73d96d308e96\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Large Trees Reach Summary Table", "abstract": "The ISC2010_LARGE_TREES_R table is the Statistical Summary table for the Large Trees Metric at the Reach level.\n\nThe ISC2010_LARGE_TREES_R table is designed to JOIN to the ISC2010_RIVER_CENTRELINES_R feature class.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005130", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "3a23deb4023c03fbcc6582e404ac789ada947cf7", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1b5cb827-e09b-5a42-9ab0-557ea864d013", "publicationdate": "2023-01-22", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Mining Inspectorates for Minerals Regulation Branch within Minerals and Petroleum - Victoria", "alttitle": "INSPECT", "tempextentbegin": "1989-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:06:52+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries;economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36588\", \"uuid\": \"1b5cb827-e09b-5a42-9ab0-557ea864d013\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Mining Inspectorates for Minerals Regulation Branch within Minerals and Petroleum - Victoria", "abstract": "Mining Inspectorates for Minerals Regulation Branch within Minerals and Petroleum - Victoria", "anzlicid": "ANZVI0803002203", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1a606cb799763aa2278447c8c01c2fb9178b4188", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "654a7653-a99b-5a5b-b085-222664808399", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-28", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Irrigation District", "alttitle": "IRRIGATION_DISTRICT", "tempextentbegin": "2005-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:54+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;planned", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34453\", \"uuid\": \"654a7653-a99b-5a5b-b085-222664808399\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-10-22\", \"changeDate\": \"2022-07-28\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "unclassified", "defaulttitle": "Irrigation District", "abstract": "Irrigation district administrative boundaries mapped by Victorian water authorites based on geographic features. Input scales vary by water authority.", "anzlicid": "ANZVI0803003049", "geonet_info_createdate": "2013-10-22", "revisiondate": "2022-07-28", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4a1538ab76f4088449725226852668d118ee6033", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "dd0a764e-1b7d-53fc-b2e4-cb9e2bfce57e", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-05-06", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Tree Cover simplified for display at Statewide scale", "alttitle": "TREE100_VIC", "tempextentbegin": "1989-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "1993-04-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34458\", \"uuid\": \"dd0a764e-1b7d-53fc-b2e4-cb9e2bfce57e\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-05-06\", \"changeDate\": \"2016-05-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Tree Cover simplified for display at Statewide scale", "abstract": "This dataset is a simplified version of TREE100 with areas less than 20,000,000 sqm deleted and the remaining features generalized using the bendsimplify algorithm with a 5000 metre tolerance.", "anzlicid": "ANZVI0803002852", "geonet_info_createdate": "2016-05-06", "revisiondate": "2016-05-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fac1b28d665bc844dc12fea9a1a2284e8dd2f08f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "13afa68e-e50e-5a55-ae6f-70b1cc54987d", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-01-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Beneficial Use - Upper Tertiary", "alttitle": "BU_UTER", "tempextentbegin": "2005-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:56+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36598\", \"uuid\": \"13afa68e-e50e-5a55-ae6f-70b1cc54987d\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-01-04\", \"changeDate\": \"2017-01-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Beneficial Use - Upper Tertiary", "abstract": "This layer is part of a set that defines the beneficial use of Victoria's groundwater resources.\nAccording to the Victorian Environmental Protection Authority (EPA), a beneficial use is a use to the environment, or a segment of the environment which is conductive to public benefit, welfare, safety, health or aesthetic enjoyment and which requires protection from the effects of waste discharges, emissions or deposits. A beneficial use may be an existing or potential use. A resource may have more than one beneficial use.\nThe State's groundwater resources have a number of beneficial uses. These uses primarily depend on groundwater quality and aquifer yield and can be assigned to broad water quality classes.", "anzlicid": "ANZVI0803003052", "geonet_info_createdate": "2017-01-04", "revisiondate": "2017-01-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f4f661342d1e23e8ef3fe08a0c176153c7250e8b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "288f1480-90fc-59b3-a3dd-9c278fd813c8", "publicationdate": "2021-01-08", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-05-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "WMS", "type": "dataset", "title": "Areas of Strategic Importance for Growling Grass Frog habitat", "alttitle": "MSA_BCS_GGF_ASI", "tempextentbegin": "2016-12-10T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:56+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;biota;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34463\", \"uuid\": \"288f1480-90fc-59b3-a3dd-9c278fd813c8\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-05-13\", \"changeDate\": \"2020-05-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Areas of Strategic Importance for Growling Grass Frog habitat", "abstract": "The Biodiversity Conservation Strategy for Melbourne's Growth Corridors (DEPI 2013a) identified measures for protecting, enhancing and connecting important populations of Growling Grass Frogs within conservation areas and mitigating the losses of habitat that will occur as a result of urban development in Melbourne's growth corridors approved under the strategic assessment. \n\nThe purpose of the Growling Grass Frog Masterplan for Melbourne's Growth Corridors (Masterplan) is to provide guidance on implementing protection measures and investing in habitat creation and enhancement within Growling Grass Frog conservation areas. \n\nThis dataset represents areas within the Growling Grass Frog conservation corridors for which particular protection measures are to be implemented.", "anzlicid": "ANZVI0803005661", "geonet_info_createdate": "2020-05-13", "revisiondate": "2020-05-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1e8571b6f244b947d8731c7a7a4d9a8b441acf3d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ec4a233d-88d9-5533-b77f-23fe801d5233", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-11-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Corner Inlet Depth Contour Lines at 1:25,000", "alttitle": "BATHYMETRY_CORNER_INLET_ARC", "tempextentbegin": "1992-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:34+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34388\", \"uuid\": \"ec4a233d-88d9-5533-b77f-23fe801d5233\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-11-13\", \"changeDate\": \"2014-11-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Corner Inlet Depth Contour Lines at 1:25,000", "abstract": "This layer contains line features which represent depth contours (bathymetry) in Corner Inlet.", "anzlicid": "ANZVI0803004013", "geonet_info_createdate": "2014-11-13", "revisiondate": "2014-11-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ddc23a8ad7b8b09c44df82ee1ea3f4a44d534f12", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "aed66f1b-94a4-506f-8d15-0e82d901d90d", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-02-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, Digital - MapInfo (planned for 2001), Non digital - plotted maps", "type": "dataset", "title": "Regolith Detail type lines (1:50,000)", "alttitle": "RDREGO100_ARC", "tempextentbegin": "2001-06-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36534\", \"uuid\": \"aed66f1b-94a4-506f-8d15-0e82d901d90d\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-09\", \"changeDate\": \"2016-02-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Regolith Detail type lines (1:50,000)", "abstract": "The data contains primary geological data, namely regolith-landform units and boundary types separating regolith-landform units.\n\nThe dataset is part of the geological mapping dataset, which includes datasets representing geological rock units and boundaries, regolith-landform units and boundaries, structural lines, miscellaneous lines and points, miscellaneous polygons, metamorphism and placer deposits.\n\nThe data have been collected by the Geological Survey of Victoria. Data have been captured in projects covering special interest areas, and have been recorded in the field by hand at scales between 1:10,000 and 1:25,000 then prepared for hard copy printing at a range of scales.", "anzlicid": "ANZVI0803003396", "geonet_info_createdate": "2016-02-09", "revisiondate": "2016-02-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1219654563214424b0d3977df4e0b943dcab9517", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "b899190b-5115-5ce3-b557-993e8cf20977", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-05-13", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "WMS", "type": "dataset", "title": "Growling Grass Frog Sub-Regional Strategy areas within the Biodiversity Conservation Strategy", "alttitle": "MSA_BCS_SRS_GGF", "tempextentbegin": "2013-04-16T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:33+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36526\", \"uuid\": \"b899190b-5115-5ce3-b557-993e8cf20977\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-05-13\", \"changeDate\": \"2020-05-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Growling Grass Frog Sub-Regional Strategy areas within the Biodiversity Conservation Strategy", "abstract": "This dataset identifies land in Melbourne's growth corridors that is suitable habitat for the Growling Grass Frog, and designates this land into two categories:\n- Habitat that will be protected and managed for the conservation of the GGF (Category 1 habitat). These areas must be protected and enhanced to ensure the long-term viability of important populations of Growling Grass Frog within the growth corridors.\n- Habitat that can be cleared for urban development, but for which compensatory habitat is required by the Commonwealth Government (Category 2 habitat).\n\nThe protection and management of Category 1 habitat will achieve the conservation outcomes for the Growling Grass Frog, and will satisfy the protection requirements of the prescription (See Appendix 1 of the GGF Sub-Regional Strategy).", "anzlicid": "ANZVI0803004903", "geonet_info_createdate": "2020-05-13", "revisiondate": "2020-05-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4b3bef2b622e61b6b2e93b26bb9df35cf85652b2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e8e8a13e-efdb-5468-bacc-bbc9ee511cc2", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - Country Fire Authority (CFA) Region Polygon", "alttitle": "CFA_REGION", "tempextentbegin": "2012-10-15T13:00:00+00:00", "resowner": "Country Fire Authority;Country Fire Authority", "tempextentend": "2023-01-24T00:07:28+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;boundaries;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34567\", \"uuid\": \"e8e8a13e-efdb-5468-bacc-bbc9ee511cc2\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - Country Fire Authority (CFA) Region Polygon", "abstract": "Part of the Vicmap Admin dataset series. This layer contains polygon features delineating the current Country Fire Authority Region Boundaries.\n\nIn 2010, CFA moved to align their administrative boundaries to the Victorian Government Regional Departmental Boundaries. As a result of this direction, from 1st July 2010, what was once known as CFA Areas will now be known as CFA Regions.\n\nThere are three exceptions in this dataset. In June 2011, Bass Coast Shire became part of Southern Metropolitan Region when the Victorian Government Regional Departmental Boundaries indicate that it should be part of Gippsland Region. In October 2012, Yarriambiack Shire was divided using the east-west rabbit fence (same as the Total Fire Ban District Boundary) which impacts on the Loddon Mallee and Grampians Regions boundary. In August 2013, the gazetted boundary prior to the mapping changes made as part of the Boundary Alignment Project at Inverloch Brigade, were reinstated impacting on the boundary ajoining Southern Metropolitan and Gippsland Regions.\n\nOn the 2nd October 2014, CFA's eight Regions became five. This involved the merger of Hume and Eastern Metropolitan Regions to form North East Region, and Loddon Mallee and Northern & Western Metropolitan Regions to form North West Region. The other Regions were also renamed. These changes were a part of the Creating our Future Together (COFT) Program.", "anzlicid": "ANZVI0803004759", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "eec34a8b834997c558b7301986755ef5d2f59896", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "871a5706-7282-5897-accd-cff576e71055", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available on request", "type": "product", "title": "Melbourne Metro Tunnel Project Package of station, tunnel and track data.", "alttitle": "MTP_EES_METRO_TUNNEL_PROJECT", "tempextentbegin": "2016-04-30T14:00:00+00:00", "resowner": "Melbourne Metro Rail Authority", "tempextentend": "2023-01-24T00:07:29+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34570\", \"uuid\": \"871a5706-7282-5897-accd-cff576e71055\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-03-13\", \"changeDate\": \"2022-02-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Melbourne Metro Tunnel Project Package of station, tunnel and track data.", "abstract": "This package of Melbourne Metro Tunnel Project data includes datasets for:\nFuture Station Entrances (MTP_EES_FUTURE_STATION_ENTRANCES)\nStation Entrances (MTP_EES_STATION_ENTRANCES)\nTunnel Entrances (MTP_EES_TUNNEL_ENTRANCES)\nUnderground Rail Track (MTP_EES_UNDERGROUND_RAIL_TRACK)\nUnderground Stations (MTP_EES_UNDERGROUND_STATIONS)\n\nThe Concept Design shown in this data reflects the indicative design shown in the Project's Environmental and Effects Statement (EES) which was publicly circulated with the community in May 2016.\n\nThe Metro Tunnel Project comprises two twin 9 kilometre tunnels with five new underground stations, including two city stations directly connected to Flinders Street and Melbourne Central. It will connect the Sunbury and Cranbourne / Pakenham lines for the first time, creating a new end-to-end train line through the inner city. Construction of the Metro Tunnel began in 2017 and it is due to be completed by 2026.\n\nThe Metro Tunnel Project comprises various works packages. As the project progresses and designs are further developed and approved, an updated dataset will be made available.\n\n\nDATA TO BE AVAILABLE SOON\n\n\nDATA TO BE AVAILABLE SOON", "anzlicid": "ANZVI0803005822", "geonet_info_createdate": "2019-03-13", "revisiondate": "2022-02-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "41b389c50f4c199b5622e48c32f4f1107439709d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7beba4cc-213c-596b-9370-dd10725f4a93", "publicationdate": "2020-07-30", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-07-20", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Coastal Places of Interest", "alttitle": "COASTAL_POI", "tempextentbegin": "2011-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-01-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36717\", \"uuid\": \"7beba4cc-213c-596b-9370-dd10725f4a93\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-07-06\", \"changeDate\": \"2020-07-20\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Coastal Places of Interest", "abstract": "Victorian State-wide dataset containing features of interest including boating clubs, camping grounds, caravan parks, historic sites, lifesaving clubs and lookouts as identified by the Victorian Regional Coastal Boards and reviewed as part of the Future Coasts SECAP project.", "anzlicid": "ANZVI0803008670", "geonet_info_createdate": "2020-07-06", "revisiondate": "2020-07-20", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "35d057439c0c3511294c3a5e84a4591f6e109054", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e3b65846-2af2-5d0c-b7a6-c64c1b9934fe", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Vegetation Width 100m Section Summary Table", "alttitle": "ISC2010_VEGETATION_WIDTH_S", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34498\", \"uuid\": \"e3b65846-2af2-5d0c-b7a6-c64c1b9934fe\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Vegetation Width 100m Section Summary Table", "abstract": "The ISC2010_VEGETATION_WIDTH_S table is the Statistical Summary table for the Vegetation Width Metric at the 100m Section level.\n\nThe ISC2010_VEGETATION_WIDTH_S table is designed to JOIN to the ISC2010_RIVER_CENTRELINES_S feature class.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005145", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "076dc1849be3dd4cb91c4ae0f405dfd5361de539", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9ee9d41a-93dc-5e13-9ad8-69c64c22249d", "publicationdate": "2022-07-20", "publishedforgroup": "12264;0", "geonet_info_changedate": "2022-07-28", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "shapefile ArcSDE", "type": "dataset", "title": "Melbourne Water Corporation", "alttitle": "MELBOURNE_WATER_CORP", "tempextentbegin": "2007-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2007-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36643\", \"uuid\": \"9ee9d41a-93dc-5e13-9ad8-69c64c22249d\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-01-30\", \"changeDate\": \"2022-07-28\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Melbourne Water Corporation", "abstract": "This data contains the spatial boundaries for Melbourne Water's area of responsibility for drainage and waterway assets.", "anzlicid": "ANZVI0803005830", "geonet_info_createdate": "2020-01-30", "revisiondate": "2022-07-28", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "821b38147474a52d6a685046603baa6c1bb68018", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "eba9f51a-194f-5b2e-b508-799dade349e0", "publicationdate": "2019-03-22", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-01-22", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "type": "dataset", "title": "ANZSIC_BUSINESS_CODE", "alttitle": "ANZSIC_BUSINESS_CODE", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2100-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34532\", \"uuid\": \"eba9f51a-194f-5b2e-b508-799dade349e0\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-01-22\", \"changeDate\": \"2019-01-22\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "ANZSIC_BUSINESS_CODE", "abstract": "The dataset acts as the lookup table for the SANDS_MCDOUGALL dataset", "anzlicid": "ANZVI0803007957", "geonet_info_createdate": "2019-01-22", "revisiondate": "2019-01-22", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b48a79a757d8ad4c61619260df4f8a8ddce065f0", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "42dd08cb-6670-57c6-af53-0fcf81500165", "publicationdate": "2019-12-17", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-10-07", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "Feature Class", "type": "dataset", "title": "Victorian Environmental Flows Monitoring and Assessment Program monitoring sites", "alttitle": "RIMP_SITES", "tempextentbegin": "2016-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:18+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36673\", \"uuid\": \"42dd08cb-6670-57c6-af53-0fcf81500165\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-10-07\", \"changeDate\": \"2019-10-07\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "limitedDistribution", "defaulttitle": "Victorian Environmental Flows Monitoring and Assessment Program monitoring sites", "abstract": "The Victorian Environmental Flows Monitoring and Assessment Program (VEFMAP) was estasblished in 2005 and has been undertaken in a series of stages. VEFMAP represents a large-scale, long-term monitoring program designed to assess ecosystem responses to changes in flow regime in regulated, Victorian rivers that receive environmental water. This data set maps the location of monitoring sites included in stage 6 of VEFMAP from 2017.", "anzlicid": "ANZVI0803008547", "geonet_info_createdate": "2019-10-07", "revisiondate": "2019-10-07", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c2a5ed8df81720f43ed7337231d3d81cf7434c97", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3e8705c7-1bc3-5a33-8325-d4aa79b49c2b", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-05-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcGIS Feature Class", "type": "dataset", "title": "Wind erosion susceptibility mapping for north west Victoria", "alttitle": "NW_EROSION_SUSCEPTIBILITY", "tempextentbegin": "2011-06-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2012-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "farming;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36681\", \"uuid\": \"3e8705c7-1bc3-5a33-8325-d4aa79b49c2b\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-14\", \"changeDate\": \"2019-05-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Wind erosion susceptibility mapping for north west Victoria", "abstract": "A polygonal map of wind erosion susceptibility in the Victorian Mallee.\n\nThe dataset was created by assigning relative susceptibility classes to landform component data mapped during the disaggregation of land systems project (refer to separate metadata entry). The classifications represent the inherent susceptibility of the component to wind erosion based on its exposure to erosive winds and its 'likely' soil texture grade. In some instances a landform component has been split into facets in order to assign varying classes of susceptibility across the component.\n\nThe project was sponsored by the Mallee Catchment Management Authority with funding from the Federal government's Caring for our Country initiative.\n\nThe final project report, \"Mallee wind erosion susceptibility mapping\" together with the \"Disaggregation of landform components within land systems of the Mallee\", and the Rowan and Downes (1963) report , \"A study of the land of north-western Victoria\", should be referred to when analysing or utilising this dataset.\n\nRegional Map Units (RMUs) in the Mallee developed during the land system disaggregation project and refined in this project have been ranked for their overall wind erosion susceptibility. These units and the finer-scale grid data can be used to make spatially strategic decisions for investment in research, monitoring, protection and management relating to wind erosion in the region.", "anzlicid": "ANZVI0803005565", "geonet_info_createdate": "2019-05-14", "revisiondate": "2019-05-14", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bb473ededddb05b205e8171012e44907b87775de", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "92b712f7-67d5-5cb8-b90f-e73a3dd99a65", "publicationdate": "2018-02-01", "publishedforgroup": "12264;0", "geonet_info_changedate": "2016-02-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Geological Structures, Ovens Valley", "alttitle": "GEOL_STRUCT_OVENS_VALLEY", "tempextentbegin": "2011-06-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34547\", \"uuid\": \"92b712f7-67d5-5cb8-b90f-e73a3dd99a65\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-17\", \"changeDate\": \"2016-02-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological Structures, Ovens Valley", "abstract": "This dataset consists of structural lineaments with a predominant WSW to ENE orientation and lesser WNW to ESE orientation for the Ovens Valley of Victoria.\n\nThe dataset was compiled by GHD to inform the report 'Potential Influences of Geological Structures on Groundwater Flow Systems' for DEPI's Secure Allocation Future Entitlements (SAFE) Project.", "anzlicid": "ANZVI0803005025", "geonet_info_createdate": "2016-02-17", "revisiondate": "2016-02-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5db6da97b53409e1929b257acf88521f0737fe5e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "34943d05-0534-5e29-88fb-1c0395316968", "publicationdate": "2021-12-22", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-07-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "digital", "type": "dataset", "title": "Wetland landscape profiles", "alttitle": "WETLAND_LANDSCAPE", "tempextentbegin": "2010-09-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2013-11-26T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34557\", \"uuid\": \"34943d05-0534-5e29-88fb-1c0395316968\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-07-13\", \"changeDate\": \"2015-07-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Wetland landscape profiles", "abstract": "Wetland landscape profiles represent a regionalisation of wetlands at the landscape scale. They are based on variation in regional wetland vegetation as described in Appendix 3 of Department of Sustainability and Environment (2012) Index of Wetland Condition assessment of wetland vegetation update - December 2012. Department of Sustainability and Environment, East Melbourne, Victoria.", "anzlicid": "ANZVI0803005100", "geonet_info_createdate": "2015-07-13", "revisiondate": "2015-07-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "65d6037c00a08c8a3e07905f6b36b284ac3cb3af", "fields": {"available_formats": "ECW,GeoTIFF,JPEG,JPEG 2000,TIFF", "resclassification": "unclassified", "uuid": "f929f31a-dff9-501e-90b3-ef1cae17d695", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL geotiff", "type": "dataset", "title": "Soil Grids of Victorian Total Organic Carbon %", "alttitle": "SOIL_TOTAL_ORGANIC_CARBON", "tempextentbegin": "1957-12-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2016-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34561\", \"uuid\": \"f929f31a-dff9-501e-90b3-ef1cae17d695\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-14\", \"changeDate\": \"2021-07-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "unclassified", "defaulttitle": "Soil Grids of Victorian Total Organic Carbon %", "abstract": "A set of Digital Soil Maps (mean, 5th and 95th percentile prediction values) of total organic carbon % across Victoria in geotiff format.\n\nGrids of key soil properties have been produced for Victoria. These grids, in raster format, provide prediction and confidence interval values for key soil properties at a 90 m grid resolution for six set depths; 0 to 5 cm, 5 to 15 cm, 15 to 30 cm, 30 to 60 cm, 60 to 100 cm and 100 to 200 cm, across Victoria. In the case of Total Organic Carbon % mapping, prediction maps from only the first three depths have been published due to poor model validation for the lower three depths. This is in part due to the shoartage of calibration data available for modelling at these depths.\n\nThe grids have been designed to meet the specifications created by GlobalSoilMap (www.globalsoilmap.net) to develop and deliver detailed soil information in a consistent form.\n\nThe grids are a spatial interpolation of key soil properties to support modelling and decision making in resource management, agricultural production, land use policy and planning, and in further research such as ecosystem modelling.\n\nThe methodology used to develop the Soil Grids of Victoria has been based on that refined by the Australian Soil and Landscape Grid. Data and knowledge embedded into existing soil related datasets, e.g. soil profile and land mapping collections, have been key inputs. \n\nWhilst the new maps show an immense amount of fine scale detail, and are our best spatially continuous and exhaustive estimates of soil attributes across all of Victoria, they are most appropriately used for assessments of regional to state-wide trends of soil properties and their relationship with their environment and pedogenesis. Care should be taken when using the grids for local assessments and it is recommended that the confidence intervals are included at this scale.", "anzlicid": "ANZVI0803005804", "geonet_info_createdate": "2019-05-14", "revisiondate": "2021-07-14", "spatialrepresentationtype_text": "Grid"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5682b5eda3c7d5efd49d909fd35b8ec38400dbdd", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "64740ff7-08ee-53c0-9eec-8f4193e38de2", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2018-04-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "shapefile ArcSDE", "type": "dataset", "title": "Dams of Victoria", "alttitle": "DAM", "tempextentbegin": "2007-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2007-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34488\", \"uuid\": \"64740ff7-08ee-53c0-9eec-8f4193e38de2\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-04-13\", \"changeDate\": \"2018-04-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Dams of Victoria", "abstract": "Dam locatons in Victoria", "anzlicid": "ANZVI0803005823", "geonet_info_createdate": "2018-04-13", "revisiondate": "2018-04-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "33053da61f8be92ca3146041ceef5b4a9eef8878", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5a4eb5bf-fe2f-5754-927d-3b8d78c3cb2c", "publicationdate": "2023-01-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "product", "title": "Minerals - Earth Resources Spatial Data Collection for the Datamart.", "alttitle": "DM_MIN_MINERALS", "tempextentbegin": "1998-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:07:04+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34489\", \"uuid\": \"5a4eb5bf-fe2f-5754-927d-3b8d78c3cb2c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Minerals - Earth Resources Spatial Data Collection for the Datamart.", "abstract": "MRSDA Exploration Graticules, Mineral points and regions, Heavy Mineral Sands areas and lines, Mining and Mineral Operation Locations, Extractive Industry Interest Areas, Deep and Shallow Leads and Shallow Workings.\nCollected for Earth Resources within DSDBI", "anzlicid": "ANZVI0803003354", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a8981280ac5580386a79bf9a0b9f70d9b48d9ada", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ed4688fc-0acd-549e-a17b-e6929bcc03ff", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-05-06", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Forest Management Area boundaries", "alttitle": "FMA25", "tempextentbegin": "1999-09-12T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:05+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34492\", \"uuid\": \"ed4688fc-0acd-549e-a17b-e6929bcc03ff\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-08\", \"changeDate\": \"2021-05-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Forest Management Area boundaries", "abstract": "Contains polygon features delineating boundaries and describing forest management areas. All arc features are identified and coded according to the AS2482 standard.", "anzlicid": "ANZVI0803002451", "geonet_info_createdate": "2017-03-08", "revisiondate": "2021-05-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "003774d5c321dae91b80f543ece95f9a07ee217f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "4b78c2e0-5134-5514-a1a6-adc46b2cdb61", "publicationdate": "2023-01-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-03", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcInfo", "type": "dataset", "title": "Native Title Determination Outcomes", "alttitle": "NT_DETOUT", "tempextentbegin": "2001-01-09T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2021-01-13T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Unknown", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36633\", \"uuid\": \"4b78c2e0-5134-5514-a1a6-adc46b2cdb61\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-06-20\", \"changeDate\": \"2022-07-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Native Title Determination Outcomes", "abstract": "Obtained from National Native Title Tribunal\nNative Title Determination Outcomes\nYou can download the data here:\n\n", "anzlicid": "ANZVI0803008487", "geonet_info_createdate": "2019-06-20", "revisiondate": "2022-07-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "3cd81683c15488551ced5eb30495c91819bdcb71", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0c1caffe-84f2-5777-96ea-bff90d587587", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-10-24", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL: ESRI ArcSDE export, ESRI Shapefile, MapInfo TAB, Oracle Spatial", "type": "dataset", "title": "Victorian Coastal Inundation Sea Level Rise 2100", "alttitle": "SLR82CM_2100", "tempextentbegin": "2009-09-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:06+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34495\", \"uuid\": \"0c1caffe-84f2-5777-96ea-bff90d587587\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-10-24\", \"changeDate\": \"2017-10-24\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Coastal Inundation Sea Level Rise 2100", "abstract": "The Victorian Coastal Inundation Dataset (the product) is a digital dataset consisting of eight spatial layers modelling the extent of land subject to coastal inundation due to projected sea level rise from 2009 to 2100.\nThis product is recommended for use at a scale of approximately 1:75,000 or less detail to reflect the limitations in the modelling and the recommended catchment to regional scale of inundation assessments with this product. The product is NOT suitable for assessments of potential risks at property level.\n\nThe datasets available are:\nSea Level Rise:\n- SLR00CM_2009 - Current (2009) sea level \n- SLR20CM_2040 - Projected 20cm sea level rise by 2040 \n- SLR47CM_2070 - Projected 47cm sea level rise by 2070 \n- SLR82CM_2100 - Projected 82cm sea level rise by 2100 \n\nStorm tide (1-in-100 year) with added wind forcing plus sea level rise\n- SLR00CM_ST_2009 - Current (2009) inundation to 1-in-100 year storm tide level \n- SLR20CM_ST_2040 - Inundation to 1-in-100 year storm tide level with storm surge increased by 6% plus 20 cm sea level rise \n- SLR47CM_ST_2070 - Inundation to 1-in-100 year storm tide level with storm surge increased by 13% plus 47 cm sea level rise \n- SLR82CM_ST_2100 - Inundation to 1-in-100 year storm tide level with storm surge increased by 19% plus 82 cm sea level rise\n\nInteractive Map:-\nhttp://mapshare.maps.vic.gov.au/gvh270hydra/\n> Future Coasts (Modelled)\n\nThis data has been computed to support the Victorian Governments Future Coasts Project.", "anzlicid": "ANZVI0803004730", "geonet_info_createdate": "2017-10-24", "revisiondate": "2017-10-24", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "73e1d67aff0f8f2b8da4ceca32a25fafb3a7ad48", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e703ec97-dd46-5f19-b5e8-b3c3a91ed90c", "publicationdate": "2019-03-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "VAF_EXTENT_110LMTD", "alttitle": "VAF_EXTENT_110LMTD", "tempextentbegin": "1979-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-03-14T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36728\", \"uuid\": \"e703ec97-dd46-5f19-b5e8-b3c3a91ed90c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "VAF_EXTENT_110LMTD", "abstract": "This dataset relates to the Victorian Aquifer Framework (VAF) 3D Surface for the Lower Mid Tertiary Aquitard. It represents the mapped extent of the aquitard.\n\nPlease refer to the master metadata record VAF 'Victorian Aquifer Framework (VAF) 3D Surfaces' for detailed information.", "anzlicid": "ANZVI0803008448", "geonet_info_createdate": "2019-11-19", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "24425441b8fd7fbe5a88b9f4d17ff005fc27e522", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "bc822a9c-3766-57ac-a034-bcad3fb66d86", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - Local Government Area (LGA) Polygon Aligned to Topographic Features", "alttitle": "AD_LGA_AREA_POLYGON", "tempextentbegin": "1997-08-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:34+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;planning cadastre;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34590\", \"uuid\": \"bc822a9c-3766-57ac-a034-bcad3fb66d86\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-06-17\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - Local Government Area (LGA) Polygon Aligned to Topographic Features", "abstract": "Part of the Vicmap Admin dataset series. This dataset contains Local Government Boundaries (LGA's) polygons. LGA's are as defined by Dept. for Victorian Communities (DVC).\nAligned to Road Network - Vicmap Transport.", "anzlicid": "ANZVI0803002507", "geonet_info_createdate": "2020-06-17", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5e03c115ddd2df0ed259e59151213fec90560a86", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "bb17b3e0-e3d1-557a-8113-615dcbbcc521", "publicationdate": "2018-04-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-11-12", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Salvage and Translocation Protocol for the Biodiversity Conservation Strategy", "alttitle": "MSA_BCS_SLTRP", "tempextentbegin": "2013-07-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2013-08-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;planned", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36731\", \"uuid\": \"bb17b3e0-e3d1-557a-8113-615dcbbcc521\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-05-13\", \"changeDate\": \"2020-11-12\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "unclassified", "defaulttitle": "Salvage and Translocation Protocol for the Biodiversity Conservation Strategy", "abstract": "The Biodiversity Conservation Strategy for Melbourne's Growth Corridors (BCS) prepared as part of the Melbourne Strategic Assessment specifies that salvage and/or translocation of plants and animals may be required before the removal of native vegetation or habitat for urban development in Melbourne's growth corridors. \n\nThis dataset identifies land parcels under the Biodiversity Conservation Strategy that may be subject to the salvage and translocation process, as defined by the Salvage and Translocation Protocol for Melbourne's Growth Corridors (DEPI, 2013).\n\nSalvage may be required for the following target species and communities listed under the Commonwealth Environment Protection and Biodiversity Conservation Act 1999 (EPBC Act) and Victorian Flora and Fauna Guarantee Act 1988 (FFG Act):\n- Spiny Rice-flower, Matted Flax-lily and other grassland plants\n- Striped Legless Lizard\n- Seasonal Herbaceous Wetlands (Freshwater) of the Temperate Lowland Plains.\n\nLand parcels which contain a set of conditions for each of the above species/communities will trigger a salvage and translocation procedure to be enacted in accordance with the Protocol.", "anzlicid": "ANZVI0803005057", "geonet_info_createdate": "2020-05-13", "revisiondate": "2020-11-12", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "541009da6d0fef8c3c4ce86d8942eb6f871a5b49", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "7bf2441a-a703-597f-9bca-79ace7de179e", "publicationdate": "2023-01-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-08-26", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "BORES_PUBLIC or non confidential bores. As per data.vic, spatial datamart and fme. 2010 Microsoft Access copy exists in Earth Resources Publication system", "type": "dataset", "title": "Boreholes (from Earth Resource's database)", "alttitle": "BORES", "tempextentbegin": "1869-12-31T14:20:08+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:07:16+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;economy;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34526\", \"uuid\": \"7bf2441a-a703-597f-9bca-79ace7de179e\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-08-26\", \"changeDate\": \"2019-08-26\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Boreholes (from Earth Resource's database)", "abstract": "Contains mineral, petroleum, coal & groundwater boreholes. Minerals boreholes (and, to a lesser extent, petroleum wells) are actively maintained in the dataset. The custodial role for groundwater and coal boreholes is in the private sector, and these parts of the dataset are not actively maintained.\n\nMineral, petroleum and coal boreholes are updated on an irregular basis: Mineral borehole data are supplied by individual companies usually when their overlaying Exploration Licence expires; Coal borehole data have been updated from GHD Pty Ltd's (formerly GEO-ENG) data. Groundwater boreholes have not been updated since 1990 when the custodial role was given to Sinclair Knight Merz Pty Ltd (SKM) - refer to BORES100.\n\nThe origin of data varies considerably. Prior to 1980 borehole data was recorded by the Geological Survey of Victoria (GSV) on 1 inch:1 mile plans and hard-copy borehole records. This included data for water boreholes drilled by public and private sector, all boreholes drilled by GSV, petroleum wells, and some private-sector mineral exploration boreholes. In areas where drilling was of particularly high density, locations were recorded on these plans as a single point or as occurring within an outlined area.\n\nThe parish was traditionally used as the primary classifier for numbering boreholes. Some minor anomalies exist where a borehole and parish boundary may be on one side of a road or the other, or where parish boundaries have been moved.\n\nIn 1980 the location data was moved to 1:100,000 AMG plans. In the mid-1980s a program of electronic capture commenced. Borehole locations were digitised from the 1:100,000 plans with an accuracy of +/-300m. For the areas of high borehole density where boreholes were plotted on a single point, often only the first ten and last ten were recorded in the database. Boreholes whose parish was known but exact location was unknown were also recorded, but do not have a location.\n\nGroundwater boreholes:\nExtensive hydrological data was originally held by GSV, but these data are now held by SKM. \n\nCoal boreholes:\nLocation and lithological data for coal boreholes has been provided by Geo-Eng and the old State Electricity Commission of Victoria.\n\nMineral exploration boreholes:\nThe capture of mineral exploration borehole data from open-file exploration reports commenced in 2001 and will progressively cover the state over a number of years. The data are being captured at an whatever accuracy the source allows, typically between 20 and 250 m. Assay data have been consistently captured. Other downhole data, such as lithology, have not been consistently captured.\n\nTenement information for the small number of private-sector mineral exploration boreholes captured prior to 2001 was lost in the migration from the original VAX database to the current Ingres corporate database.\n\nHeavy mineral sand exploration: complete coverage up for data up to April 2002; updates planned for late 2003.\nOther mineral exploration: coverage as follows - \n St Arnaud, Charlton, Wedderburn 1:100 000 mapsheets - 31 March, 2001;\n Dunolly, Rupanyup, Donald, Ararat, Grampians, Willaura 1:100 000 mapsheets -\t30 August 2001;\n Warburton 1:250 000 mapsheet - 30 June 2002 (available mid-2003);\n Ballarat, Creswick, Skipton, Beaufort 1:100 000 mapsheets - 30 June 2002 (available mid-2003);\n Bendigo 1:250 000 - 31 October 2002 (available mid-2003)\n\n\nGroundwater data can be obtained at the following site \nhttp://www.dse.vic.gov.au/waterdata", "anzlicid": "ANZVI0803002211", "geonet_info_createdate": "2019-08-26", "revisiondate": "2019-08-26", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e83944fdd4817e32c2b7c243d789f9b744ce809e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1b8b243f-fc5e-58cc-891f-2b465b830df5", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-11-03", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "type": "dataset", "title": "Seismic Cross Section Lines", "alttitle": "XSEC_SEIS", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2004-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36666\", \"uuid\": \"1b8b243f-fc5e-58cc-891f-2b465b830df5\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-11-03\", \"changeDate\": \"2016-11-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Seismic Cross Section Lines", "abstract": "Seismic Cross Section Lines. The lines are an index of traces along Seismic Sections where special cross sectional diagrams have been produced.", "anzlicid": "ANZVI0803002970", "geonet_info_createdate": "2016-11-03", "revisiondate": "2016-11-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "11498ab61d4882e4160d0e382f63d96ae387d1e3", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "4a25d76d-7f86-5586-9d60-4c595a2ccd15", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "2014 Flood Model Extents", "alttitle": "FLOOD_MODEL_EXTENT", "tempextentbegin": "2013-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-03-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34527\", \"uuid\": \"4a25d76d-7f86-5586-9d60-4c595a2ccd15\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-09-21\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2014 Flood Model Extents", "abstract": "Polygon features showing the geographic footprint of flood studies carried out in Victoria from 2000 - 2014.\nInformation in this layer is a snapshot of flood studies as at 2014.\n\nEach extent has a unique ID which is derived from the name and date of the study. \n\nThe name of the study, company name and the date of the study are recorded in the attributes.\n\nThis is Polygon data or a Shapefile.", "anzlicid": "ANZVI0803005297", "geonet_info_createdate": "2015-09-21", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "755abe9be87f03177937c04755cb8eb73b6b7ec9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6794c4c3-23ea-5bf2-99c6-0440deec348d", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Planned Burns 2010/11 - 2012/13", "alttitle": "BURNPLAN11", "tempextentbegin": "2010-04-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:13+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "environment;biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36659\", \"uuid\": \"6794c4c3-23ea-5bf2-99c6-0440deec348d\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-08\", \"changeDate\": \"2017-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "unclassified", "defaulttitle": "Planned Burns 2010/11 - 2012/13", "abstract": "Last updated 31/07/2010\n\nThis dataset represents the spatial extent of prescribed burns planned for ignition on Public Land in Victoria. This data is prepared annually for prescribed burns planned for the immediate three-year period. This data set also includes landscape burns which are symbolised in the Fireplan map service with a cyan outline.", "anzlicid": "ANZVI0803004148", "geonet_info_createdate": "2017-03-08", "revisiondate": "2017-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "3ac5e0802e2229dede833aa83675c22666793591", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "11758f80-10e7-5fbc-a575-bbf8a94b68c9", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "product", "title": "Regolith Landform Interpretations - Earth Resources Spatial Data Collection for the Datamart.", "alttitle": "DM_MIN_REGO_LF_INTERP", "tempextentbegin": "1998-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:07:32+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36721\", \"uuid\": \"11758f80-10e7-5fbc-a575-bbf8a94b68c9\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Regolith Landform Interpretations - Earth Resources Spatial Data Collection for the Datamart.", "abstract": "Datasets related to Regolith. Observation Points, regional and detail types and boundaries, regional duricrust, regional radiometric signatures.\nCollected for Earth Resources within DSDBI", "anzlicid": "ANZVI0803003386", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "be94f082a8f6a68c20264b8a636e5e274098601e", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6c79d13c-ffb3-538b-9157-37a7df48827a", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Hydrography Structure Type Line Table", "alttitle": "HY_STRUCTURE_TYPE_LINE", "tempextentbegin": "2023-01-24T00:07:32+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:32+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36722\", \"uuid\": \"6c79d13c-ffb3-538b-9157-37a7df48827a\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Hydrography Structure Type Line Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003190", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2257ca91a1b791f63eed51f59694317af1f545e0", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6e41efa6-72a5-5673-b4ca-14e435d848f8", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-04-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Hunting Area Dataset Permitted Hog Deer Hunting", "alttitle": "HUNT25_HOG_DEER", "tempextentbegin": "2018-06-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:58+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36812\", \"uuid\": \"6e41efa6-72a5-5673-b4ca-14e435d848f8\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-06\", \"changeDate\": \"2022-04-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Hunting Area Dataset Permitted Hog Deer Hunting", "abstract": "This hunting area dataset depicting areas where Hog Deer hunting is permitted, have boundaries largely derived from the PLM25 dataset which are supplemented with additional boundaries based on legislative restrictions on hunting. The dataset identifies the conditions under which hunting of given Game and Pest animal groups and species is permitted. \nThe rules used to produce this product were developed by the legislation unit with the Land Management Division of the Department of Environment , Land, Water and Planning in consultation with the Game Management Authority, VicPolice, Parks Victoria and other relevant government authorities. These rules are based on requirements in the Forest Act, National Park Act, Crown land (Reserve) Act, Land Act, Wildlife Act.\nNote : Hunters are personally responsible for acting in accordance with the Firearms Act 1996\n(including informing themselves about any prohibited locations within the areas shown on this map)\nand other relevant laws; obtaining the required hunting licence; and for hunting only within season.\nMore information can be obtained from the Game Management Authority's web site.\n\nVicmap Basemap Services | State Government of Victoria | @DELWP", "anzlicid": "ANZVI0803005899", "geonet_info_createdate": "2019-11-06", "revisiondate": "2022-04-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7849361888c27e16838742aaddbbb567fc17e843", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "540498e5-728c-52e4-a6fd-f9a0231d3a0c", "publicationdate": "2019-03-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "VAF_EXTENT_106UTD", "alttitle": "VAF_EXTENT_106UTD", "tempextentbegin": "2012-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2013-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36823\", \"uuid\": \"540498e5-728c-52e4-a6fd-f9a0231d3a0c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "VAF_EXTENT_106UTD", "abstract": "This dataset relates to the Victorian Aquifer Framework (VAF) 3D Surface for the Upper Tertiary Aquitard. It represents the mapped extent of the aquitard.\n\nPlease refer to the master metadata record VAF 'Victorian Aquifer Framework (VAF) 3D Surfaces' for detailed information.", "anzlicid": "ANZVI0803008454", "geonet_info_createdate": "2019-11-19", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fb3983220c84a55a884a108288aec847c636092f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d6694979-f301-5036-b324-e6f89c5d94fd", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Elevation - Ground Type Polygon", "alttitle": "EL_GRND_TYPE_AREA_POLYGON", "tempextentbegin": "2023-01-24T00:08:02+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:02+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;environment;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34682\", \"uuid\": \"d6694979-f301-5036-b324-e6f89c5d94fd\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2019-09-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Elevation - Ground Type Polygon", "abstract": "This layer is part of Vicmap Elevation 10-20 Contours & Relief, a subset of Vicmap Elevation. It contains polygon features representing\nIncludes. Rocky Outcrops, Sand & Surface Area void", "anzlicid": "ANZVI0803002893", "geonet_info_createdate": "2019-09-04", "revisiondate": "2019-09-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f3d3710305b34d1ac01ea1e30336614a592f1c43", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "95232ca3-135d-5940-a231-a7ef13858834", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Crown Land Managment Tenure Type Table", "alttitle": "CL_TENURE_TYPE", "tempextentbegin": "2023-01-24T00:07:42+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:42+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36755\", \"uuid\": \"95232ca3-135d-5940-a231-a7ef13858834\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Crown Land Managment Tenure Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003222", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "20237650addd033066a089611d810abc40bbb63b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8820ef11-ed0b-5c0d-ad4b-79a4953f56c2", "publicationdate": "2022-06-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-05-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "WMS", "type": "dataset", "title": "Melbourne Strategic Assessment Extent", "alttitle": "MSA_EXTENT", "tempextentbegin": "2013-04-16T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:43+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36759\", \"uuid\": \"8820ef11-ed0b-5c0d-ad4b-79a4953f56c2\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-05-13\", \"changeDate\": \"2020-05-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Melbourne Strategic Assessment Extent", "abstract": "This dataset provides the spatial extent of the Melbourne Strategic Assessment.\n\nThe State Government's program, as define in the 'Delivering Melbourne's Newest Sustainable Communities - Program Report' (DPCD, 2009), means the Urban Growth Boundary Review for Melbourne for the development of land, including associated transport infrastructure, within the following areas:\n> investigation areas for the expansion of the 2005 Urban Growth Boundary\n> areas inside the 2005 Urban Growth Boundary for which a planning scheme amendment to introduce a Precinct Structure Plan had not commenced as at 26 May 2009 (the existing 28 precincts)\n> areas in the outer Metropolitan Ring Transport Corridor/E6 Road Reservation and the Regional Rail Link corridor between west of Werribee and Deer Park\n\nIn accordance with the definition of the Program, this includes Melbourne's four growth areas within the expanded 2010 Urban Growth Boundary given effect by Planning Scheme Amendment VC68. These growth areas and the 28 precincts comprise: \n> Melbourne's western growth area - Melton and Wyndham \n> Melbourne's north-western growth area - Sunbury \n> Melbourne's northern growth area - Hume, Whittlesea and Mitchell \n> Melbourne's south-eastern growth area - Casey and Cardinia.", "anzlicid": "ANZVI0803004901", "geonet_info_createdate": "2020-05-13", "revisiondate": "2020-05-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e04bd50a34a9ba17a32ae032c7395db8f1c35b96", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7c8b2d43-826c-578b-abc5-05e97585c46b", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-11-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital: ArcView, ArcInfo & MapInfo", "type": "dataset", "title": "Victorian Coal Fields", "alttitle": "COALINVFLDS", "tempextentbegin": "2007-02-06T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2023-01-24T00:07:46+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36771\", \"uuid\": \"7c8b2d43-826c-578b-abc5-05e97585c46b\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-09\", \"changeDate\": \"2015-11-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Coal Fields", "abstract": "Details the location and attributes of each coalfield in Victoria. \nSpatial accuracy defined as attribute \"Loc_Acc\".\nThis dataset has 3 lookup tables: COALINVFLDS_BLACK and COALINVFLDS_BROWN. Note that 1 field can have many seams. Also COALINVFLDS_WATERUSE LUT joins to this dataset.\nFor all COALINV data the LUT table COALINV_KEY contains the key info for each dataset.\n\nData is from the \"Victorian Coal - A 2006 Inventory of Resources\"\nAvailable via the online store\nOn Line store", "anzlicid": "ANZVI0803003497", "geonet_info_createdate": "2015-11-09", "revisiondate": "2015-11-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e02719fd5e4208cc9055d99373a2eb5bd3ddcee4", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6b587fd5-1b2e-513c-a9ba-3ce5ba2abcc5", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - Parish Polygon", "alttitle": "PARISH_POLYGON", "tempextentbegin": "2023-01-24T00:07:47+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:47+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36774\", \"uuid\": \"6b587fd5-1b2e-513c-a9ba-3ce5ba2abcc5\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - Parish Polygon", "abstract": "Part of the Vicmap Admin dataset series. This layer contains polygon features delineating parish boundaries as defined by CLM, Dept. of Sustainability & Environment.", "anzlicid": "ANZVI0803002716", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c57e7c70730dc3d6809acdfbf7d53a3d56ce75ff", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c9055ecd-a590-505f-a43f-7f71c747afef", "publicationdate": "2023-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-04-24", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Current Retention Licences", "alttitle": "RL", "tempextentbegin": "2012-01-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:07:56+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34665\", \"uuid\": \"c9055ecd-a590-505f-a43f-7f71c747afef\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-04-24\", \"changeDate\": \"2015-04-24\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Current Retention Licences", "abstract": "Regions showing the extent of mineral Retention Licences currently lodged with Earth Resources Regulations.\nThe boundaries are derived from a combination of entering graticular boundaries (exact MGA co-ordinates) and digitizing along areas of land status (Earth Resources version of plm25) which are unable to be mined or explored. Refer to the Mineral Resources (Sustainable Development) Act (MRSDA) 1990 for more detail.", "anzlicid": "ANZVI0803004652", "geonet_info_createdate": "2015-04-24", "revisiondate": "2015-04-24", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "738d66457dac31ec80a1852c1cdd75eb65af16a9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a3fd9476-587b-517e-8b4d-0d0128c4a1ed", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-05-30", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcGIS shapefile", "type": "dataset", "title": "Land units of the Victorian Wimmera", "alttitle": "WIMMERA_LRA", "tempextentbegin": "2003-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2006-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34684\", \"uuid\": \"a3fd9476-587b-517e-8b4d-0d0128c4a1ed\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-30\", \"changeDate\": \"2019-05-30\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Land units of the Victorian Wimmera", "abstract": "This dataset is the primary data output from the Wimmera land resource assessment project undertaken in 2004-06. It contains soil and land information at a scale of 1:100 000 for all freehold land in the Wimmera region of Victoria.\n\nThe dataset was developed by the project \"A Land Resource Assessment of the Wimmera Region\" conducted by Robinson et al. (2006). This project was undertaken by DPI's PIRVic Division for the Wimmera Catchment Management Authority to provide consistent land resource information across the region. It utilised data from existing soil surveys at varying scales and intensity conducted over the previous 60 years, remote sensing information and additional field work to develop updated 1:100 000 scale soil/landform mapping across the region.\n\nThe nominal scale of the dataset is appropriate for broadscale assessment of land capability and regional planning.\n\nAt the map scale of this dataset soil-landform units are not homogeneous. For each defined soil-landform unit, soil types were identified and an assessment of their risk of degradation (compaction, erosion, sodicity and acidity) was made.\n\nImportantly it should be noted that soil attributes (for example texture, sodicity, pH) are expected to vary between acquired soil sites. As the variability of soil attributes within a map unit is difficult to predict, it is important to note that representative soils should be used as a guide only.\n\nThe study report describing the project methodology and dataset attributes is available from the Victorian Resources Online website.\n\nDOI 10.4226/92/58e729e8aea3e", "anzlicid": "ANZVI0803005180", "geonet_info_createdate": "2019-05-30", "revisiondate": "2019-05-30", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ad3f62802af6b7591f63482f3177568cdf2e9eba", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7adbc995-a891-5857-b296-c288170b5aac", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available on request", "type": "dataset", "title": "Melbourne Metro Tunnel Project Underground Stations", "alttitle": "MTP_EES_UNDERGROUND_STATIONS", "tempextentbegin": "2016-04-30T14:00:00+00:00", "resowner": "Melbourne Metro Rail Authority", "tempextentend": "2023-01-24T00:08:04+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34689\", \"uuid\": \"7adbc995-a891-5857-b296-c288170b5aac\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-03-13\", \"changeDate\": \"2022-02-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Melbourne Metro Tunnel Project Underground Stations", "abstract": "This polygon layer represents the location of underground stations for the Melbourne Metro Tunnel Project.\n\nThe Concept Design shown in this data reflects the indicative design shown in the Project's Environmental and Effects Statement (EES) which was publicly circulated with the community in May 2016.\n\nThe Metro Tunnel Project comprises two twin 9 kilometre tunnels with five new underground stations, including two city stations directly connected to Flinders Street and Melbourne Central. It will connect the Sunbury and Cranbourne / Pakenham lines for the first time, creating a new end-to-end train line through the inner city. Construction of the Metro Tunnel began in 2017 and it is due to be completed by 2026.\n\nThe Metro Tunnel Project comprises various works packages. As the project progresses and designs are further developed and approved, an updated dataset will be made available.", "anzlicid": "ANZVI0803005821", "geonet_info_createdate": "2019-03-13", "revisiondate": "2022-02-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "065f3d342e9b8d25a736bb4890dc1020d4ee7bfd", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "90747f51-f03d-510a-8023-313ff87810e7", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Vicmap Lite Scale Use Table", "alttitle": "VL_SCALE_USE", "tempextentbegin": "2023-01-24T00:08:06+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:06+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34694\", \"uuid\": \"90747f51-f03d-510a-8023-313ff87810e7\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Vicmap Lite Scale Use Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003545", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "41c763cd033fd061411d393172257b3189687ed3", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "23a026db-0a7a-5edd-a536-a6f47e4df9f5", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo, MapInfo and ArcView.", "type": "dataset", "title": "Mineral Points (1:1,000,000)", "alttitle": "MINERALP", "tempextentbegin": "1989-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "1992-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36740\", \"uuid\": \"23a026db-0a7a-5edd-a536-a6f47e4df9f5\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Mineral Points (1:1,000,000)", "abstract": "Location of known mineral occurrences and deposits presented in the 1:1,000,000 Minerals of Victoria map compiled in 1993 by the Geological Survey of Victoria.\n\nNOTES CONCERNING MAPSHARE DISPLAY\nWill only display at scales smaller than 1:500,000", "anzlicid": "ANZVI0803002239", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "cc67912f9ec947d67a0e1d09748f1b01830f0c25", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9ffa546c-ea9d-56f1-be0e-c43530775337", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Bare Ground polygon features", "alttitle": "ISC2010_BARE_GROUND", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34608\", \"uuid\": \"9ffa546c-ea9d-56f1-be0e-c43530775337\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Bare Ground polygon features", "abstract": "The ISC2010_BARE_GROUND polygon features represent the parts of the assessed bank face that do not have vegetation cover. The bank face is defined as the area between the Top and Toe of the bank. Areas of Bare Ground less than 5m2 have been removed so that data volume is manageable.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005126", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b22d7086f56de27742d4e21e47a91236760c19e9", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "52624f57-dd6e-5d6f-bf4d-70ba30d30892", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Vicnames Feature Table", "alttitle": "GNR_FEATURE", "tempextentbegin": "2023-01-24T00:07:40+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:40+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34613\", \"uuid\": \"52624f57-dd6e-5d6f-bf4d-70ba30d30892\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Vicnames Feature Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003230", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "028873aa0da34f58f4014a2d310f76d3691e0262", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5b60fa0b-7a53-5a0d-824a-d17d1e3920d1", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Boundary of Fire Severity Classes (FIRE_SEV03) for Alpine fires January/February 2003.", "alttitle": "FIRE_SEV03BND", "tempextentbegin": "2023-01-24T00:07:41+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:41+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36753\", \"uuid\": \"5b60fa0b-7a53-5a0d-824a-d17d1e3920d1\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-08\", \"changeDate\": \"2022-02-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Boundary of Fire Severity Classes (FIRE_SEV03) for Alpine fires January/February 2003.", "abstract": "The Victorian Alpine Fires 2003 were ignited on 8th January 2003 by a series of lightning strikes across north-eastern Victoria. This layer depicts the boundary of Landsat TM7 based fire severity mapping for this fire (FIRE_SEV03). This layer does not necessarily co-incide completely with the actual fire boundary which is held as fire number 39 in the fire100_2003 fire history dataset.", "anzlicid": "ANZVI0803002781", "geonet_info_createdate": "2017-03-08", "revisiondate": "2022-02-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "25204ad58aa095859223e84e69e5ac25f368ea75", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d1c9b14d-8509-5f62-bef7-b6ba9bbfb36a", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Modelled Forest Classes", "alttitle": "OGMAP100", "tempextentbegin": "1997-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:09+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36849\", \"uuid\": \"d1c9b14d-8509-5f62-bef7-b6ba9bbfb36a\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-08\", \"changeDate\": \"2017-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Modelled Forest Classes", "abstract": "This layer identifies categories of modelled forest categories determined through an analysis of readily available authoritative forest disturbance datasets on public land. The dataset identifies areas likely to contain old-growth forest, amongst other forest categories.", "anzlicid": "ANZVI0803002320", "geonet_info_createdate": "2017-03-08", "revisiondate": "2017-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1a7f7e5437e1ba9c0557a7574e1d6b0ef1629efc", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "74bd786e-b010-58fd-8c52-5caef06d0918", "publicationdate": "2020-04-08", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-04-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Comprehensive, Adequate and Representative (CAR) Reserve for the Regional Forest Agreements", "alttitle": "CAR_RESERVE_2020", "tempextentbegin": "2020-03-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:11+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;planned", "topiccat": "biota;farming;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34710\", \"uuid\": \"74bd786e-b010-58fd-8c52-5caef06d0918\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-04-08\", \"changeDate\": \"2020-04-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "unclassified", "defaulttitle": "Comprehensive, Adequate and Representative (CAR) Reserve for the Regional Forest Agreements", "abstract": "The CAR Reserve dataset is derived from the PLM25 and FMZ100 datasets that were extracted in December 2019 and represents the approximate location and extent of areas reserved in dedicated and informal reserves, current as at 31 March 2020. The dedicated reserve reflects the spatial extent of Parks and Reserves from PLM25. The informal reserve reflects spatial extent of Special Protection Zone (SPZ) from the FMZ100 layer. Values protected by prescription, which form part of the informal reserve component of the CAR reserve are not presented in the dataset as values protected by prescription are subject to field verification.", "anzlicid": "ANZVI0803008634", "geonet_info_createdate": "2020-04-08", "revisiondate": "2020-04-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ef4efde2bc7868d91acbefa54095a7317e0ca8d0", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "14d7189a-a1ac-5a29-8e42-f4237b795ab0", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-05-30", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcGIS feature class", "type": "dataset", "title": "Landform component mapping of north west Victoria", "alttitle": "NW_LANDFORM", "tempextentbegin": "2009-06-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2011-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "farming;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34635\", \"uuid\": \"14d7189a-a1ac-5a29-8e42-f4237b795ab0\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-30\", \"changeDate\": \"2019-05-30\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Landform component mapping of north west Victoria", "abstract": "A polygonal dataset of mapped landforms in the Victorian Mallee.\n\nThe dataset was created from the disaggregation of land systems originally defined by Rowan and Downes (1963). The disaggregation primarily involved an analysis of a 10 metre grid Digital Elevation Model (DEM) provided by the Department of Sustainability and Environment. The analysis included the use of the UPNESS index from the Fuzzy Landscape Analysis GIS (FLAG) model, Multi-resolution Valley Bottom Flatness (MrVBF) index, DEM derivative surfaces (such as slope, curvature, aspect and relative elevation) in combination with expert opinion, field observations and other supplementary datasets (such as aerial imagery, radiometrics, vegetation and GMU).\n\nThe dataset was created in a staged approach through 4 project phases. The project was sponsored by the Mallee Catchment Management Authority with funding from the Federal government's Caring for our Country initiative.\n\nThe final project report, \"Disaggregation of landform components within land systems of the Mallee\", and the Rowan and Downes (1963) report , \"A study of the land of north-western Victoria\", should be referred to when analysing or utilising this dataset.\n\nThe landform component mapping was supplemented and refined during a \"Wind erosion susceptibility mapping\" project conducted in 2011. Details of changes are included in the associated project report (refer to that metadata record).", "anzlicid": "ANZVI0803005564", "geonet_info_createdate": "2019-05-30", "revisiondate": "2019-05-30", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "85d11cac67da459f3a25c87dacb1ca1800b9fd40", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "b4d00a3c-2c20-591e-a5b3-6c8e6e5e4bda", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Hydrography Substance Extracted Table", "alttitle": "HY_SUBSTANCE_EXTRACTED", "tempextentbegin": "2023-01-24T00:07:47+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:47+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36776\", \"uuid\": \"b4d00a3c-2c20-591e-a5b3-6c8e6e5e4bda\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Hydrography Substance Extracted Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003191", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "447c1ce12ed44d987ad47fbc109ca5e9ca8732df", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e7252715-ec91-5956-bea0-b8ff496a6653", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo coverage/ArcView shapefile/MapInfo table", "type": "dataset", "title": "Final VEAC boundary for the River Red Gum Forests Investigation", "alttitle": "RIVER_RED_GUM_BND", "tempextentbegin": "2006-03-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2006-05-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36778\", \"uuid\": \"e7252715-ec91-5956-bea0-b8ff496a6653\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-08\", \"changeDate\": \"2017-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Final VEAC boundary for the River Red Gum Forests Investigation", "abstract": "This boundary has been created at 1:25,000 showing the River Red Gum Forests Investigation, for the Victorian Environmental Assessment Council.\nThe Minister, under Section 15 of the Victorian Environmental Assessment Council Act 2001 required VEAC to carry out an investigation of the public land of Victoria\u0092s River Red Gum Forests occurring on public land in northern Victoria. The area investigated was the river red gum ecosystem stretching from the South Australian border in the west to Wodonga in the north-east along the Murray River and down its major tributaries.", "anzlicid": "ANZVI0803003099", "geonet_info_createdate": "2017-03-08", "revisiondate": "2017-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f953b602c3f8d198caa05e995a79aa00c3a2838b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "739a18cc-d98f-5da7-9b72-b6426aad3c8d", "publicationdate": "2022-12-03", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-11", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Crown Land Tenure - Government Road Polygon", "alttitle": "GOV_ROAD_POLYGON", "tempextentbegin": "1990-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:13+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34716\", \"uuid\": \"739a18cc-d98f-5da7-9b72-b6426aad3c8d\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-08-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Crown Land Tenure - Government Road Polygon", "abstract": "Part of the Vicmap Crown Land Tenure dataset series. This dataset plays a key role in the management of Victoria's Crown land. It is being created (June 2003 - Feb 2004) from migrating LCMP layers into the Vicmap structure. At this stage it does not cover Metropolitan Melbourne.\n\nThe layer provides information about Crown Roads.\n\nThe dataset is continually maintained, obtaining maintenance from authoritative sources within State Government.\n\nGOV_ROAD_POLYGON is a polygon layer depicting Government Roads including roads as laid out on Parish Plans & proclaimed as Road in Government Gazettes.\n\nThe Vicmap Parcel and VM_CROWN_SIMPLE layer is also recording \"G\" CROWN_STATUS Parcels that are Government Roads parcelled by the Crown Land Registry unit.", "anzlicid": "ANZVI0803002917", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-08-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bd1c55c4760cdb61d7e52b6aa7af738179beb939", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c0559b38-c8b7-5f05-89ca-02c878345c1d", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Victorian Bushfires Severity Map 2009 (Polygons)", "alttitle": "FIRE_SEV09_POLY", "tempextentbegin": "2009-03-26T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2009-07-16T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34726\", \"uuid\": \"c0559b38-c8b7-5f05-89ca-02c878345c1d\", \"schema\": \"iso19115-3\", \"createDate\": \"2009-11-17\", \"changeDate\": \"2022-02-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Bushfires Severity Map 2009 (Polygons)", "abstract": "The vector dataset is based on the filtered version (3x3 pixel filter) of the class fire severity classification raster product as derived from a classification of a SPOT and Landsat TM woodlands fire severity indexes to map the fire severity of the February 2009 Victorian bush fires using ground control and air photograph analysis provided by DSE to Ecowise for validation. The noise filtered classification is the final product derived using SPOT 4/5 satellite imagery with Landsat 5 imagery used on small areas where cloud or where SPOT imagery coverage was unavailable. . The five of the eight classes have been labeled based on severity classes provided with the ground survey data. The remaining classes account for vegetation structures with no specific burn severity assigned. The area covered by the classification is approximately 460 by 300 km and is clipped to the extents of the fire effected lands (approximately 400 000 hectares).", "anzlicid": "ANZVI0803003677", "geonet_info_createdate": "2009-11-17", "revisiondate": "2022-02-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "95e2a311d778e242d095d3933009d15a89e6a2c2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "72c744a8-6abc-58d6-82f8-b25b55cec63c", "publicationdate": "2018-07-17", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-06-26", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "GDA94, decimal degrees based on GRS80", "type": "dataset", "title": "Coastal Protection Structures", "alttitle": "COAST_PROTECTION_STRUCT_LINE", "tempextentbegin": "2023-01-24T00:08:17+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:17+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "environment;oceans;geoscientific information;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34728\", \"uuid\": \"72c744a8-6abc-58d6-82f8-b25b55cec63c\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-06-26\", \"changeDate\": \"2020-06-26\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "unclassified", "defaulttitle": "Coastal Protection Structures", "abstract": "A dataset depicting coastal protective structures captured by the Department of Primary Industries for the Future Coasts Program in 2011 using aerial photography available in the DSE image repository, known as the Coordination Image Program (CIP). This dataset was further reviewed as part of the Future Coasts SECAP project (2011/2012). Information on the condition of a number of protection structures is available as a separate (restricted) database that links to this spatial dataset.\n\nThe data was reviewed in 2017, adding asset IDs to enable linking to asset management data.", "anzlicid": "ANZVI0803004743", "geonet_info_createdate": "2020-06-26", "revisiondate": "2020-06-26", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "509ebd8db709d3862f717520f5e6948f39556962", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ca6894d6-87fe-563c-a86c-c81d6bbbb64d", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-03-03", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Features - Geomark Polygon", "alttitle": "GEOMARK_POLYGON", "tempextentbegin": "2014-08-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:47+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;utilities communication;location;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34827\", \"uuid\": \"ca6894d6-87fe-563c-a86c-c81d6bbbb64d\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-03-03\", \"changeDate\": \"2016-03-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Features - Geomark Polygon", "abstract": "Polygon location of named or could be named Victorian topographic features. Inclusions are rivers, water bodies, transport (excluding roads), geographic features and most of the Vicmap Features of Interest polygon content. These features all reside within the Vicmap Framework Products. \nFeatures are combined to create one piece of geometry based on name and type. \nPolygons represent larger area features that have been captured in more detail. Examples include lakes, sports grounds, botanic gardens, municipal reserves and shopping precincts.", "anzlicid": "ANZVI0803005315", "geonet_info_createdate": "2016-03-03", "revisiondate": "2016-03-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "68a3e435f8c5b4dffceb8d74bee1d4ba3b96a740", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "41e89498-e053-5ad5-ad73-466b0d8a15b6", "publicationdate": "2022-11-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-28", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcVIew", "type": "dataset", "title": "Hydrogen facility Locations for Victoria Properties", "alttitle": "REN_HYDROGEN_FARM_PROPERTIES", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-03-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46250\", \"uuid\": \"41e89498-e053-5ad5-ad73-466b0d8a15b6\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-25\", \"changeDate\": \"2022-07-28\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Hydrogen facility Locations for Victoria Properties", "abstract": "Hydrogen facility Locations for Victoria.\n\n\nThe locations are a single polygon for the centre of the Hydrogen Facility", "anzlicid": "ANZVI0803008906", "geonet_info_createdate": "2021-03-25", "revisiondate": "2022-07-28", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "44dae927b6713483d835c8f8266a8048bde0c134", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "fbf40d11-6d85-526b-af0d-1682b5140314", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - State Assembly Polygon 1991", "alttitle": "STATE_ASSEMBLY_1991", "tempextentbegin": "1996-12-31T13:00:00+00:00", "resowner": "Victorian Electoral Commission", "tempextentend": "2001-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34828\", \"uuid\": \"fbf40d11-6d85-526b-af0d-1682b5140314\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - State Assembly Polygon 1991", "abstract": "State wide data showing Lower House boundaries and names 1991. These are the Legislative Assembly Electoral Districts referred to as the Lower House Boundaries.\n\nSUPERSESED dataset by VMADMIN_STATE_ASSEMBLY_2001", "anzlicid": "ANZVI0803002613", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "92b523c821b879e08bffd04f8b8f65828607417a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "2a497a3e-ce4a-5304-b263-5fd962a97129", "publicationdate": "2022-11-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-28", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcVIew", "type": "dataset", "title": "Pumped hydro facility Locations for Victoria Properties", "alttitle": "REN_PUMPED_HYDRO_FARM_PROPERTY", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-03-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46251\", \"uuid\": \"2a497a3e-ce4a-5304-b263-5fd962a97129\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-25\", \"changeDate\": \"2022-07-28\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Pumped hydro facility Locations for Victoria Properties", "abstract": "Pumped hydro facility Locations for Victoria.\n\n\nThe locations are a single polygon for the centre of the Pumped hydro Facility", "anzlicid": "ANZVI0803008908", "geonet_info_createdate": "2021-03-25", "revisiondate": "2022-07-28", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d315f21770e9431e5eaf569ad650eb8dd1b2fe56", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "bd063785-a8aa-54ea-867a-8237c8f64527", "publicationdate": "2021-03-30", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "MapInfo, ESRI Shape", "type": "dataset", "title": "Urban Development Program - Proposed Industrial Areas 2019", "alttitle": "IND2019_PROPOSED_AREAS", "tempextentbegin": "2019-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46260\", \"uuid\": \"bd063785-a8aa-54ea-867a-8237c8f64527\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-29\", \"changeDate\": \"2022-08-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Urban Development Program - Proposed Industrial Areas 2019", "abstract": "Land identified as future industrial areas. Used in conjunction with Industrial land dataset.\nUrban Development Program (UDP).", "anzlicid": "ANZVI0803008910", "geonet_info_createdate": "2021-03-29", "revisiondate": "2022-08-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "87005b80109610f8427c472f4abe461a7deb3ce5", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2f87100a-528b-54f7-9f15-d2c965a510cd", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Framwork Shoreline Datum Table", "alttitle": "FR_SHORELINE_DATUM", "tempextentbegin": "2023-01-24T00:08:52+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:52+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34843\", \"uuid\": \"2f87100a-528b-54f7-9f15-d2c965a510cd\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Framwork Shoreline Datum Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003228", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8dc35b5a2f0624d4aa1be7317825fa137154d344", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "052153d3-372e-5078-8150-1838b0dc4807", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-04-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Hunting Area Dataset Permitted Pest Hunting", "alttitle": "HUNT25_PESTS", "tempextentbegin": "2018-06-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:37+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34793\", \"uuid\": \"052153d3-372e-5078-8150-1838b0dc4807\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-06\", \"changeDate\": \"2022-04-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Hunting Area Dataset Permitted Pest Hunting", "abstract": "This hunting area dataset depicting areas where Pest hunting (Red Fox, European Hare, European Rabbit, Goat, Pig, Wild Dogs) is permitted, have boundaries largely derived from the PLM25 dataset which are supplemented with additional boundaries based on legislative restrictions on hunting. The dataset identifies the conditions under which hunting of given Game and Pest animal groups and species is permitted. \nThe rules used to produce this product were developed by the legislation unit with the Land Management Division of the Department of Environment , Land, Water and Planning in consultation with the Game Management Authority, VicPolice, Parks Victoria and other relevant government authorities. These rules are based on requirements in the Forest Act, National Park Act, Crown land (Reserve) Act, Land Act, Wildlife Act.\nNote : Hunters are personally responsible for acting in accordance with the Firearms Act 1996\n(including informing themselves about any prohibited locations within the areas shown on this map)\nand other relevant laws; obtaining the required hunting licence; and for hunting only within season.\nMore information can be obtained from the Game Management Authority's web site.\n\nVicmap Basemap Services | State Government of Victoria | @DELWP", "anzlicid": "ANZVI0803005894", "geonet_info_createdate": "2019-11-06", "revisiondate": "2022-04-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a18d487561291975fb5002372e3666d9165f4b3a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "50e39451-8c46-5d9d-9088-4e2f3b29d80a", "publicationdate": "2021-02-25", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-23", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcVIew", "type": "dataset", "title": "Wind Farm Exclusion Zone", "alttitle": "WIND_FARM_EXCLUSION_ZONE", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-11-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46153\", \"uuid\": \"50e39451-8c46-5d9d-9088-4e2f3b29d80a\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-02-24\", \"changeDate\": \"2021-07-23\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Wind Farm Exclusion Zone", "abstract": "Wind Farm cables for Victoria\n\nWind energy has the potential to provide a significant proportion of Victoria's growth in renewable energy generation over the next coming years. The Government supports the development of wind energy in appropriate locations.\n\nPlanning Scheme Amendment VC82, make it clear where in Victoria a wind energy facility may be considered. The planning reform guarantees the residents of rural and regional Victoria certainty and fairness in wind farm planning decisions and ensures that communities are given a say in major planning applications.\n\nThe linear features of cabling that connects Turbines to substation", "anzlicid": "ANZVI0803008875", "geonet_info_createdate": "2021-02-24", "revisiondate": "2021-07-23", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "765d88846b83e7dc13db5a1998417aec97963ec4", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "cb8f5b10-2ee2-5a4d-9dd5-ad450a9718c3", "publicationdate": "2021-03-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Declared Distinctive Areas and Landscapes", "alttitle": "DECLARED_DALS", "tempextentbegin": "2019-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2020-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46164\", \"uuid\": \"cb8f5b10-2ee2-5a4d-9dd5-ad450a9718c3\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-01\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Declared Distinctive Areas and Landscapes", "abstract": "Areas indentified to safeguard the state's distinctive areas and landscapes\n\nThis layer is indicative only and designed only for cartographic use. It should not be used for any detailed analysis work.", "anzlicid": "ANZVI0803008877", "geonet_info_createdate": "2021-03-01", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "45edd3fe46fc3672123713d647974e9c119238a5", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9cdf7e9c-f65a-5bda-a176-e4ee39dcea72", "publicationdate": "2021-03-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-10", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcVIew", "type": "dataset", "title": "Electricity Transmission Substations", "alttitle": "ELECTRICITY_SUBSTATIONS", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-11-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46165\", \"uuid\": \"9cdf7e9c-f65a-5bda-a176-e4ee39dcea72\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-01\", \"changeDate\": \"2022-03-10\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Electricity Transmission Substations", "abstract": "Electricity Transmission Substations", "anzlicid": "ANZVI0803008878", "geonet_info_createdate": "2021-03-01", "revisiondate": "2022-03-10", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "845399637eca17bd0c34af09654bae55a39f7676", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "de1e2f25-fe5c-595a-baad-016588b96cca", "publicationdate": "2021-03-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-10", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcVIew", "type": "dataset", "title": "Radii Major Centres", "alttitle": "RADII_MAJOR_CENTRES", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-11-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46172\", \"uuid\": \"de1e2f25-fe5c-595a-baad-016588b96cca\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-01\", \"changeDate\": \"2022-03-10\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Radii Major Centres", "abstract": "Radii of Melbourne and some regional centres. 10, 20, 30, 40, 50 & 100km.", "anzlicid": "ANZVI0803008883", "geonet_info_createdate": "2021-03-01", "revisiondate": "2022-03-10", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a55b13db0e162f3aecaffc10326b42ca17b2399e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8f25a16a-f2ee-552a-9aee-f8b210f51f92", "publicationdate": "2019-11-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-11-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Planned Burns 2019/20 - 2021/22 now called Joint Fuel management program JFMP includes burns and works", "alttitle": "BURNPLAN20", "tempextentbegin": "2019-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2020-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34802\", \"uuid\": \"8f25a16a-f2ee-552a-9aee-f8b210f51f92\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-29\", \"changeDate\": \"2019-11-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Planned Burns 2019/20 - 2021/22 now called Joint Fuel management program JFMP includes burns and works", "abstract": "Last updated: November 2019\n\nThis dataset represents the spatial extent of prescribed burns planned for ignition and associated mechanical and vegetation works on Public Land in Victoria and some CFA burns. This data is prepared annually for prescribed burns planned for the immediate three-year period. This dataset is now the joint fuel management plan and now includes the CFA burns as well as VicForest coupe burns.", "anzlicid": "ANZVI0803008618", "geonet_info_createdate": "2019-11-29", "revisiondate": "2019-11-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "342aa4fed09742c9de4ced5bb9fb899e43f15401", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "92a7f68e-8140-5867-88ae-800a582f94a9", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Hydrography Beacon Type Table", "alttitle": "HY_BEACON_TYPE", "tempextentbegin": "2023-01-24T00:08:40+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:40+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34803\", \"uuid\": \"92a7f68e-8140-5867-88ae-800a582f94a9\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Hydrography Beacon Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003177", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ca7f0c878a8907f504c0d0b20a4bc4c036fc74f7", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "693636d3-d663-53a5-bfc5-09df1babe5b6", "publicationdate": "2021-05-26", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "WMS", "type": "dataset", "title": "Native Vegetation Regulations Area", "alttitle": "MSA_NVRA", "tempextentbegin": "2013-04-16T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:41+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46190\", \"uuid\": \"693636d3-d663-53a5-bfc5-09df1babe5b6\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-09\", \"changeDate\": \"2021-03-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Native Vegetation Regulations Area", "abstract": "This dataset provides the spatial extent of areas within the State of Victoria that are covered by the native vegetation permitted clearing regulations.\n\nThat is, areas outside of the coverage of the Melbourne Strategic Assessment.", "anzlicid": "ANZVI0803008887", "geonet_info_createdate": "2021-03-09", "revisiondate": "2021-03-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0bf99502cdb7fedc04003d18002e745475d2fed7", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "ba99062e-42d2-5fcf-9f77-631800b35ef1", "publicationdate": "2021-03-10", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Suburban Rail Loop concept route", "alttitle": "SRL_CONCEPT_ROUTE", "tempextentbegin": "2018-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:41+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46191\", \"uuid\": \"ba99062e-42d2-5fcf-9f77-631800b35ef1\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-09\", \"changeDate\": \"2021-03-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Suburban Rail Loop concept route", "abstract": "This dataset contains line data for potential SRL concept route. For more information https://suburbanrailloop.vic.gov.au/", "anzlicid": "ANZVI0803008893", "geonet_info_createdate": "2021-03-09", "revisiondate": "2021-03-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "742b820f84fe649a189f3f6d9a72567325164f75", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "f5cdbe97-6943-5a18-89da-4b62fe1e346b", "publicationdate": "2021-03-10", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Suburban Rail Loop Potential Stations", "alttitle": "SRL_POTENTIAL_STATIONS", "tempextentbegin": "2018-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:41+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46192\", \"uuid\": \"f5cdbe97-6943-5a18-89da-4b62fe1e346b\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-09\", \"changeDate\": \"2021-03-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Suburban Rail Loop Potential Stations", "abstract": "This dataset contains point layer data for potential SRL station locations. For more information https://suburbanrailloop.vic.gov.au/", "anzlicid": "ANZVI0803008892", "geonet_info_createdate": "2021-03-09", "revisiondate": "2021-03-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "470377ce933abe3a01d39d2fe337c00fa013fc6d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "766ce06a-7d46-5c6c-b6c3-5e2fed74d1ef", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "WESTERN PORT 1% AEP 0.8M SLR INUNDATION", "alttitle": "WP_1AEP_80CMSLR_EXTENT", "tempextentbegin": "2013-01-27T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2015-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;geoscientific information;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34807\", \"uuid\": \"766ce06a-7d46-5c6c-b6c3-5e2fed74d1ef\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-05-04\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "WESTERN PORT 1% AEP 0.8M SLR INUNDATION", "abstract": "The Western Port Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Western Port coastal environment. Information has been collected on inundation hazards (storm surge and catchment inflows) using modelling for different sea level rise scenarios. \nThis data represents the extent of storm tide inundation for the 1% Average Exceedance Probability (AEP) storm tide with the +0.8m sea level rise scenario (based on hydrodynamic modelling). \n\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.", "anzlicid": "ANZVI0803005420", "geonet_info_createdate": "2016-05-04", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6ddc60ef7b42ec837aba374447a14e8b4d0f4795", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "3b5a11fb-0d8c-5931-8a00-c088f04ac247", "publicationdate": "2021-03-10", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme map grids", "alttitle": "PLANNING_SCHEME_MAPGRIDS", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:42+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46194\", \"uuid\": \"3b5a11fb-0d8c-5931-8a00-c088f04ac247\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-09\", \"changeDate\": \"2021-03-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme map grids", "abstract": "This dataset contains polygon features representing planning scheme map grids.", "anzlicid": "ANZVI0803008894", "geonet_info_createdate": "2021-03-09", "revisiondate": "2021-03-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f716c98681011d81e04480fa3d761fec3be85075", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "52903101-c348-5357-81dd-9e6d99763960", "publicationdate": "2021-05-26", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "WMS", "type": "dataset", "title": "Melbourne Strategic Assessment Completed Precincts", "alttitle": "MSA_12PSP", "tempextentbegin": "2013-04-16T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:42+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46196\", \"uuid\": \"52903101-c348-5357-81dd-9e6d99763960\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-09\", \"changeDate\": \"2021-03-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Melbourne Strategic Assessment Completed Precincts", "abstract": "This dataset provides the spatial extent of the existing completed precinct structure plan area within the Melbourne Strategic Assessment.", "anzlicid": "ANZVI0803008890", "geonet_info_createdate": "2021-03-09", "revisiondate": "2021-03-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ae7d8f0b273ab07e71ed89c39bb4c03d16dc8fd5", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "aafdd3dc-f52e-5e9a-b2cf-83f755207555", "publicationdate": "2023-01-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-23", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning Permit Activity Reporting System (PPARS)", "alttitle": "PPARS_GEOCODED", "tempextentbegin": "2014-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:43+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46197\", \"uuid\": \"aafdd3dc-f52e-5e9a-b2cf-83f755207555\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-09\", \"changeDate\": \"2021-07-23\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning Permit Activity Reporting System (PPARS)", "abstract": "This dataset contains geocoded points for the location of Planning Permits, there also exists a related polygon layer at LGA level which gives aggregated number of planning permits. For more information https://www.planning.vic.gov.au/resource-library/planning-permit-activity-in-victoria", "anzlicid": "ANZVI0803008888", "geonet_info_createdate": "2021-03-09", "revisiondate": "2021-07-23", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "024f5f7c2de06981793b33f1f662a1b285aa8228", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e79d022c-e026-5574-9cb3-d6e1c84475c6", "publicationdate": "2017-05-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-08-24", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Aspatial Table- Vegetation growth stage information for Ecological Fire Groups and Ecological Vegetation Divisions on public land", "alttitle": "EFG_EVD_GROWTH_STAGES", "tempextentbegin": "2010-11-29T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:43+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34814\", \"uuid\": \"e79d022c-e026-5574-9cb3-d6e1c84475c6\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-08-24\", \"changeDate\": \"2017-08-24\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Aspatial Table- Vegetation growth stage information for Ecological Fire Groups and Ecological Vegetation Divisions on public land", "abstract": "This table provides vegetation growth stage information for Ecological Fire Groups (EFGs) and Ecological Vegetation Divisions (EVDs) on public land.", "anzlicid": "ANZVI0803005683", "geonet_info_createdate": "2017-08-24", "revisiondate": "2017-08-24", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b4d3c6bb541dae075abb408783416d575380cb24", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "4c4c1c41-ec98-504c-a647-43e4652a034e", "publicationdate": "2022-12-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-28", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcVIew", "type": "dataset", "title": "Bioenergy facility Locations for Victoria Properties", "alttitle": "REN_BIOENERGY_FARM_PROPERTIES", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-03-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46242\", \"uuid\": \"4c4c1c41-ec98-504c-a647-43e4652a034e\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-25\", \"changeDate\": \"2022-07-28\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Bioenergy facility Locations for Victoria Properties", "abstract": "Bioenergy facility Locations for Victoria.\n\n\nThe locations are a single polygon for the centre of the Bioenergy Facility", "anzlicid": "ANZVI0803008900", "geonet_info_createdate": "2021-03-25", "revisiondate": "2022-07-28", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b0ebe5c958ae67b757680fd452a1bc2ad707bcad", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "2b3f5266-e85a-5c9a-aad4-f1d3bb017cf4", "publicationdate": "2023-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-10", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcVIew", "type": "dataset", "title": "Coal facility Locations for Victoria", "alttitle": "REN_COAL_FARM", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-03-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46243\", \"uuid\": \"2b3f5266-e85a-5c9a-aad4-f1d3bb017cf4\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-25\", \"changeDate\": \"2022-03-10\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Coal facility Locations for Victoria", "abstract": "Coal facility Locations for Victoria.\n\n\nThe locations are a single point for the centre of the Coal Facility", "anzlicid": "ANZVI0803008901", "geonet_info_createdate": "2021-03-25", "revisiondate": "2022-03-10", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c75c5b3b4e5f89a43337d87237f018a70659d6c3", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "5de73c99-1f54-5759-9f07-ec7eba1b497b", "publicationdate": "2022-11-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-10", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcVIew", "type": "dataset", "title": "Pumped hydro facility Locations for Victoria", "alttitle": "REN_PUMPED_HYDRO_FARM", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-03-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46245\", \"uuid\": \"5de73c99-1f54-5759-9f07-ec7eba1b497b\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-25\", \"changeDate\": \"2022-03-10\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Pumped hydro facility Locations for Victoria", "abstract": "Pumped hydro facility Locations for Victoria.\n\n\nThe locations are a single point for the centre of the Pumped hydro Facility", "anzlicid": "ANZVI0803008907", "geonet_info_createdate": "2021-03-25", "revisiondate": "2022-03-10", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "3e032b67b11ea10f841f29f50394db38c4ffce0b", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3e0ae78c-d086-50b2-b884-cd0b41938edb", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Hydrography Ground Relationship Table", "alttitle": "HY_GROUND_RELATIONSHIP", "tempextentbegin": "2023-01-24T00:08:46+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:46+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34823\", \"uuid\": \"3e0ae78c-d086-50b2-b884-cd0b41938edb\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Hydrography Ground Relationship Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003182", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1594ff1ad8057c14182656595931cca30bc1edd4", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "766c7991-37e4-54e1-9d2d-75b0cb87f01d", "publicationdate": "2022-11-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-10", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcVIew", "type": "dataset", "title": "Hydrogen facility Locations for Victoria", "alttitle": "REN_HYDROGEN_FARM", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-03-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46248\", \"uuid\": \"766c7991-37e4-54e1-9d2d-75b0cb87f01d\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-25\", \"changeDate\": \"2022-03-10\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Hydrogen facility Locations for Victoria", "abstract": "Hydrogen facility Locations for Victoria.\n\n\nThe locations are a single point for the centre of the Hydrogen Facility", "anzlicid": "ANZVI0803008905", "geonet_info_createdate": "2021-03-25", "revisiondate": "2022-03-10", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "37de6e6785c60143b97691600cd22a7bd0526b91", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "98a589e7-7c14-5fe0-8549-532563607a22", "publicationdate": "2021-09-11", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-09-10", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Fire Management Zones", "alttitle": "FIREFMZ", "tempextentbegin": "2010-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-09-09T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34731\", \"uuid\": \"98a589e7-7c14-5fe0-8549-532563607a22\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-06-23\", \"changeDate\": \"2021-09-10\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Fire Management Zones", "abstract": "This layer represents polygon coverage of Fire Management Zones across the entire State of Victoria, generally on public land. The Fire Management Zone is an area of land which provides a framework for future fuel management programs and whether fire is suitable for managing public land to provide asset protection, bushfire moderation, landscape management or planned burn exclusion. \n \nDataset last updated 10 September 2021 with changes to regional zoning in the Hume Region (per K.Nolan).\nDataset last updated 01 July 2020 with changes to regional zoning from the statewide Strategic Bushfire Management Planning process 2017-2019.\nDataset last updated 20 April 2017 with changes from WCBRL (per A Boak). \nDataset updated 30 Jan 2017 with changes from ECBRL (per F Wilson). \nDataset updated 19 August 2016 with changes from MMGBRL (per D Prior).", "anzlicid": "ANZVI0803004459", "geonet_info_createdate": "2020-06-23", "revisiondate": "2021-09-10", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "11c1385a84245f58f18aef5f90b3d8840daed840", "fields": {"available_formats": "ECW,GeoTIFF,JPEG,JPEG 2000,TIFF", "resclassification": "unclassified", "uuid": "00ba9006-32c3-5be0-927c-c416d1d49206", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Watertable Elevation Surface", "alttitle": "WATERTABLE_ELEVATION_SURFACE", "tempextentbegin": "2011-06-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-02-28T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34732\", \"uuid\": \"00ba9006-32c3-5be0-927c-c416d1d49206\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-21\", \"changeDate\": \"2021-07-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Watertable Elevation Surface", "abstract": "This dataset was compiled for the purposes of the Secure Allocations Future Entitlements (SAFE) project. The SAFE project was funded by the Commonwealth Government under the Nartional Groundwater Action Plan to progress the managment of groundwater in Victoria.\n\nA number of datasets were used to produce the Watertable Elevation Surface included bore readings of watertable depth and a digital terrain model for the state. Existing models of watertable geometry from a number of projects were also incoroporated into the mapping process.\n\nAt the conclusion of the project, a model based on watertable elevation in mAHD was produced at a 100m resolution.", "anzlicid": "ANZVI0803004971", "geonet_info_createdate": "2019-11-21", "revisiondate": "2021-07-14", "spatialrepresentationtype_text": "Grid"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "032acb23f55d8d255a98064440398eae26ac56e9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9753ed02-4f2a-59a0-a673-73fbe934f58a", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-07-03", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Lite - Watercourse Line - 1:250,000 to 1:5,000,000", "alttitle": "VMLITE_HY_WATERCOURSE", "tempextentbegin": "2006-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2015-10-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34738\", \"uuid\": \"9753ed02-4f2a-59a0-a673-73fbe934f58a\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-07-03\", \"changeDate\": \"2020-07-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Lite - Watercourse Line - 1:250,000 to 1:5,000,000", "abstract": "This layer is part of Vicmap Lite and contains line features delineating hydrological features. Vicmap Lite datasets are suited for use between scales of 1: 250,000 and 1 : 5 million. The linework was sourced from Vicmap Hydro. The level of attribute information, the number of features and the number of vertices has been simplified to suit the 1: 250,000 - 1 : 5 million scale range. The concept of a Scale Use Code has been introduced to help control the level of detail displayed.\n\nIf this dataset is used in conjunction with vmlite_hy_water_area, then the draw order should be such that vmlite_hy_watercourse is drawn 1st and vmlite_hy_water_area is drawn ontop.\n\nTHIS DATASET WAS LAST UPDATED IN NOVEMBER 2015", "anzlicid": "ANZVI0803003512", "geonet_info_createdate": "2020-07-03", "revisiondate": "2020-07-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b03e49630f0502724474f6be1f21ed3ae5de3c0c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "2ec9a526-71b7-586d-9ada-c2d3a39cfca6", "publicationdate": "2022-05-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 48", "alttitle": "MELWAY_MAPINDEX_10_ED48", "tempextentbegin": "2020-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2020-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"45961\", \"uuid\": \"2ec9a526-71b7-586d-9ada-c2d3a39cfca6\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-12-22\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 48", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:10 000 inner urban maps.", "anzlicid": "ANZVI0803008818", "geonet_info_createdate": "2020-12-22", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f52d9948dfa341042b07075c2849c149e95da1dc", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "4cc1d33d-9003-5c86-9524-e9fef4fce5de", "publicationdate": "2022-05-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:5,000 Edition 48", "alttitle": "MELWAY_MAPINDEX_5_ED48", "tempextentbegin": "2020-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2020-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"45965\", \"uuid\": \"4cc1d33d-9003-5c86-9524-e9fef4fce5de\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-12-22\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:5,000 Edition 48", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:5 000 city maps.", "anzlicid": "ANZVI0803008823", "geonet_info_createdate": "2020-12-22", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d7e0e51c5a0560658e6e363f72badcc10a81b1ca", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "8da964e2-1439-5964-9881-fe4345b8db10", "publicationdate": "2022-05-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:20,000 Edition 48", "alttitle": "MELWAY_MAPINDEX_20_ED48", "tempextentbegin": "2020-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2020-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"45972\", \"uuid\": \"8da964e2-1439-5964-9881-fe4345b8db10\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-12-22\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:20,000 Edition 48", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:20 000 Greater Melbourne maps.", "anzlicid": "ANZVI0803008821", "geonet_info_createdate": "2020-12-22", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7d190d07553843c5d6b3b753d218b8751e84e9fa", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "fb50c8bd-47c6-519c-96e9-10e3c3d8d73f", "publicationdate": "2022-05-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:15,000 Edition 48", "alttitle": "MELWAY_MAPINDEX_15_ED48", "tempextentbegin": "2020-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2020-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"45974\", \"uuid\": \"fb50c8bd-47c6-519c-96e9-10e3c3d8d73f\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-12-22\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:15,000 Edition 48", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:15 000 Queenscliffe maps.", "anzlicid": "ANZVI0803008820", "geonet_info_createdate": "2020-12-22", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a329605209f4ec3cdec4ccfe422262de8c09856a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "db3deedd-c1e0-549d-b566-76987cc9b3fc", "publicationdate": "2021-01-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Plan Melbourne Growth Areas", "alttitle": "PM_GROWTH_AREAS", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46005\", \"uuid\": \"db3deedd-c1e0-549d-b566-76987cc9b3fc\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-05\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Plan Melbourne Growth Areas", "abstract": "Polygons representing Melbourne's growth areas.", "anzlicid": "ANZVI0803008835", "geonet_info_createdate": "2021-01-05", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "abb625b446181fc18e0545f1d14af0af4dc68a84", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "730f080c-66d1-5a98-96d6-937e2e89e92a", "publicationdate": "2021-01-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Plan Melbourne Conservation Reserves", "alttitle": "PM_CONSERVATION_RESERVES", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46007\", \"uuid\": \"730f080c-66d1-5a98-96d6-937e2e89e92a\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-05\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Plan Melbourne Conservation Reserves", "abstract": "Points representing Conservation Reserves. Categories include proposed (future reserves where land and insfrastructure delivery has not yet commenced) and emerging (reserves where land acquisition or transfer and/or associated insfrastructure delivery is incomplete)", "anzlicid": "ANZVI0803008837", "geonet_info_createdate": "2021-01-05", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1134000d7644b0863b239c2935b1cac3d1d4c80d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "19379154-81e7-5937-a263-aaf0056f4544", "publicationdate": "2021-02-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Plan Melbourne Activity Centres", "alttitle": "PM_ACTIVITY_CENTRES", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46009\", \"uuid\": \"19379154-81e7-5937-a263-aaf0056f4544\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-05\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Plan Melbourne Activity Centres", "abstract": "Point feature layer showing existing and future Metropolitan Activity Centres and Major Activity Centres (also includes Central City).\n\nThis layer is indicative only and designed only for cartographic use. It should not be used for any detailed analysis work.Future Activity Centres have been determined based on Growth Corridor Plans prepared for Melbourne's growth areas (MPA, 2012).", "anzlicid": "ANZVI0803008832", "geonet_info_createdate": "2021-01-05", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f83609b4620a69395fafaf14faac0b5770326a67", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "bebc189b-7b02-5a2f-b2c3-4477db09729a", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Infrastructure Utility Structure Type Table", "alttitle": "IN_UTIL_STRUCTURE_TYPE", "tempextentbegin": "2023-01-24T00:08:27+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:27+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34762\", \"uuid\": \"bebc189b-7b02-5a2f-b2c3-4477db09729a\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Infrastructure Utility Structure Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003207", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4fd527dcb16ee26a745817e4f3d6e0edef0f132d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "3fa4d797-e402-5041-81f8-e8a034086123", "publicationdate": "2021-01-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Plan Melbourne State Significant Industrial Precincts", "alttitle": "PM_SS_INDUSTRIAL_PRECINCTS", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46017\", \"uuid\": \"3fa4d797-e402-5041-81f8-e8a034086123\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-05\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Plan Melbourne State Significant Industrial Precincts", "abstract": "Polygons showing future and existing State Significant Industrial Precincts. Existing State Significant Industrial Precincts have been derived from Planning Scheme industrial zones in July 2016. Future State Significant Industrial Precincts are derived from land identified for industry in the Growth Corridor Plans 2012 (MPA).", "anzlicid": "ANZVI0803008841", "geonet_info_createdate": "2021-01-05", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b17af5b388862c37cdf231196906c1df3657e12d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "2885d478-ec77-5b93-9fcd-d96a45431929", "publicationdate": "2021-01-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Plan Melbourne Health and Education Precincts", "alttitle": "PM_HEALTH_AND_EDUCATION", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46018\", \"uuid\": \"2885d478-ec77-5b93-9fcd-d96a45431929\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-05\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Plan Melbourne Health and Education Precincts", "abstract": "Points showing locations of health, education and combined health and education precincts. \n\nThis layer is indicative only and designed only for cartographic use. It should not be used for any detailed analysis work.", "anzlicid": "ANZVI0803008836", "geonet_info_createdate": "2021-01-05", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b290cd52b4014445899202928e34b24ebd3285af", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "d42a9d8b-5580-52f9-babd-d8e21e5c6318", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-06-01", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "SDM formats", "type": "dataset", "title": "River Health Program Environmental Watering Priority Wetlands & Floodplain Areas for the Victorian Investment Framework", "alttitle": "VIF_RIVERHEALTH_EWWFA100", "tempextentbegin": "2010-02-16T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2011-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34766\", \"uuid\": \"d42a9d8b-5580-52f9-babd-d8e21e5c6318\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-06-01\", \"changeDate\": \"2016-06-01\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "River Health Program Environmental Watering Priority Wetlands & Floodplain Areas for the Victorian Investment Framework", "abstract": "OBSOLETE POLICY LAYER - A white paper for land and biodiversity at a time of climate change 2009\n\nThe 'Priority wetlands and floodplains for environmental watering' layer (derived from WETLAND_1994 and PLM100_POLYGON) represents the priority areas for environmental watering and environmental water works, including Living Murray Icon Sites and other important wetlands. These areas have been identified through environmental entitlements, water recovery plans and projects, Sustainable Water Strategies, Regional River Health Strategies and associated Addendums.\n\nThis layer should be used in conjunction with the latest Victorian Investment Framework (VIF) Statement of Priorities document. Catchment Management Authorities are responsible for prioritising actions within their region based upon these priorities and available funding.\n\nTo be viewed in conjunction with VIF_RIVERHEALTH_PRI100; VIF_RIVERHEALTH_LSRR100 and VIF_RIVERHEALTH_EW100", "anzlicid": "ANZVI0803003984", "geonet_info_createdate": "2016-06-01", "revisiondate": "2016-06-01", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bc8b856dee37287e7932e7569e1b4f6de64b33b8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "ffc5fa1b-5e32-5f4c-ab18-c2d8543e1450", "publicationdate": "2021-01-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Victoria in Future 2019 projections by LGA", "alttitle": "VICTORIA_IN_FUTURE_2019_LGA", "tempextentbegin": "2019-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46022\", \"uuid\": \"ffc5fa1b-5e32-5f4c-ab18-c2d8543e1450\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-06\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Victoria in Future 2019 projections by LGA", "abstract": "Victoria in Future 2019 (VIF2019) covers the period 2016 to 2056 for Victoria and the major regions. For Local Government Areas (LGA), smaller areas (VIFSAs) and Australian Statistical Geography Standard Areas Level 2 (SA2) and above, it covers the period to 2036.", "anzlicid": "ANZVI0803008849", "geonet_info_createdate": "2021-01-06", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ec4a776ce0f7a009f54b104479b3a3b24861625e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "0a7fd166-a8bb-559a-9af1-35d04ef3ef3e", "publicationdate": "2021-01-08", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Avalon Airport Future OLS", "alttitle": "AE_AVALON_FUTURE_OLS", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46029\", \"uuid\": \"0a7fd166-a8bb-559a-9af1-35d04ef3ef3e\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-07\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Avalon Airport Future OLS", "abstract": "Avalon Airport Future Obstacle Limitation Surface (OLS)", "anzlicid": "ANZVI0803008852", "geonet_info_createdate": "2021-01-07", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5a7efcb348d1ceaf31604a148c06c87233e8f97a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "ea094a08-4456-5203-91cd-b6e3cadaf3c5", "publicationdate": "2021-01-08", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Avalon Airport ANEF 2031", "alttitle": "AE_AVALON_ANEF_2031", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46030\", \"uuid\": \"ea094a08-4456-5203-91cd-b6e3cadaf3c5\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-07\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Avalon Airport ANEF 2031", "abstract": "Avalon Airport ANEF 2031", "anzlicid": "ANZVI0803008854", "geonet_info_createdate": "2021-01-07", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f67ea77fc58ba0322519d00fd051a13e87ad706d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2292b441-5c0a-5ed6-83fa-3db9c709bd3e", "publicationdate": "2022-06-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-05-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "WMS", "type": "dataset", "title": "Conservation Areas in the Biodiversity Conservation Strategy", "alttitle": "MSA_BCS_CONS_AREA", "tempextentbegin": "2013-04-16T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:31+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34774\", \"uuid\": \"2292b441-5c0a-5ed6-83fa-3db9c709bd3e\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-05-13\", \"changeDate\": \"2020-05-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Conservation Areas in the Biodiversity Conservation Strategy", "abstract": "The dataset provides conservation areas, within the Melbourne West, Sunbury (Melbourne North-west), Melbourne North and Melbourne South-east growth areas between the 2005 and 2010 Urban Growth Boundary. \n\nThe dataset is the basis of \"biodiversity areas\" identified in the Melbourne Growth Corridor Plans (May 2012) and the Biodiversity Conservation Strategy for the Melbourne Growth Corridors to be released in 2013, and prepared as a requirement of the Melbourne Strategic Assessment under the Commonwealth EPBC Act.", "anzlicid": "ANZVI0803004899", "geonet_info_createdate": "2020-05-13", "revisiondate": "2020-05-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c2582fadff65fa59ef77162b7fbf6458d1d00f04", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "942b8b9d-b6a3-5d24-bb16-4a0585b3b04d", "publicationdate": "2021-01-08", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Avalon Airport Future OLS points", "alttitle": "AE_AVALON_FUTURE_OLS_PT", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46032\", \"uuid\": \"942b8b9d-b6a3-5d24-bb16-4a0585b3b04d\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-07\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Avalon Airport Future OLS points", "abstract": "Avalon Airport Future Obstacle Limitation Surface (OLS) points", "anzlicid": "ANZVI0803008853", "geonet_info_createdate": "2021-01-07", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "3b1420301ee3e91de20b57c59485241cca4da465", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "bb47bba7-9e2d-5fa2-b167-528fe4894420", "publicationdate": "2021-01-09", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Melbourne Airport Australian Noise Exposure Forecast Long Range", "alttitle": "AE19_MELBOURNE_NCAT_2019", "tempextentbegin": "2019-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46042\", \"uuid\": \"bb47bba7-9e2d-5fa2-b167-528fe4894420\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-08\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Melbourne Airport Australian Noise Exposure Forecast Long Range", "abstract": "Melbourne Airport Australian Noise Exposure Forecast Long Range", "anzlicid": "ANZVI0803008862", "geonet_info_createdate": "2021-01-08", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "487e9aaaf7ce5f89d0c4b5ec8df73b45bed7a9ab", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "33d7e827-3e28-5ff7-9be1-4b26397ccf27", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "GIPPSLAND LAKES 1% AEP 0.2M SLR INUNDATION", "alttitle": "GL_1AEP_20CMSLR_EXTENT", "tempextentbegin": "2012-10-11T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-04-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;geoscientific information;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34784\", \"uuid\": \"33d7e827-3e28-5ff7-9be1-4b26397ccf27\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-09-27\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "GIPPSLAND LAKES 1% AEP 0.2M SLR INUNDATION", "abstract": "The Gippsland Lakes Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Gippsland Lakes coastal environment.\n\nThis data represents the extent of the 1% Average Exceedance Probability (AEP) water level within the Gippsland Lakes, incorporating a +0.2m increase in mean sea level (MSL) conditions based on hydrodynamic modelling. The 1% AEP water level conditions comprise of a combination of catchment generated inflows, coastal ocean levels and wind setup.\n\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.", "anzlicid": "ANZVI0803005602", "geonet_info_createdate": "2018-09-27", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "393556b566dd9dd41fd51e6c91a73b64f7dfd3c7", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "11f22ce9-900c-577f-8aeb-c99efd8b3dce", "publicationdate": "2021-01-30", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-01-29", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Bushfire Risk Engagement Areas (BREA)", "alttitle": "FIRE_BREA", "tempextentbegin": "2018-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2020-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46087\", \"uuid\": \"11f22ce9-900c-577f-8aeb-c99efd8b3dce\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-29\", \"changeDate\": \"2021-01-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Bushfire Risk Engagement Areas (BREA)", "abstract": "This layer represents polygon coverage Bushfire Risk Engagement Areas (BREA) across the entire State of Victoria, generally on both public and private land. BREA is broad land categorisation which provides a prioritisation framework for fuel management engagement and delivery where fire is suitable for managing risk.\n\nGeneralised boundary layer aligned to areas of bushfire risk and may not correlate to natural, manmade or administrative features.\n\nDataset was created 18 September with from the statewide strategic bushfire management planning process 2017-2019 \n\n \n\nDataset last updated 20 April 2017 with changes from WCBRL (per A Boak). \nDataset updated 30 Jan 2017 with changes from ECBRL (per F Wilson). \nDataset updated 19 August 2016 with changes from MMGBRL (per D Prior).", "anzlicid": "ANZVI0803008866", "geonet_info_createdate": "2021-01-29", "revisiondate": "2021-01-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "999189b173e6b4d9594fae0d7e9553c1fa76f661", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9d162aff-94cb-54fd-ab8b-b94abde16239", "publicationdate": "2022-08-06", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Fire History showing the number of times areas have been burnt, based on mapped fire history (scars)", "alttitle": "FIRE_HISTORY_FREQUENCY", "tempextentbegin": "1991-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:35+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46105\", \"uuid\": \"9d162aff-94cb-54fd-ab8b-b94abde16239\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-02-04\", \"changeDate\": \"2022-08-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Fire History showing the number of times areas have been burnt, based on mapped fire history (scars)", "abstract": "This layer represents the number of times an area has been burnt, based on mapped fire history. This dataset is based on the BLD_FIRE_SCAR dataset, and provides number of (and years of) planned burns and fires (both separated out and combined), plus years since a location has been burnt.This shows both public and private land\n\n The layer includes bushfires and DELWP planned burn information. This dataset only shows the fire scars (boundaries) - to allow a simplified view of fire frequency.\nCFA data on fires occurring on private land has also been included since 2009.\n\nThis data set was updated in August 2022 and includes fire season 21/22.", "anzlicid": "ANZVI0803008867", "geonet_info_createdate": "2021-02-04", "revisiondate": "2022-08-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6954543e3ff215ec78615afc93f4fae63be7b78e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a6fc7b28-6f8a-531e-9ecb-cbaedfe01f36", "publicationdate": "2022-11-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-09-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo, Ingres, MapInfo & Access", "type": "dataset", "title": "Geological Sites", "alttitle": "SITES", "tempextentbegin": "1989-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:08:35+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34787\", \"uuid\": \"a6fc7b28-6f8a-531e-9ecb-cbaedfe01f36\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-19\", \"changeDate\": \"2013-09-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological Sites", "abstract": "The layer is really a brief summary of all sites. It will provide information on whether the site is GSIGFEAT, MINSITE, STRUC, PETPHYS, OUTCROP, ROCKS, GEOPHYS or BORES. It will not give any details about the information for these other layers.", "anzlicid": "ANZVI0803002230", "geonet_info_createdate": "2013-09-19", "revisiondate": "2013-09-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0a4074156f5c20350041b6f2f06e7629c5e220ca", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "d15d8ca5-cfe2-5354-81ff-988953165ca4", "publicationdate": "2021-02-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Plan Melbourne Neighbourhood Activity Centres Future", "alttitle": "PM_NACS_FUTURE_800M_BUFFER", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46144\", \"uuid\": \"d15d8ca5-cfe2-5354-81ff-988953165ca4\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-02-22\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Plan Melbourne Neighbourhood Activity Centres Future", "abstract": "Point feature layer showing future Metropolitan Neighbourhood Activity Centres 800m buffer.\n\nThis layer is indicative only and designed only for cartographic use. It should not be used for any detailed analysis work.", "anzlicid": "ANZVI0803008873", "geonet_info_createdate": "2021-02-22", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fae2f1400ebf1cc95fd8716f3ed093d41b4d66f4", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "2b547a94-6301-5ee4-8b5b-298a1bca28fa", "publicationdate": "2021-02-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Plan Melbourne Neighbourhood Activity Centres Existing", "alttitle": "PM_NACS_EXISTING", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46146\", \"uuid\": \"2b547a94-6301-5ee4-8b5b-298a1bca28fa\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-02-22\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Plan Melbourne Neighbourhood Activity Centres Existing", "abstract": "Point feature layer showing existing Metropolitan Neighbourhood Activity Centres, NACS\n\nThis layer is indicative only and designed only for cartographic use. It should not be used for any detailed analysis work.", "anzlicid": "ANZVI0803008870", "geonet_info_createdate": "2021-02-22", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "22546b9dbe62a1ccfc3e2d574ee9129f38459b3f", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "91f37d52-5ba4-576e-a250-22c654ac6e7e", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Structure 2 Reach Summary Table", "alttitle": "ISC2010_STRUCTURE2_R", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34791\", \"uuid\": \"91f37d52-5ba4-576e-a250-22c654ac6e7e\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Structure 2 Reach Summary Table", "abstract": "The ISC2010_STRUCTURE2_R table is the Statistical Summary table for the Structure2 Metric at the Reach level. Structure 2 represents vertical vegetation layering or structure and considers 6 height intervals: 1.5m to 5m, 5m to 10m, 10m to 15m, 15m to 20m, 20m to 25m and >25m. Structure 2 is assessed within the 40m riparian zone.\n\nThe ISC2010_STRUCTURE2_R table is designed to JOIN to the ISC2010_RIVER_CENTRELINES_R feature class.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005135", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8b6fccb1f7c061c7a67d7cff77f9e45b6cba3188", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "20dc489b-038a-5ff4-9611-da8c4f812f75", "publicationdate": "2021-02-25", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-10", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcVIew", "type": "dataset", "title": "Renewable Energy Storage", "alttitle": "RENEWABLE_ENERGY_STORAGE", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-11-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46151\", \"uuid\": \"20dc489b-038a-5ff4-9611-da8c4f812f75\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-02-24\", \"changeDate\": \"2022-03-10\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Renewable Energy Storage", "abstract": "Wind Farm cables for Victoria\n\nWind energy has the potential to provide a significant proportion of Victoria's growth in renewable energy generation over the next coming years. The Government supports the development of wind energy in appropriate locations.\n\nPlanning Scheme Amendment VC82, make it clear where in Victoria a wind energy facility may be considered. The planning reform guarantees the residents of rural and regional Victoria certainty and fairness in wind farm planning decisions and ensures that communities are given a say in major planning applications.\n\nThe linear features of cabling that connects Turbines to substation", "anzlicid": "ANZVI0803008874", "geonet_info_createdate": "2021-02-24", "revisiondate": "2022-03-10", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e2f978b36cd25fc41d99789b2d2dc47061ff43f9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "11cecb87-b93d-52df-a90b-895fd69486ee", "publicationdate": "2021-01-09", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Melbourne Airport Public Safety Zone ANEC", "alttitle": "AE19_MELBOURNE_PSZ_ANEC", "tempextentbegin": "2019-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46037\", \"uuid\": \"11cecb87-b93d-52df-a90b-895fd69486ee\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-08\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Melbourne Airport Public Safety Zone ANEC", "abstract": "Melbourne Airport Public Safety Zone ANEC", "anzlicid": "ANZVI0803008864", "geonet_info_createdate": "2021-01-08", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e6b8e065757d10afd801dca3a7b994c2f972137c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "16dc7a11-e283-50f0-aeb1-e7903bd5dc00", "publicationdate": "2021-01-09", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Melbourne Airport Public Safety Zone", "alttitle": "AE19_MELBOURNE_PSZ", "tempextentbegin": "2019-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46038\", \"uuid\": \"16dc7a11-e283-50f0-aeb1-e7903bd5dc00\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-08\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Melbourne Airport Public Safety Zone", "abstract": "Melbourne Airport Public Safety Zone", "anzlicid": "ANZVI0803008863", "geonet_info_createdate": "2021-01-08", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fc7630549a86619c11c48cb5c9deca3445dae28d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "0113d712-5317-5f72-9b86-e2fda8087610", "publicationdate": "2021-01-09", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Melbourne Airport Australian Noise Exposure Forecast 20 2013", "alttitle": "AE_MELBOURNE_ANEF20_2013", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46034\", \"uuid\": \"0113d712-5317-5f72-9b86-e2fda8087610\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-07\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Melbourne Airport Australian Noise Exposure Forecast 20 2013", "abstract": "Melbourne Airport Australian Noise Exposure Forecast 20 2013", "anzlicid": "ANZVI0803008857", "geonet_info_createdate": "2021-01-07", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b3616355763d2277f76f100d466184e46e5c612b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "82cfabe0-51b1-5503-9812-f0324da94b35", "publicationdate": "2018-07-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "MapInfo, ESRI Shape", "type": "dataset", "title": "Urban Development Program - Industrial Land 2017", "alttitle": "IND2017", "tempextentbegin": "2009-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2017-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36825\", \"uuid\": \"82cfabe0-51b1-5503-9812-f0324da94b35\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-03-28\", \"changeDate\": \"2022-08-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Urban Development Program - Industrial Land 2017", "abstract": "Identifies all industrial land and the development status and size of each land parcel in hectare across metropolitan Melbourne.\nThis information identifies all industrial zoned land (Industrial 1, 2 and 3 as well as Commercial 2 Zone), and land of an industrial character and includes the Airport Business Parks, selected Special Use Zones, selected Comprehensive Development Zones and specific precincts within the Activity Centre Zones and Urban Growth Zones.\nEach land parcel is assessed as being either Unavailable (currently being used) or Supply (vacant).\n\nUrban Development Program (UDP).", "anzlicid": "ANZVI0803005903", "geonet_info_createdate": "2019-03-28", "revisiondate": "2022-08-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0b582426088b695bc9390c7a63df46817e11c4ff", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f5e391ad-6da8-557b-8c4c-15bc80d7dd99", "publishedforgroup": "12264;0", "geonet_info_changedate": "2018-02-20", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Supplied as a .zip file containing multiple shapefiles, png rasters, pdf descriptive reports and geodatabases.", "type": "dataset", "title": "Statewide Victorian Coastal Hazard Assessment 2017 - East Gippsland CMA", "alttitle": "VCHA2017_East_Gippsland_CMA", "tempextentbegin": "2017-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2017-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "oceans;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34683\", \"uuid\": \"f5e391ad-6da8-557b-8c4c-15bc80d7dd99\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-02-20\", \"changeDate\": \"2018-02-20\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Statewide Victorian Coastal Hazard Assessment 2017 - East Gippsland CMA", "abstract": "A second-pass state-wide assessment of erosion and inundation hazards resulting from future climate change scenarios to inform the Victorian Coastal Monitoring Program.", "anzlicid": "ANZVI0803005839", "geonet_info_createdate": "2018-02-20", "revisiondate": "2018-02-20", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0b338386eb400815f9926c8a9d1c8642ddfb9ef2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "4e748660-899e-57d4-8530-cec685a39f7c", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, MapInfo, Non digital - plotted maps", "type": "dataset", "title": "Geophysics (1:100,000), Geological Interpretation of Geophysical Features Arc", "alttitle": "GPGEOL100_ARC", "tempextentbegin": "1994-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34849\", \"uuid\": \"4e748660-899e-57d4-8530-cec685a39f7c\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-29\", \"changeDate\": \"2022-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geophysics (1:100,000), Geological Interpretation of Geophysical Features Arc", "abstract": "This dataset contains interpreted geological data, using combined interpretations of airborne magnetic, radiometric and gravity survey data, mapped at 1:100,000. \n\nAt scales larger than 1:120,000 the display is a combination of both 1:100,000 and 1:250,000 geophysical mapping. Recent 1:250,000 geophysical mapping has been of such quality and detail it has been used to supersede older coincident 1:100,000 mapping. This occurs in the following areas: St Arnaud 7524, Dunolly 7624, Charlton 7525, Wedderburn 7625 and part of Ararat 7423 are superseded by St Arnaud SJ54-4. Bendigo 7724, Heathcote 7824 and Nagambie 7924 are superseded by Bendigo SJ55-1. \n\nBalmoral 7223, Ararat 7423, Horsham SJ54-3 and St Arnaud SJ54-4 supersede Grampians 7323 where there is overlap.\n\nThis data has been collected by the Geological Survey of Victoria. This dataset is accompanied by other datasets representing sub-surface geological polygons, structural lines, miscellaneous lines and metamorphism.", "anzlicid": "ANZVI0803003422", "geonet_info_createdate": "2018-03-29", "revisiondate": "2022-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "242f7f9827d3f5677529c5b24d975c38b76b571c", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "12c1f030-815a-5c8b-a38c-2fb2a8c9fb05", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Hydrography Hierarchy Table", "alttitle": "HY_HIERARCHY", "tempextentbegin": "2023-01-24T00:08:56+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:56+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34856\", \"uuid\": \"12c1f030-815a-5c8b-a38c-2fb2a8c9fb05\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Hydrography Hierarchy Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003183", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7bf6721b789eceb6bb074e389d9c4b8b238a92c8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "6ef08545-b36b-5cd3-b78e-794781f27836", "publicationdate": "2023-01-13", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-12-07", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "Digital", "type": "dataset", "title": "Heritage Victoria Hermes Master for Radius Internal use only", "alttitle": "HERMES_RADIUS", "tempextentbegin": "2008-01-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:56+00:00", "maintenanceandupdatefrequency_text": "Daily", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46482\", \"uuid\": \"6ef08545-b36b-5cd3-b78e-794781f27836\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-06-25\", \"changeDate\": \"2021-12-07\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Heritage Victoria Hermes Master for Radius Internal use only", "abstract": "Heritage Victoria maintains a database (Hermes) of all places which are included in the Victorian Heritage Register, or the Heritage Inventory (archaeology), or the World Heritage List, or are being assessed for inclusion in any of these lists, or have been assessed and not included, or have come to Heritage Victoria's notice for any reason. This dataset describes the spatial aspects of all places with a Heritage Victoria Hermes record.\n\nNote: This version of HERMES (HERMES_RADIUS) is for the Radius application for internal use only. It contains the same data as HERMES with additional fields required by Heritage Team.", "anzlicid": "ANZVI0803008951", "geonet_info_createdate": "2021-06-25", "revisiondate": "2021-12-07", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2a037a045199db59c6982a4353b6e73621831585", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "14e39b75-403d-5681-9623-2240c1590ece", "publicationdate": "2019-12-03", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "MapInfo, ESRI Shape", "type": "dataset", "title": "Urban Development Program - Industrial Land 2018", "alttitle": "IND2018", "tempextentbegin": "2018-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34958\", \"uuid\": \"14e39b75-403d-5681-9623-2240c1590ece\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-10-22\", \"changeDate\": \"2022-08-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Urban Development Program - Industrial Land 2018", "abstract": "Identifies all industrial land and the development status and size of each land parcel in hectare across metropolitan Melbourne.\nThis information identifies all industrial zoned land (Industrial 1, 2 and 3 as well as Commercial 2 Zone), and land of an industrial character and includes the Airport Business Parks, selected Special Use Zones, selected Comprehensive Development Zones and specific precincts within the Activity Centre Zones and Urban Growth Zones.\nEach land parcel is assessed as being either Unavailable (currently being used) or Supply (vacant).\n\nUrban Development Program (UDP).", "anzlicid": "ANZVI0803008567", "geonet_info_createdate": "2019-10-22", "revisiondate": "2022-08-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fa5b023bed6d3d49e9fbcc5f9b2cfee391f3b1e5", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "6f493aa7-83d7-5529-a969-dbf9e6ef0a0c", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme zone UGZ - URBAN GROWTH ZONE", "alttitle": "UGZ", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:27+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46630\", \"uuid\": \"6f493aa7-83d7-5529-a969-dbf9e6ef0a0c\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-17\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme zone UGZ - URBAN GROWTH ZONE", "abstract": "This dataset contains polygon features for the individual zone class UGZ - URBAN GROWTH ZONE. If you require all zones in a single dataset use the Vicmap VMPLAN PLAN_ZONE dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009067", "geonet_info_createdate": "2021-07-17", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7f1ac86696aa25ee03713972ffda1d9dec607d8c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "bb1b1450-67d3-59e5-a359-20d618f74507", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme zone PDZ - PRIORITY DEVELOPMENT ZONE", "alttitle": "PDZ", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:29+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46637\", \"uuid\": \"bb1b1450-67d3-59e5-a359-20d618f74507\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-17\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme zone PDZ - PRIORITY DEVELOPMENT ZONE", "abstract": "This dataset contains polygon features for the individual zone class PDZ - PRIORITY DEVELOPMENT ZONE. If you require all zones in a single dataset use the Vicmap VMPLAN PLAN_ZONE dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009046", "geonet_info_createdate": "2021-07-17", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f938a628be429e3f5348167580d610443f7e65f8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "0254ee20-a159-5d97-a1a5-1f14091251a5", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme zone PUZ6 - PUBLIC USE ZONE - LOCAL GOVERNMENT", "alttitle": "PUZ6", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:30+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46640\", \"uuid\": \"0254ee20-a159-5d97-a1a5-1f14091251a5\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-17\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme zone PUZ6 - PUBLIC USE ZONE - LOCAL GOVERNMENT", "abstract": "This dataset contains polygon features for the individual zone class PUZ6 - PUBLIC USE ZONE - LOCAL GOVERNMENT. If you require all zones in a single dataset use the Vicmap VMPLAN PLAN_ZONE dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009053", "geonet_info_createdate": "2021-07-17", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "caa83454636c91f15471201c2af0cdf145c3f0d8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "f1cd4bb4-bea4-5779-9be7-99a89f71c61f", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme zone SUZ - SPECIAL USE ZONE", "alttitle": "SUZ", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:31+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46641\", \"uuid\": \"f1cd4bb4-bea4-5779-9be7-99a89f71c61f\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-17\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme zone SUZ - SPECIAL USE ZONE", "abstract": "This dataset contains polygon features for the individual zone class SUZ - SPECIAL USE ZONE. If you require all zones in a single dataset use the Vicmap VMPLAN PLAN_ZONE dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009063", "geonet_info_createdate": "2021-07-17", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c802682dfcc7e257929d75f819b4b82070fef27f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "b644c0f0-1206-5ea8-bc12-9543937814da", "publicationdate": "2019-06-29", "publishedforgroup": "12264;0", "geonet_info_changedate": "2021-11-11", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Spatial Vision Mapbook Index 1:150,000 Edition 6", "alttitle": "MAPBOOK_MAPINDEX_150_ED6", "tempextentbegin": "2018-11-26T13:00:00+00:00", "resowner": "Spatial Vision Pty Ltd", "tempextentend": "2018-11-26T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Biannually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34969\", \"uuid\": \"b644c0f0-1206-5ea8-bc12-9543937814da\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-05-20\", \"changeDate\": \"2021-11-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Spatial Vision Mapbook Index 1:150,000 Edition 6", "abstract": "This dataset is derived from the Mapbook directory and contains the map index for the 1:150 000 Wilsons Promontory maps.", "anzlicid": "ANZVI0803004606", "geonet_info_createdate": "2013-05-20", "revisiondate": "2021-11-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f85a72d5f716fe5d9cfc6a79475b0116e46de862", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "80c77416-46c8-51a8-b1f8-bf70a03850bf", "publicationdate": "2020-09-11", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-07-03", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Lite - Geographic Feature Polygon for Labelling - 1:250,000 to 1:5,000,000", "alttitle": "VMLITE_GEO_AREA_LABEL", "tempextentbegin": "2006-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2008-07-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34971\", \"uuid\": \"80c77416-46c8-51a8-b1f8-bf70a03850bf\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-07-03\", \"changeDate\": \"2020-07-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Lite - Geographic Feature Polygon for Labelling - 1:250,000 to 1:5,000,000", "abstract": "This layer is part of Vicmap Lite and contains stylised polygon features from which key geographic areas can be labelled. Vicmap Lite datasets are suited for use between scales of 1: 250,000 and 1 : 5 million. The polygons were screen digitised using BASIN100 as a rough guide. The level of attribute information, the number of features and the number of vertices has been simplified to suit the 1: 250,000 - 1 : 5 million scale range. The concept of a Scale Use Code has been introduced to help control the level of detail displayed.\n\nTHIS DATASET WAS LAST UPDATED IN AUGUST 2008", "anzlicid": "ANZVI0803003532", "geonet_info_createdate": "2020-07-03", "revisiondate": "2020-07-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ddca84b48a252e7619ea3a877e2c1a48265d0a71", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "dd889592-a256-5d63-9e7e-2a665e1415dc", "publicationdate": "2023-01-17", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-06-22", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Recreation Hut", "alttitle": "RECWEB_HUT", "tempextentbegin": "2013-07-17T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:32+00:00", "maintenanceandupdatefrequency_text": "Daily", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34972\", \"uuid\": \"dd889592-a256-5d63-9e7e-2a665e1415dc\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-16\", \"changeDate\": \"2022-06-22\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Recreation Hut", "abstract": "Recreation hut dataset describes huts within State forest. The recreation huts within State Forest have been captured and recorded with a Trimble Pro XR GPS and are actively promoted to the public and maintained by the Department of Environment, Land, Water and Planning.\n\n* recweb", "anzlicid": "ANZVI0803005217", "geonet_info_createdate": "2019-05-16", "revisiondate": "2022-06-22", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4c77f1f5dc1c3aeb0d7bccd4c7969dce794b1a8c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "8a6a8a0d-e894-515d-95a2-90f6c789bf3e", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme zone PUZ5 - PUBLIC USE ZONE - CEMETERY/CREMATORIUM", "alttitle": "PUZ5", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:24+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46621\", \"uuid\": \"8a6a8a0d-e894-515d-95a2-90f6c789bf3e\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-17\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme zone PUZ5 - PUBLIC USE ZONE - CEMETERY/CREMATORIUM", "abstract": "This dataset contains polygon features for the individual zone class PUZ5 - PUBLIC USE ZONE - CEMETERY/CREMATORIUM. If you require all zones in a single dataset use the Vicmap VMPLAN PLAN_ZONE dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009052", "geonet_info_createdate": "2021-07-17", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "728092c08f9ed99efbd10c3cbc3807e306cd2a4d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "efc7c1ee-aa00-5e67-9e9f-57643cf13c0d", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme zone RCZ - RURAL CONSERVATION ZONE", "alttitle": "RCZ", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:25+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46623\", \"uuid\": \"efc7c1ee-aa00-5e67-9e9f-57643cf13c0d\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-17\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme zone RCZ - RURAL CONSERVATION ZONE", "abstract": "This dataset contains polygon features for the individual zone class RCZ - RURAL CONSERVATION ZONE. If you require all zones in a single dataset use the Vicmap VMPLAN PLAN_ZONE dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009058", "geonet_info_createdate": "2021-07-17", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2773b0934cdab358a3d450f5b084e3c3795bf84d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "23331157-60c0-525f-81df-8a154c35f2b9", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-11-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Statistical extents for 1% AEP or 1 in 100 years floods until 2014", "alttitle": "EXTENT_100Y_ARI", "tempextentbegin": "1997-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34953\", \"uuid\": \"23331157-60c0-525f-81df-8a154c35f2b9\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-12-12\", \"changeDate\": \"2022-11-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Statistical extents for 1% AEP or 1 in 100 years floods until 2014", "abstract": "This layer contains information from multiple flood studies undertaken until 2014. This layer will not be updated.\nThe data is statistically derived using hydrological models depicting the 1 in 100 year ARI (or 1% AEP) scenario and historic flood extents. \nThis is Polygon data or a Shapefile.", "anzlicid": "ANZVI0803003630", "geonet_info_createdate": "2018-12-12", "revisiondate": "2022-11-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8606b5b3d348d9cf13e753de62e5c32b50c323df", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "87ba98ad-681a-5fa5-b753-414e4640add8", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme zone RAZ - RURAL ACTIVITY ZONE", "alttitle": "RAZ", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:27+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46628\", \"uuid\": \"87ba98ad-681a-5fa5-b753-414e4640add8\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-17\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme zone RAZ - RURAL ACTIVITY ZONE", "abstract": "This dataset contains polygon features for the individual zone class RAZ - RURAL ACTIVITY ZONE. If you require all zones in a single dataset use the Vicmap VMPLAN PLAN_ZONE dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009057", "geonet_info_createdate": "2021-07-17", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7fd82745759b97c6de95e3d074e18c7976017afc", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2861bbfb-4644-5ccf-aca1-b02b6bc2faf4", "publishedforgroup": "0;12264", "geonet_info_changedate": "2018-02-20", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Supplied as a .zip file containing multiple shapefiles, png rasters, pdf descriptive reports and geodatabases.", "type": "dataset", "title": "Statewide Victorian Coastal Hazard Assessment 2017 - Corangamite CMA", "alttitle": "VCHA2017_Corangamite_CMA", "tempextentbegin": "2017-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2017-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "oceans;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34926\", \"uuid\": \"2861bbfb-4644-5ccf-aca1-b02b6bc2faf4\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-02-20\", \"changeDate\": \"2018-02-20\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Statewide Victorian Coastal Hazard Assessment 2017 - Corangamite CMA", "abstract": "A second-pass state-wide assessment of erosion and inundation hazards resulting from future climate change scenarios to inform the Victorian Coastal Monitoring Program.", "anzlicid": "ANZVI0803005838", "geonet_info_createdate": "2018-02-20", "revisiondate": "2018-02-20", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fe81bd3e92400d2abb1af95572aaa861a073831f", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8733242e-0462-5a8d-93b9-bc3529805416", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Road Use Table", "alttitle": "TR_ROAD_USE_RT", "tempextentbegin": "2023-01-24T00:09:17+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:17+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46595\", \"uuid\": \"8733242e-0462-5a8d-93b9-bc3529805416\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-16\", \"changeDate\": \"2022-07-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Road Use Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803009018", "geonet_info_createdate": "2021-07-16", "revisiondate": "2022-07-14", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "34b008f3e75f2dcb7b755c7b33555521ede1a248", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9cab118a-d8d6-52de-b564-c9407fca960c", "publicationdate": "2022-02-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo, ArcView.", "type": "dataset", "title": "Energy Facilities", "alttitle": "ENERGY_FACILITIES", "tempextentbegin": "1995-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2021-07-04T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;utilities communication;economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46599\", \"uuid\": \"9cab118a-d8d6-52de-b564-c9407fca960c\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-16\", \"changeDate\": \"2021-07-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Energy Facilities", "abstract": "Energy Facilities Including Platforms, Power Stations, large consumers of energy etc.", "anzlicid": "ANZVI0803008896", "geonet_info_createdate": "2021-07-16", "revisiondate": "2021-07-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "61734d30e8829f672751fe894f5e373243609cbe", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "d04c9afc-3684-53d6-8d20-4c32b8ec084a", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme zone IN2Z - INDUSTRIAL 2 ZONE", "alttitle": "IN2Z", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:19+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46602\", \"uuid\": \"d04c9afc-3684-53d6-8d20-4c32b8ec084a\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-17\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme zone IN2Z - INDUSTRIAL 2 ZONE", "abstract": "This dataset contains polygon features for the individual zone class IN2Z - INDUSTRIAL 2 ZONE. If you require all zones in a single dataset use the Vicmap VMPLAN PLAN_ZONE dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009040", "geonet_info_createdate": "2021-07-17", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e5b1a3790b9b51f72d1a5a3ffcaa7539ef962a89", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "359796da-2caa-5c38-9837-9a67f920675f", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-06-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Transport - Road Infrastructure Point", "alttitle": "TR_ROAD_INFRASTRUCTURE", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:19+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34932\", \"uuid\": \"359796da-2caa-5c38-9837-9a67f920675f\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-21\", \"changeDate\": \"2021-06-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Transport - Road Infrastructure Point", "abstract": "This layer is part of Vicmap Transport and contains point features delineating road infrastructure features.\nIncludes; Bridges, Tunnels, Gates, Cattle Grids, Barrirers, Level Crossings, Roundabouts & Intersections.", "anzlicid": "ANZVI0803002444", "geonet_info_createdate": "2020-02-21", "revisiondate": "2021-06-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1520fb4d5225494fe17a1fe03b37616f1cdc8294", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "d4b190ab-f21c-5704-adf7-5adfb2fc3ef1", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme zone GWAZ - GREEN WEDGE A ZONE", "alttitle": "GWAZ", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:19+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46603\", \"uuid\": \"d4b190ab-f21c-5704-adf7-5adfb2fc3ef1\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-17\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme zone GWAZ - GREEN WEDGE A ZONE", "abstract": "This dataset contains polygon features for the individual zone class GWAZ - GREEN WEDGE A ZONE. If you require all zones in a single dataset use the Vicmap VMPLAN PLAN_ZONE dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009037", "geonet_info_createdate": "2021-07-17", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e09567c954cf4d391ae1cd93293fe13453c74db2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "acdef68a-f49b-5987-9db8-652920788f69", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme zone LDRZ - LOW DENSITY RESIDENTIAL ZONE", "alttitle": "LDRZ", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:20+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46604\", \"uuid\": \"acdef68a-f49b-5987-9db8-652920788f69\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-17\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme zone LDRZ - LOW DENSITY RESIDENTIAL ZONE", "abstract": "This dataset contains polygon features for the individual zone class LDRZ - LOW DENSITY RESIDENTIAL ZONE. If you require all zones in a single dataset use the Vicmap VMPLAN PLAN_ZONE dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009042", "geonet_info_createdate": "2021-07-17", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8945d94068fb5bd6e9ac38f732c9bb19ca227ebd", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c3b413c3-2175-569d-a30d-e7cc3fe9c3f3", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Road Vehicular Access Table", "alttitle": "TR_VEHICULAR_ACCESS", "tempextentbegin": "2023-01-24T00:09:16+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:16+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46591\", \"uuid\": \"c3b413c3-2175-569d-a30d-e7cc3fe9c3f3\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-16\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Road Vehicular Access Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803009017", "geonet_info_createdate": "2021-07-16", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8e24a05bf94f24546d67a26456c4df94252cc5f9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "75d73aec-e4e6-5e9d-8237-319cb2ca839a", "publicationdate": "2022-11-09", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "type": "dataset", "title": "EPA Victoria Environmental Audit Reports - Location Polygons", "alttitle": "ENVIRO_AUDIT_LOC_POLYGON", "tempextentbegin": "1900-12-31T14:00:00+00:00", "resowner": "Environment Protection Authority Victoria", "tempextentend": "2020-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Daily", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34923\", \"uuid\": \"75d73aec-e4e6-5e9d-8237-319cb2ca839a\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-08-15\", \"changeDate\": \"2020-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "EPA Victoria Environmental Audit Reports - Location Polygons", "abstract": "EPA maintains a searchable list of properties issued with a certificate or statement of environmental audit in accordance with sections 53V and 53X of the Environment Protection Act. A certificate of environmental audit is issued for a property where, following an audit, an environmental auditor believes the environmental condition of the land is suitable for any beneficial use.\n\nEPA Environmental Audits most commonly take place when land is proposed for new use and is potentially contaminated, or if it is already covered by an Environmental Audit Overlay.\n\nThis dataset mirrors the audit data available on EPA's website interaction portal, but may not be up to date due to data transfer processes. For the most up to date data, go to EPA's website interaction portal.", "anzlicid": "ANZVI0803005885", "geonet_info_createdate": "2019-08-15", "revisiondate": "2020-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7ce9e54e738cfe62ceba9fd6853b7e9b1d06b9dd", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0b25ae83-0b69-5e90-96b1-db998ea2974e", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Road Construction Material Table", "alttitle": "TR_ROAD_CONSTRUCTION_MATERIAL", "tempextentbegin": "2023-01-24T00:09:16+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:16+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46592\", \"uuid\": \"0b25ae83-0b69-5e90-96b1-db998ea2974e\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-16\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Road Construction Material Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803009023", "geonet_info_createdate": "2021-07-16", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "37f313c168231e64665c47e41afc73ed4c7be953", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "fe9d2fda-c958-5765-882c-064e5c3cd9f8", "publicationdate": "2023-01-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-20", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Transport - Road Use Table", "alttitle": "TR_ROAD_USE", "tempextentbegin": "2021-07-14T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:57+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46500\", \"uuid\": \"fe9d2fda-c958-5765-882c-064e5c3cd9f8\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-02\", \"changeDate\": \"2022-10-20\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Transport - Road Use Table", "abstract": "This layer is part of Vicmap Transport.", "anzlicid": "ANZVI0803008954", "geonet_info_createdate": "2021-07-02", "revisiondate": "2022-10-20", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "750995ca75534dbcaa54e3cdd80c51fd06adbdee", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "febae4e4-0f56-59ce-a890-158b668a5d4d", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-02-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, MapInfo, Non digital - plotted maps", "type": "dataset", "title": "SubSurface Geophysics (1:250,000), at level 2", "alttitle": "GPSGEOL2100_POLYGON", "tempextentbegin": "1994-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34865\", \"uuid\": \"febae4e4-0f56-59ce-a890-158b668a5d4d\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-09\", \"changeDate\": \"2016-02-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "SubSurface Geophysics (1:250,000), at level 2", "abstract": "This dataset contains interpreted geological data, using combined interpretations of airborne magnetic, radiometric and gravity survey data, mapped at 1:100,000 of deeply buried geological units. In this layer units, along with their associated linework, have been classified as 'deep' since they reside beneath other geophysically interpreted units which are usually themselves below the mapped surface geology.\n\nAt scales larger than 1:120,000 the display is a combination of both 1:100,000 and 1:250,000 geophysical mapping. Recent 1:250,000 geophysical mapping has been of such quality and detail it has been used to supersede older coincident 1:100,000 mapping. This occurs in the following areas: St Arnaud 7524, Dunolly 7624, Charlton 7525, Wedderburn 7625 and part of Ararat 7423 are superseded by St Arnaud SJ54-4. Bendigo 7724, Heathcote 7824 and Nagambie 7924 are superseded by Bendigo SJ55-1. \n\nBalmoral 7223, Ararat 7423, Horsham SJ54-3 and St Arnaud SJ54-4 supersede Grampians 7323 where there is overlap.\n\nThis data has been collected by the Geological Survey of Victoria. This dataset is accompanied by other datasets representing geological polygons and boundaries, structural lines, miscellaneous lines and metamorphism.", "anzlicid": "ANZVI0803003427", "geonet_info_createdate": "2016-02-09", "revisiondate": "2016-02-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a56f6267fb8a90e0ec07262b86b4c946fcb25a6d", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "efacefaf-7746-5325-9a4d-46fd4ea23217", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Hydrography Reef Type Table", "alttitle": "HY_REEF_TYPE", "tempextentbegin": "2023-01-24T00:08:59+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:59+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34866\", \"uuid\": \"efacefaf-7746-5325-9a4d-46fd4ea23217\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Hydrography Reef Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003189", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "cdb0adf76f6acb8b7200ff4a4f8d889bd7a44ae3", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "a075abfb-ca3f-5b66-a3c8-32a1ffe687cf", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2011-07-27", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "Victorian Alpine Huts Heritage Survey 2004-05", "alttitle": "EG_ALPINE_HUT_SURVEY", "tempextentbegin": "2003-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2005-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34867\", \"uuid\": \"a075abfb-ca3f-5b66-a3c8-32a1ffe687cf\", \"schema\": \"iso19115-3\", \"createDate\": \"2011-07-27\", \"changeDate\": \"2011-07-27\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "limitedDistribution", "defaulttitle": "Victorian Alpine Huts Heritage Survey 2004-05", "abstract": "In 2003 the alpine fires burnt a significant area of State Forest and Alpine National Park, and within these areas a number of huts. A heritage survey of huts in and ajoining the fire affected area was required to assess the conditions of the huts, their values and management requirements. Graeme Butler and associates were commissioned in 2004/05 to conduct this survey.\n\nThe locations of the huts surveyed as contained in the final report (Victorian Alpine Huts Heritage Survey 2004-2005 by Graeme Butler and Associates 2005) were converted into a GIS layer.", "anzlicid": "ANZVI0803004458", "geonet_info_createdate": "2011-07-27", "revisiondate": "2011-07-27", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e905d65695b71144257aae2b671241c19710e18b", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "df4f6c09-6ec3-5b87-a2eb-5167220173cb", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Administrative Parish and Township with Alternate Names Table", "alttitle": "PARISH_TOWN", "tempextentbegin": "2023-01-24T00:09:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34868\", \"uuid\": \"df4f6c09-6ec3-5b87-a2eb-5167220173cb\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Administrative Parish and Township with Alternate Names Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products. PARISH and TOWNSHIP is a list of alternate Parish & Township names for Victoria.", "anzlicid": "ANZVI0803003141", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "12aaa5a884a56af788089ef16e63286abcdfb426", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2506df51-c518-5a09-8c19-903b478feb2a", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-11-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Running distance of streams at 2009", "alttitle": "RUNNING_DISTANCE", "tempextentbegin": "1997-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2009-01-04T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34869\", \"uuid\": \"2506df51-c518-5a09-8c19-903b478feb2a\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-12\", \"changeDate\": \"2022-11-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Running distance of streams at 2009", "abstract": "This layer contains points showing incrementing kilometre marks of a stream from the mouth, relevant to flood mapping projects as at 2009. The interval is every 1 km.\n\nNote:\n- Running kms are measured from the downstream end of the stream where the stream terminates at an outflow or joins a major stream.\n- Generally the running kms will be displayed as tick marks perpendicular to the stream at a local level, and annotated with the running kms value.\n- The method for calculation of the running kilometers is by using the ArcInfo route functionality.", "anzlicid": "ANZVI0803002085", "geonet_info_createdate": "2013-09-12", "revisiondate": "2022-11-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7ccad8af4be97439426a539c431ee796a40508e8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "0c36aaf7-4381-5a3a-bf54-bfec7b765bcb", "publicationdate": "2020-05-28", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-23", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "ArcVIew", "type": "dataset", "title": "Wind Farm Turbines for Victoria", "alttitle": "WIND_FARM_TURBINES", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-11-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34870\", \"uuid\": \"0c36aaf7-4381-5a3a-bf54-bfec7b765bcb\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-11-21\", \"changeDate\": \"2021-07-23\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Wind Farm Turbines for Victoria", "abstract": "Wind Farms Turbine Locations for Victoria \n\nWind energy has the potential to provide a significant proportion of Victoria's growth in renewable energy generation over the next coming years. The Government supports the development of wind energy in appropriate locations.\n\nPlanning Scheme Amendment VC82, make it clear where in Victoria a wind energy facility may be considered. The planning reform guarantees the residents of rural and regional Victoria certainty and fairness in wind farm planning decisions and ensures that communities are given a say in major planning applications.\n\nThe point dataset that refers to the locations of Turbines", "anzlicid": "ANZVI0803005961", "geonet_info_createdate": "2018-11-21", "revisiondate": "2021-07-23", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b33575059ce494ebf4bd12329a9a135cd247aa9a", "fields": {"available_formats": "ECW,GeoTIFF,JPEG,JPEG 2000,TIFF", "resclassification": "unclassified", "uuid": "72952c66-9fc8-5d9f-b03f-f6f9f7e62d58", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL geotiff", "type": "dataset", "title": "Soil Grids of Victorian - Soil pH (CaCl2)", "alttitle": "SOIL_pHcacl2", "tempextentbegin": "1957-12-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2016-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34873\", \"uuid\": \"72952c66-9fc8-5d9f-b03f-f6f9f7e62d58\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-14\", \"changeDate\": \"2021-07-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "unclassified", "defaulttitle": "Soil Grids of Victorian - Soil pH (CaCl2)", "abstract": "A set of Digital Soil Maps (mean, 5th and 95th percentile prediction values) of soil pH (of 1:5 soil/0.01M calcium chloride extract) across Victoria in geotiff format.\n\nGrids of key soil properties have been produced for Victoria. These grids, in raster format, provide prediction and confidence interval values for key soil properties at a 90 m grid resolution for six set depths; 0 to 5 cm, 5 to 15 cm, 15 to 30 cm, 30 to 60 cm, 60 to 100 cm and 100 to 200 cm, across Victoria.\n\nThe grids have been designed to meet the specifications created by GlobalSoilMap (www.globalsoilmap.net) to develop and deliver detailed soil information in a consistent form.\n\nThe grids are a spatial interpolation of key soil properties to support modelling and decision making in resource management, agricultural production, land use policy and planning, and in further research such as ecosystem modelling.\n\nThe methodology used to develop the Soil Grids of Victoria has been based on that refined by the Australian Soil and Landscape Grid. Data and knowledge embedded into existing soil related datasets, e.g. soil profile and land mapping collections, have been key inputs. \n\nWhilst the new maps show an immense amount of fine scale detail, and are our best spatially continuous and exhaustive estimates of soil attributes across all of Victoria, they are most appropriately used for assessments of regional to state-wide trends of soil properties and their relationship with their environment and pedogenesis. Care should be taken when using the grids for local assessments and it is recommended that the confidence intervals are included at this scale.", "anzlicid": "ANZVI0803005795", "geonet_info_createdate": "2019-05-14", "revisiondate": "2021-07-14", "spatialrepresentationtype_text": "Grid"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5bb429cfa01c7f9c6bb698dd94af1ed3d0c08aaf", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3c0159c7-9c89-5ff8-867b-e970f2fceac9", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Fire Severity Classes (Landsat) for Alpine fires January/February 2003.", "alttitle": "FIRE_SEV03", "tempextentbegin": "2023-01-24T00:09:03+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:03+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34879\", \"uuid\": \"3c0159c7-9c89-5ff8-867b-e970f2fceac9\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-10\", \"changeDate\": \"2022-02-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Fire Severity Classes (Landsat) for Alpine fires January/February 2003.", "abstract": "The Victorian Alpine Fires 2003 were ignited on 8th January 2003 by a series of lightning strikes across north-eastern Victoria. This layer depicts fire severity, derived from Landsat imagery, across the extent of the fires to provide a reliable strategic management dataset to interpret fire effects.", "anzlicid": "ANZVI0803002724", "geonet_info_createdate": "2020-02-10", "revisiondate": "2022-02-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "710bded670cf37805f258883f93c3625343e33cf", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "7fdb1898-97c8-5d51-b299-0376b4791c25", "publicationdate": "2023-01-20", "publishedforgroup": "12264;0", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:60,000 Edition 47", "alttitle": "MELWAY_MAPINDEX_60_ED47", "tempextentbegin": "2019-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2019-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34883\", \"uuid\": \"7fdb1898-97c8-5d51-b299-0376b4791c25\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-10-04\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:60,000 Edition 47", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:60 000 Phillip Island maps.", "anzlicid": "ANZVI0803004595", "geonet_info_createdate": "2018-10-04", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e2ae62aa0c31bc82d5da88d1eb0b8892b4c7d0a1", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1eea9bdf-77b7-583e-9047-715076baa3a4", "publicationdate": "2018-12-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2018-11-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Planned Burns 2018/19 - 2020/21", "alttitle": "BURNPLAN19", "tempextentbegin": "2018-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34898\", \"uuid\": \"1eea9bdf-77b7-583e-9047-715076baa3a4\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-11-19\", \"changeDate\": \"2018-11-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Planned Burns 2018/19 - 2020/21", "abstract": "Last updated: November 2018\n\nThis dataset represents the spatial extent of prescribed burns planned for ignition and associated mechanical and vegetation works on Public Land in Victoria. This data is prepared annually for prescribed burns planned for the immediate three-year period. This dataset is now the joint fuel management plan and now includes the CFA burns as well as VicForest coupe burns.", "anzlicid": "ANZVI0803005957", "geonet_info_createdate": "2018-11-19", "revisiondate": "2018-11-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "638c0879e0177622a71e05bd1e1eaefcdd7f1fdd", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "fe95603d-2a5b-51ac-97e2-8de525e547a8", "publicationdate": "2019-10-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-10-03", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "Feature Class", "type": "dataset", "title": "2010 Index of Stream Condition Instream Woody Habitat Score", "alttitle": "ISC2010_IWH_SCORE", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2013-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34903\", \"uuid\": \"fe95603d-2a5b-51ac-97e2-8de525e547a8\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-10-03\", \"changeDate\": \"2019-10-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "2010 Index of Stream Condition Instream Woody Habitat Score", "abstract": "The ISC2010_IWH_SCORE dataset represents the 2010 Index of Stream Condition (ISC) modelling of Instream Woody Habitat (IWH) and its change since natural condition.\nIWH densities were mapped in ~ 38,000 river reaches across Victoria, equalling ~ 27,700 km. Field assessments of natural IWH densities were undertaken in \u00bfpristine\u00bf river reaches using hand-held GPS and underwater sonar. This information was used in a predictive modelling approach to determine natural IWH densities in rivers across Victoria. Current densities of IWH across Victoria were then calculated using a combination of high resolution aerial photographs, field assessments and measures of riparian overhang. A simple comparison of the predicted natural IWH densities and the current IWH densities enabled researchers to assess the condition score of IWH densities in rivers throughout Victoria.\nFurther information available at:\nhttps://www.ari.vic.gov.au/research/rivers-and-estuaries/victorian-instream-habitat-assessment\nhttps://www.water.vic.gov.au/waterways-and-catchments/rivers-estuaries-and-waterways/monitoring", "anzlicid": "ANZVI0803008554", "geonet_info_createdate": "2019-10-03", "revisiondate": "2019-10-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b787b01db52adfb53e2b273dfc5b44bc5b4da8c0", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "bc5ed10d-bcdd-56cc-a8bc-1a0d4629a533", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay ESO - ENVIRONMENTAL SIGNIFICANCE OVERLAY", "alttitle": "ESO", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:37+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46667\", \"uuid\": \"bc5ed10d-bcdd-56cc-a8bc-1a0d4629a533\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-20\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay ESO - ENVIRONMENTAL SIGNIFICANCE OVERLAY", "abstract": "This dataset contains polygon features for the individual overlay class ESO - ENVIRONMENTAL SIGNIFICANCE OVERLAY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009077", "geonet_info_createdate": "2021-07-20", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "785859b19f094a1fe57dec4db0e3bc0fe0c3c114", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9797cd60-9454-59b9-be3c-462efc75be4b", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay SLO - SIGNIFICANT LANDSCAPE OVERLAY", "alttitle": "SLO", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:38+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46670\", \"uuid\": \"9797cd60-9454-59b9-be3c-462efc75be4b\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-20\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay SLO - SIGNIFICANT LANDSCAPE OVERLAY", "abstract": "This dataset contains polygon features for the individual overlay class SLO - SIGNIFICANT LANDSCAPE OVERLAY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009092", "geonet_info_createdate": "2021-07-20", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c5957e9172199dca04bb7721ef14d5c21d86d448", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "c554668f-ec90-58fd-a6c2-dd6bbf146e58", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay RO - RESTRUCTURE OVERLAY", "alttitle": "RO", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:40+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46677\", \"uuid\": \"c554668f-ec90-58fd-a6c2-dd6bbf146e58\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-20\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay RO - RESTRUCTURE OVERLAY", "abstract": "This dataset contains polygon features for the individual overlay class RO - RESTRUCTURE OVERLAY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009088", "geonet_info_createdate": "2021-07-20", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f677fae23bb71a87cf3e6207d715f4afb855e881", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "c940e219-7e81-5ba8-8cf2-2c9ccc0fa04d", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay PSB - PROTECTED SETTLEMENT BOUNDARY", "alttitle": "PSB", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:40+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46680\", \"uuid\": \"c940e219-7e81-5ba8-8cf2-2c9ccc0fa04d\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-21\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay PSB - PROTECTED SETTLEMENT BOUNDARY", "abstract": "This dataset contains polygon features for the individual overlay class PSB - PROTECTED SETTLEMENT BOUNDARY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009099", "geonet_info_createdate": "2021-07-21", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d405be507a9d3c9fb57e1953379c979199a9d062", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "024e7667-da5b-5b86-a334-6bb31f0cd1ef", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-02-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Hydro - Water Poygon Fuzzy", "alttitle": "HY_WATER_AREA_FUZZY", "tempextentbegin": "2019-11-26T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:41+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35004\", \"uuid\": \"024e7667-da5b-5b86-a334-6bb31f0cd1ef\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-21\", \"changeDate\": \"2020-02-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Hydro - Water Poygon Fuzzy", "abstract": "This table will hold polygons depicting indicative extents of the area of the hydro feature. Each of these features has some type of non specific but best derived boundary. These geographic hydro areas depict features such as bays, beach, bend, entrance, inlet, passage, reach and seas. The polygons contain intelligent information including name, feature type and a Scale Use Code to enable labelling which is both multi scale and non scale dependent.", "anzlicid": "ANZVI0803008626", "geonet_info_createdate": "2020-02-21", "revisiondate": "2020-02-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4c5278956b7c9dab1625f774da820a5e06291358", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "54a97bd6-e5bd-5b95-8c81-7ed87f0b8773", "publicationdate": "2018-02-01", "publishedforgroup": "12264;0", "geonet_info_changedate": "2021-10-12", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Forest Management Boundaries", "alttitle": "FORMB100_BLOCK", "tempextentbegin": "2023-01-24T00:09:42+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:42+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35005\", \"uuid\": \"54a97bd6-e5bd-5b95-8c81-7ed87f0b8773\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-08\", \"changeDate\": \"2021-10-12\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Forest Management Boundaries", "abstract": "Polygons delineating Forest Management Blocks. The layer also contains aggregations of forest management blocks representing other administrative boundaries such as Forest Districts, Work Centres, Forest Management Areas (FMAs), VicForests Adiminstrative areas and an approximation to RFAs based on blocks. This is implemented via the use of Arc/Info region attribute tables.", "anzlicid": "ANZVI0803005587", "geonet_info_createdate": "2017-03-08", "revisiondate": "2021-10-12", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e4b2440ff6df9277efdd01d767f08df82dd7c4bc", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0c139db2-b375-535e-84be-e0e4588e94f9", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Infrastructure Voltage Table", "alttitle": "IN_VOLTAGE", "tempextentbegin": "2023-01-24T00:09:43+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:43+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46702\", \"uuid\": \"0c139db2-b375-535e-84be-e0e4588e94f9\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-27\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Infrastructure Voltage Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803009108", "geonet_info_createdate": "2021-07-27", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9adbd900eba5ac91e29612de0c2fb3b5e82ea689", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "18f0d03c-2f92-58e0-8029-ba6aea63f44c", "publicationdate": "2022-07-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-28", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "shapefile ArcSDE", "type": "dataset", "title": "Urban Water Corporation Boundaries", "alttitle": "URBAN_WATER_CORP", "tempextentbegin": "2007-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35011\", \"uuid\": \"18f0d03c-2f92-58e0-8029-ba6aea63f44c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-01-07\", \"changeDate\": \"2022-07-28\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Urban Water Corporation Boundaries", "abstract": "Boundaries defining the approximate jurisdiction of the Urban Water Corporations.", "anzlicid": "ANZVI0803005816", "geonet_info_createdate": "2019-01-07", "revisiondate": "2022-07-28", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2faf8ae35c3b01ce22cc317c55164019e3270e89", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "16e89cd3-7277-59b5-ad38-4998108d1afa", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay PO - PARKING OVERLAY", "alttitle": "PO", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:34+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46656\", \"uuid\": \"16e89cd3-7277-59b5-ad38-4998108d1afa\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-20\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay PO - PARKING OVERLAY", "abstract": "This dataset contains polygon features for the individual overlay class PO - PARKING OVERLAY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009087", "geonet_info_createdate": "2021-07-20", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "08356e37c35b79b7a6586496b991792819f35db4", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "5fa9c81f-700f-5d70-a8da-bdf1f34787ee", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay DPO - DEVELOPMENT PLAN OVERLAY", "alttitle": "DPO", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:35+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46660\", \"uuid\": \"5fa9c81f-700f-5d70-a8da-bdf1f34787ee\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-20\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay DPO - DEVELOPMENT PLAN OVERLAY", "abstract": "This dataset contains polygon features for the individual overlay class DPO - DEVELOPMENT PLAN OVERLAY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009074", "geonet_info_createdate": "2021-07-20", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "864bb52262a1dfc403ca64c0927351012a8e07a6", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "696ce85d-5f55-5ed1-a23e-f4aa4e643fca", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay SRO - STATE RESOURCE OVERLAY", "alttitle": "SRO", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:35+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46661\", \"uuid\": \"696ce85d-5f55-5ed1-a23e-f4aa4e643fca\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-20\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay SRO - STATE RESOURCE OVERLAY", "abstract": "This dataset contains polygon features for the individual overlay class SRO - STATE RESOURCE OVERLAY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009094", "geonet_info_createdate": "2021-07-20", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4c12a1df470fe18498d2dd2a73a306a35f96eec8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "6af538d2-a809-5a16-b184-117db6d1c8c0", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay RXO - ROAD CLOSURE OVERLAY", "alttitle": "RXO", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:35+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46662\", \"uuid\": \"6af538d2-a809-5a16-b184-117db6d1c8c0\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-20\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay RXO - ROAD CLOSURE OVERLAY", "abstract": "This dataset contains polygon features for the individual overlay class RXO - ROAD CLOSURE OVERLAY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009089", "geonet_info_createdate": "2021-07-20", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "225ba0618c84f4ef2c22b9c3c632303f9c276389", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6ff93564-63b5-56bf-a8d4-b32ffc28741e", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-04-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - all major formats available", "type": "dataset", "title": "PLM25 Overlays including Reference Areas, Heritage Rivers, Wilderness Zones, Remote & Natural Areas and Natural Catchment Areas", "alttitle": "PLM25_OVERLAYS", "tempextentbegin": "2008-08-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-10-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34985\", \"uuid\": \"6ff93564-63b5-56bf-a8d4-b32ffc28741e\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-01-11\", \"changeDate\": \"2022-04-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "PLM25 Overlays including Reference Areas, Heritage Rivers, Wilderness Zones, Remote & Natural Areas and Natural Catchment Areas", "abstract": "This dataset was created in conjunction with PLM25, to represent the management overlays. The attributes are based on the PLM25 structure. \nThe overlays have been mapped at 1:25 000, using VicMap topographic data to create more accurate and identifiable boundaries.\n\nPLM25_OVERLAYS is located under the CROWNLAND schema. It has been created in conjunction with PLM25 to ensure the overlays match the PLM25 land management categories.\n\nPLEASE NOTE: This dataset now replaces the PLM100 overlays.\n\nPLM25_OVERLAYS have been created by loading Reference areas, wilderness zones, heritage rivers, remote and natural areas and natural catchment areas into one dataset. They are also available as separate datasets.\n\nThis dataset is a representation of the certified plans - the gazettal and certified plans are the official boundaries.\n\nCurrently the creation process is not automated or synchronised with PLM25 updates.\nFor more information please contact the Information Services Division.", "anzlicid": "ANZVI0803004650", "geonet_info_createdate": "2017-01-11", "revisiondate": "2022-04-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7434c8b58526aa5de66ee0060c206f1fca385762", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "b940814e-eea5-5ab1-bd73-f737466655f0", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay SMO - SALINITY MANAGEMENT OVERLAY", "alttitle": "SMO", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:36+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46665\", \"uuid\": \"b940814e-eea5-5ab1-bd73-f737466655f0\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-20\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay SMO - SALINITY MANAGEMENT OVERLAY", "abstract": "This dataset contains polygon features for the individual overlay class SMO - SALINITY MANAGEMENT OVERLAY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009093", "geonet_info_createdate": "2021-07-20", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "24f36bd40e288a8b170b7588b45d097f7eb05725", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "83d8f4e8-cc42-5135-8ea4-148b36bc49ea", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-07-03", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Lite - Place (Built Up Area) Polygon - 1:250,000 to 1:5,000,000", "alttitle": "VMLITE_BUILT_UP_AREA", "tempextentbegin": "2006-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2017-04-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35045\", \"uuid\": \"83d8f4e8-cc42-5135-8ea4-148b36bc49ea\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-07-03\", \"changeDate\": \"2020-07-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Lite - Place (Built Up Area) Polygon - 1:250,000 to 1:5,000,000", "abstract": "This layer is part of Vicmap Lite and contains polygon features delineating built up areas. Vicmap Lite datasets are suited for use between scales of 1: 250,000 and 1 : 5 million. The polygons were sourced from Vicmap Features. The level of attribute information, the number of features and the number of vertices has been simplified to suit the 1: 250,000 - 1 : 5 million scale range. The concept of a Scale Use Code has been introduced to help control the level of detail displayed.\n\nTHIS DATASET WAS LAST UPDATED IN MAY 2017", "anzlicid": "ANZVI0803003518", "geonet_info_createdate": "2020-07-03", "revisiondate": "2020-07-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "048a131726d4d77c0aed9d24543d07a5834861d6", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "74cb699c-164d-5f78-a2d6-516cb6ecd7cd", "publicationdate": "2023-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Current Mining Licences and Leases", "alttitle": "MIN", "tempextentbegin": "1989-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:09:54+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35046\", \"uuid\": \"74cb699c-164d-5f78-a2d6-516cb6ecd7cd\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Current Mining Licences and Leases", "abstract": "Regions showing the extent of Mining Licences currently lodged with Earth Resources Regulations.\nThe boundaries are derived from a combination of entering graticular boundaries (exact AMG co-ordinates) and digitizing along areas of land status (Earth Resources version of landmmt100) which are unable to be mined or explored. Refer to the Mineral Resources (Sustainable Development) Act (MRSDA) 1990 for more detail. (MIN is included in ML)\n\nNOTE: For GeoVic, \"Operating Gold Mines\" are a subset of this dataset where during the current financial year the tenement recorded production in excess of 100 kg Au, and/or are currently at an advanced stage of resource development with a target production rate of at least 100kg Au per year.", "anzlicid": "ANZVI0803002195", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "76069e49d1d1e9022bf6f6dd2337fd823bb25610", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "b53b571b-311b-5b82-968f-25dfa2a75a26", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:25,000 Edition 46", "alttitle": "MELWAY_MAPINDEX_25_ED46", "tempextentbegin": "2018-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2018-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46763\", \"uuid\": \"b53b571b-311b-5b82-968f-25dfa2a75a26\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:25,000 Edition 46", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:25 000 Phillip Island maps.", "anzlicid": "ANZVI0803009164", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "cf438d987b2d108b13177699c981152134b3b243", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "0a65ec8d-67d0-54e1-8812-9c78be834973", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:25,000 Edition 45", "alttitle": "MELWAY_MAPINDEX_25_ED45", "tempextentbegin": "2017-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2017-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46770\", \"uuid\": \"0a65ec8d-67d0-54e1-8812-9c78be834973\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:25,000 Edition 45", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:25 000 Phillip Island maps.", "anzlicid": "ANZVI0803009165", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b3736f6c8d8b0d4d0fb765e84c35abc6b9b2644f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9e086bf1-2076-5a88-a5e0-676b0ab6d304", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 46", "alttitle": "MELWAY_MAPINDEX_10_ED46", "tempextentbegin": "2018-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2018-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46774\", \"uuid\": \"9e086bf1-2076-5a88-a5e0-676b0ab6d304\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 46", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:10 000 inner urban maps.", "anzlicid": "ANZVI0803009140", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2347673c3188ff02dbd1c338dfd08bd22829f38b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "2b5dacfe-f2ee-5df9-9eaf-d2c91c8024a9", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:20,000 Edition 46", "alttitle": "MELWAY_MAPINDEX_20_ED46", "tempextentbegin": "2018-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2018-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46777\", \"uuid\": \"2b5dacfe-f2ee-5df9-9eaf-d2c91c8024a9\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:20,000 Edition 46", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:20 000 Greater Melbourne maps.", "anzlicid": "ANZVI0803009156", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a8855837d80bfc9c2835dfb0c17b8cec09ecfeae", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "054a33b1-9d39-5daf-8efd-75a93ff04a21", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "product", "title": "Geophysical Interpretations - Earth Resources Spatial Data Collection for the Datamart.", "alttitle": "DM_MIN_GEOP_INTERP", "tempextentbegin": "1998-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:09:59+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35059\", \"uuid\": \"054a33b1-9d39-5daf-8efd-75a93ff04a21\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geophysical Interpretations - Earth Resources Spatial Data Collection for the Datamart.", "abstract": "Polygons and lines of geophysical interpretations. Specifically at 1:1,000,000, 1:500,000, 1:250,000 & 1:100,000 scales.\nCollected for Earth Resources within DSDBI", "anzlicid": "ANZVI0803003430", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e548f2c9d22b95ca0fa97e68ebfdcb6c2e79b575", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "90b50843-ea46-5ce5-b3df-4d52bcf7563f", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:25,000 Edition 39", "alttitle": "MELWAY_MAPINDEX_25_ED39", "tempextentbegin": "2011-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2011-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46779\", \"uuid\": \"90b50843-ea46-5ce5-b3df-4d52bcf7563f\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:25,000 Edition 39", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:25 000 Phillip Island maps.", "anzlicid": "ANZVI0803009171", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c421275810e9e1211a813d5341c8184f784d3ccf", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "ac04e9ac-b95b-5eb6-93a6-68f2b1c98121", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 40", "alttitle": "MELWAY_MAPINDEX_10_ED40", "tempextentbegin": "2012-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2012-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46780\", \"uuid\": \"ac04e9ac-b95b-5eb6-93a6-68f2b1c98121\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 40", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:10 000 inner urban maps.", "anzlicid": "ANZVI0803009146", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e13ad4702135dcd3d7fe00e2673b0ed8d7c7c585", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "67ea9c0a-4e92-5507-aee9-460dc66dca50", "publicationdate": "2022-05-19", "publishedforgroup": "12264;0", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - State Assembly Polygon 2001", "alttitle": "STATE_ASSEMBLY_2001", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Victorian Electoral Commission", "tempextentend": "2023-01-24T00:10:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35063\", \"uuid\": \"67ea9c0a-4e92-5507-aee9-460dc66dca50\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - State Assembly Polygon 2001", "abstract": "State wide data showing Lower House boundaries and names. These are the Legislative Assembly Electoral Districts referred to as the Lower House Boundaries.\nElectoral Boundaries are defined under the requirements of the Electoral Boundaries Commission Act 1982.\n\nSUPERSESED dataset by VMADMIN_STATE_ASSEMBLY_2013.", "anzlicid": "ANZVI0803002630", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "060983529448c22657bf7cea5d4981215e8dd7ac", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "270ed072-a948-5733-85e6-0dd435dd30dc", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:15,000 Edition 46", "alttitle": "MELWAY_MAPINDEX_15_ED46", "tempextentbegin": "2018-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2018-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46784\", \"uuid\": \"270ed072-a948-5733-85e6-0dd435dd30dc\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:15,000 Edition 46", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:15 000 Queenscliffe maps.", "anzlicid": "ANZVI0803009148", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b97b352fb64d6fc3ae6f068d4a6f5ce4227687d2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "b219500c-eceb-5532-bc76-196e43323279", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 44", "alttitle": "MELWAY_MAPINDEX_10_ED44", "tempextentbegin": "2016-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2016-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46785\", \"uuid\": \"b219500c-eceb-5532-bc76-196e43323279\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 44", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:10 000 inner urban maps.", "anzlicid": "ANZVI0803009142", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "44192ca8ddd36ea256a79c474fe35a5e97e1d0a9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "18cc2c98-0d40-529a-ba61-314e709dd89e", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:60,000 Edition 42", "alttitle": "MELWAY_PAGEGRID_60_ED42", "tempextentbegin": "2014-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2014-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46792\", \"uuid\": \"18cc2c98-0d40-529a-ba61-314e709dd89e\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:60,000 Edition 42", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:60 000 Phillip Island maps.", "anzlicid": "ANZVI0803009237", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "863ab52d98963da6b50c2dadcabba8f05e183ed1", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9879fbbd-c37e-5a15-a355-4f9f896e4bd3", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-01-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - Fire Rescue Victoria (FRV) Response Area Polygon", "alttitle": "FRV_RESPONSE_AREA", "tempextentbegin": "2020-06-30T14:00:00+00:00", "resowner": "Fire Rescue Victoria;Fire Rescue Victoria", "tempextentend": "2023-01-24T00:09:47+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46735\", \"uuid\": \"9879fbbd-c37e-5a15-a355-4f9f896e4bd3\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-04\", \"changeDate\": \"2022-01-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - Fire Rescue Victoria (FRV) Response Area Polygon", "abstract": "Part of the Vicmap Admin dataset series. This layer contains polygon features deliminating FRV's response area.\n\nNOTE: This dataset superceded FRV_LEGISLATED_BOUNDARY in August 2021, to better reflect the operational aspect of the dataset and ensure no confusion with the legislated FRV boundaries defined on Landata.\n\nThis data is current as of 1 Dec 2021.", "anzlicid": "ANZVI0803009126", "geonet_info_createdate": "2021-08-04", "revisiondate": "2022-01-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "62660c0012a140564bfdf6555c86c3cf3e2c3e66", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "f9636b2d-ecd4-517f-9878-98e90291d5a0", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:25,000 Edition 42", "alttitle": "MELWAY_MAPINDEX_25_ED42", "tempextentbegin": "2014-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2014-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46743\", \"uuid\": \"f9636b2d-ecd4-517f-9878-98e90291d5a0\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:25,000 Edition 42", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:25 000 Phillip Island maps.", "anzlicid": "ANZVI0803009168", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f650b903c3c1498bac5d90f32007ddee08a27216", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9c9c58e3-f6c8-5d2b-8eda-c86854e10996", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcInfo", "type": "dataset", "title": "GSV Unpublished Map Sheet Index", "alttitle": "GSVMIUPUB", "tempextentbegin": "1989-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "1997-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries;economy;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35028\", \"uuid\": \"9c9c58e3-f6c8-5d2b-8eda-c86854e10996\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "GSV Unpublished Map Sheet Index", "abstract": "Contains Boundaries and Information about Geological Survey of Victorias UnPublished Map Boundaries", "anzlicid": "ANZVI0803002228", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "3c2ea4e9ef78021a04cdc0ed0d77bb41689e0f32", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a20f6feb-f273-507e-a5ac-6fbaea83cd0a", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-15", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL. As per data.vic, spatial datamart and fme.", "type": "dataset", "title": "Geological Deep Leads (1:250,000)", "alttitle": "DEEPLD250_POLYGON", "tempextentbegin": "1995-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2023-01-24T00:09:49+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35030\", \"uuid\": \"a20f6feb-f273-507e-a5ac-6fbaea83cd0a\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-10-11\", \"changeDate\": \"2022-09-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological Deep Leads (1:250,000)", "abstract": "The data displays areas of geological deep leads\n\nThe data have been collected by the Geological Survey of Victoria. The dataset is accompanied by other datasets representing geology outcrop and boundaries, structural lines, miscellaneous lines and points, miscellaneous polygons, and placer deposits.", "anzlicid": "ANZVI0803002727", "geonet_info_createdate": "2019-10-11", "revisiondate": "2022-09-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5e8565938f2e3cf0aa7e645e11dd0db3790cbf9e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "0766c6ac-f2dc-58cf-ba02-eb8c240014ef", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:25,000 Edition 40", "alttitle": "MELWAY_MAPINDEX_25_ED40", "tempextentbegin": "2012-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2012-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46747\", \"uuid\": \"0766c6ac-f2dc-58cf-ba02-eb8c240014ef\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:25,000 Edition 40", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:25 000 Phillip Island maps.", "anzlicid": "ANZVI0803009170", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "70b0e2d4b49d5301111ff0acbba1f75fb451b79a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9ee7732c-e459-5673-ad9f-5b12b66b2991", "publicationdate": "2019-01-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-23", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "ArcVIew", "type": "dataset", "title": "Wind Farm Roads for Victoria", "alttitle": "WIND_FARM_ROADS", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-11-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35031\", \"uuid\": \"9ee7732c-e459-5673-ad9f-5b12b66b2991\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-11-21\", \"changeDate\": \"2021-07-23\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Wind Farm Roads for Victoria", "abstract": "Wind Farms Roads locations for Victoria \n\nWind energy has the potential to provide a significant proportion of Victoria's growth in renewable energy generation over the next coming years. The Government supports the development of wind energy in appropriate locations.\n\nPlanning Scheme Amendment VC82, make it clear where in Victoria a wind energy facility may be considered. The planning reform guarantees the residents of rural and regional Victoria certainty and fairness in wind farm planning decisions and ensures that communities are given a say in major planning applications.\n\nThe linear dataset that refers to the locations of Turbines", "anzlicid": "ANZVI0803005962", "geonet_info_createdate": "2018-11-21", "revisiondate": "2021-07-23", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ab112e682c9196c65182494fa093311e8aa1693b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "a4aa5388-c6e7-5bcb-9e87-add7253108be", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 42", "alttitle": "MELWAY_MAPINDEX_10_ED42", "tempextentbegin": "2014-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2014-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46749\", \"uuid\": \"a4aa5388-c6e7-5bcb-9e87-add7253108be\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 42", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:10 000 inner urban maps.", "anzlicid": "ANZVI0803009144", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0c0b8ec6bef4779c4d6df0a233daa945838cf27e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "a075f42d-8f7a-53fa-8fe7-216a1814e670", "publicationdate": "2019-06-29", "publishedforgroup": "12264;0", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:20,000 Edition 45", "alttitle": "MELWAY_MAPINDEX_20_ED45", "tempextentbegin": "2017-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2017-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46754\", \"uuid\": \"a075f42d-8f7a-53fa-8fe7-216a1814e670\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:20,000 Edition 45", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:20 000 Greater Melbourne maps.", "anzlicid": "ANZVI0803009157", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e7c3cad10eeba7167af499c85c5bf5d6be952b59", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "7d0702ad-ebd3-5cc3-8d6d-436ce63007be", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 41", "alttitle": "MELWAY_MAPINDEX_10_ED41", "tempextentbegin": "2013-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2013-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46755\", \"uuid\": \"7d0702ad-ebd3-5cc3-8d6d-436ce63007be\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 41", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:10 000 inner urban maps.", "anzlicid": "ANZVI0803009145", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0328bf918f493804161f2df67a55a6e68ed3f03b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "554fa3f7-7881-5dc2-a9dc-503c31e23b9b", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay MAEO - MELBOURNE AIRPORT ENVIRONS OVERLAY", "alttitle": "MAEO", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:32+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46650\", \"uuid\": \"554fa3f7-7881-5dc2-a9dc-503c31e23b9b\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-20\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay MAEO - MELBOURNE AIRPORT ENVIRONS OVERLAY", "abstract": "This dataset contains polygon features for the individual overlay class MAEO - MELBOURNE AIRPORT ENVIRONS OVERLAY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009084", "geonet_info_createdate": "2021-07-20", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c10abfe8177ae1d900df22b9c8ed86929077ff22", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "d6ce6489-979b-54b6-a0c0-e3ebfeebf42e", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay PAO - PUBLIC ACQUISITION OVERLAY", "alttitle": "PAO", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:32+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46651\", \"uuid\": \"d6ce6489-979b-54b6-a0c0-e3ebfeebf42e\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-20\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay PAO - PUBLIC ACQUISITION OVERLAY", "abstract": "This dataset contains polygon features for the individual overlay class PAO - PUBLIC ACQUISITION OVERLAY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009086", "geonet_info_createdate": "2021-07-20", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "90754fe3b73ec7c6d5a8c4f5690b2876e9f5e247", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "eec34e23-a733-5997-86af-aa3c9c604900", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:5,000 Edition 42", "alttitle": "MELWAY_MAPINDEX_5_ED42", "tempextentbegin": "2014-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2014-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46796\", \"uuid\": \"eec34e23-a733-5997-86af-aa3c9c604900\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:5,000 Edition 42", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:5 000 city maps.", "anzlicid": "ANZVI0803009176", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "de0e7a471bbac7ba6f164eb4c995053003a6cc85", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "1b0ce959-e801-5c42-b6e8-1d341269e2e0", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:20,000 Edition 40", "alttitle": "MELWAY_PAGEGRID_20_ED40", "tempextentbegin": "2012-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2012-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46845\", \"uuid\": \"1b0ce959-e801-5c42-b6e8-1d341269e2e0\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:20,000 Edition 40", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:20 000 greater Melbourne maps.", "anzlicid": "ANZVI0803009212", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "465b95a74ce21a86a3c72a335cc8487db582409b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "3172abda-b321-5ba7-a51f-5bb72fafc21f", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:10,000 Edition 45", "alttitle": "MELWAY_PAGEGRID_10_ED45", "tempextentbegin": "2017-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2017-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46854\", \"uuid\": \"3172abda-b321-5ba7-a51f-5bb72fafc21f\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:10,000 Edition 45", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:10 000 inner urban maps.", "anzlicid": "ANZVI0803009189", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c4b87e379088104cd455ac77c31f8c16acb88d77", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d78d9fca-488a-5156-b64b-5802c36efe92", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "VicGrid94 Graticule - 1 km interval", "alttitle": "GRAT_VG94_1K", "tempextentbegin": "2023-01-24T00:10:22+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:10:22+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35138\", \"uuid\": \"d78d9fca-488a-5156-b64b-5802c36efe92\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-03-18\", \"changeDate\": \"2022-02-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "VicGrid94 Graticule - 1 km interval", "abstract": "This dataset is designed to be used as a \"graticule layer\", allowing a graticule to be drawn on maps when using software packages that don't support their generation in other ways. It consists of lines spaced at 1km intervals, running north-south (attributed with Easting) and east-west (attributed with Northing). It is applicable for use where a VicGrid94 graticule is required. Can be projected to provide a Vicgrid94 graticule over data based on other co-ordinate systems (eg Geographic or MGA).\n\nThis dataset forms part of a series of graticule layers, one for each common projection.", "anzlicid": "ANZVI0803002859", "geonet_info_createdate": "2016-03-18", "revisiondate": "2022-02-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ce3b397a368cea2c04eee00cc25f945a61f767f4", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "14fc5847-bb49-56b8-a6dc-83452a78129e", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Limited Distribution", "format": "ArcInfo", "type": "dataset", "title": "Sand Dunes - Polygons (1:100,000)", "alttitle": "SDUNE100_POLYGON", "tempextentbegin": "1995-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35139\", \"uuid\": \"14fc5847-bb49-56b8-a6dc-83452a78129e\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-09\", \"changeDate\": \"2022-09-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Sand Dunes - Polygons (1:100,000)", "abstract": "Sand Dunes - Polygons for a single 1:100,000 map area", "anzlicid": "ANZVI0803005579", "geonet_info_createdate": "2016-02-09", "revisiondate": "2022-09-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2a57067b954f43f84dd8a8cdc2f8c39c517e959b", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "65da9f35-f6ca-5427-9e47-34f4a78edc45", "publicationdate": "2019-01-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-12", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Land Administration Themes - Supply Detail Table", "alttitle": "VLAT_SUPPLY", "tempextentbegin": "2023-01-24T00:10:22+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:10:22+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46867\", \"uuid\": \"65da9f35-f6ca-5427-9e47-34f4a78edc45\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-12\", \"changeDate\": \"2022-07-12\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Vicmap Land Administration Themes - Supply Detail Table", "abstract": "VLAT_SUPPLY is part of the Vicmap Land Administration Themes (VLAT) prooduct. This dataset includes the current and retired states of each feature instance. It supports feature versioning (UFI_RETIRED)..\n\nVLAT_SUPPLY is an aspatial table that provides information about each supply including the version and associated from and to dates.\n\nart of VLAT, VLAT_SUPPLY is an aspatial table that provides information about each supply including the version and associated from and to dates.", "anzlicid": "ANZVI0803009245", "geonet_info_createdate": "2021-08-12", "revisiondate": "2022-07-12", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "01f917fa9eaeb30b37d3f60e9c6911522689b570", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "3e00e04b-a8ae-5800-b615-d4cbb5c10e15", "publicationdate": "2022-12-26", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "UNIQUE_HOUSENUM_PT_APPROVED", "alttitle": "UNIQUE_HOUSENUM_PT_APPROVED", "tempextentbegin": "2021-08-12T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-08-12T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46871\", \"uuid\": \"3e00e04b-a8ae-5800-b615-d4cbb5c10e15\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-13\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "UNIQUE_HOUSENUM_PT_APPROVED", "abstract": "Prototype data to improve performance of map labels in VicPlan. This is a point feature class with the house number (street address number) and PFI as the only attributes in the data. The data has also had duplicate records removed so there only exists one (unique) point for each approved property address\n\nSource for this data is VMADD.ADDRESS", "anzlicid": "ANZVI0803009246", "geonet_info_createdate": "2021-08-13", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8ef394d7a304aa46256683c8abf15e193e64a984", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "dd163719-4493-5e1e-833f-073f43a04bf7", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Administrative Victorian Government Region Table", "alttitle": "AM_VICGOV_REGION", "tempextentbegin": "2023-01-24T00:10:25+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:10:25+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35151\", \"uuid\": \"dd163719-4493-5e1e-833f-073f43a04bf7\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Administrative Victorian Government Region Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003219", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "92079725fcbbba1d619835aabc87229f745c46be", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c85fcdcb-c464-569d-8615-46ff4033ad21", "publicationdate": "2020-07-28", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "PTV SkyBus Routes (Airport Service)", "alttitle": "PTV_SKYBUS_ROUTE", "tempextentbegin": "2018-02-28T13:00:00+00:00", "resowner": "Department of Transport", "tempextentend": "2023-01-24T00:10:07+00:00", "maintenanceandupdatefrequency_text": "Quarterly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35089\", \"uuid\": \"c85fcdcb-c464-569d-8615-46ff4033ad21\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-02\", \"changeDate\": \"2022-02-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "PTV SkyBus Routes (Airport Service)", "abstract": "This layer depicts a spatial object (polyline) representing SkyBus routes. Each polylines represents a unique route variation. Each coach route has attributes that describe route, trip headsign (direction), route length, first/last stop, number of stops and operator name. The data has been generated from the PTV GTFS data with extra attributes from PTV's TransNet database. \nThis dataset supersedes \"PTV_BUS_ROUTE_METRO\" (which included SkyBus routes).\nThis dataset was first loaded into the VSDL in March 2018 and will be updated approximately quarterly.", "anzlicid": "ANZVI0803005847", "geonet_info_createdate": "2018-03-02", "revisiondate": "2022-02-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f8b8dff810f804acde08debd9a6e245659ba4e33", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "b2b98962-7480-5aa0-9587-67bef8ae37d4", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:60,000 Edition 45", "alttitle": "MELWAY_PAGEGRID_60_ED45", "tempextentbegin": "2017-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2017-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46820\", \"uuid\": \"b2b98962-7480-5aa0-9587-67bef8ae37d4\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:60,000 Edition 45", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:60 000 Phillip Island maps.", "anzlicid": "ANZVI0803009234", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "cd38c809d42aeb88db583d138bc75d69c1e7482a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "84ffac57-17f4-5ea8-a885-1c95db6a3561", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:5,000 Edition 44", "alttitle": "MELWAY_PAGEGRID_5_ED44", "tempextentbegin": "2016-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2016-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46824\", \"uuid\": \"84ffac57-17f4-5ea8-a885-1c95db6a3561\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:5,000 Edition 44", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:5 000 city maps.", "anzlicid": "ANZVI0803009225", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "df97ce4a0b0d1ac9084bc8218b85f76d99065fcf", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "28f4b15a-bff4-58a9-80e2-a77df6fcc0e1", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:5,000 Edition 43", "alttitle": "MELWAY_MAPINDEX_5_ED43", "tempextentbegin": "2015-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2015-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46826\", \"uuid\": \"28f4b15a-bff4-58a9-80e2-a77df6fcc0e1\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:5,000 Edition 43", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:5 000 city maps.", "anzlicid": "ANZVI0803009175", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "075fea33a292e6f26db2eac8bf060732c8a7b45a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "c6758a78-6f0a-5fec-afb3-e8f38448c0ca", "publicationdate": "2022-02-03", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-04-04", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "DIGITAL - all major formats available", "type": "dataset", "title": "Traditional Owner overlays represents the area of land under the TOS ACT that has been granted as Aboriginal Title", "alttitle": "PLM25_OVERLAYS_TO", "tempextentbegin": "2016-03-29T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-07-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35158\", \"uuid\": \"c6758a78-6f0a-5fec-afb3-e8f38448c0ca\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-08-03\", \"changeDate\": \"2022-04-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Traditional Owner overlays represents the area of land under the TOS ACT that has been granted as Aboriginal Title", "abstract": "This dataset was created in conjunction with PLM25, to represent the management overlays. The attributes are based on the PLM25 structure.\nThe overlays contains information extracted from the States cadastre for allotments that have Aboriginal Title granted in association with a settlement agreement under the Traditional Owner Settlement Act.\nPLM25_OVERLAYS_TO is located under the CROWNLAND schema. It has been created in conjunction with PLM25 to ensure the overlays match the PLM25 land management categories.\n\nPLEASE NOTE: This dataset is new and was created in 2016.", "anzlicid": "ANZVI0803005632", "geonet_info_createdate": "2016-08-03", "revisiondate": "2022-04-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0f180d72c3fa11c418b5ef2233f3d41fb9095673", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "545463df-853e-5c13-b585-0785c8e5e357", "publicationdate": "2022-07-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Statewide Marine Habitat Map 2021", "alttitle": "VIC_MARINE_HABITAT_MAP_2021", "tempextentbegin": "2021-08-23T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-08-23T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46917\", \"uuid\": \"545463df-853e-5c13-b585-0785c8e5e357\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-24\", \"changeDate\": \"2022-08-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Statewide Marine Habitat Map 2021", "abstract": "Combined Port Phillip Bay habitat model developed by DELWP 2021 and Open Coast Deakin marine mapping campaign JAN 2019. \n\nThe PPB map was built to predict habitat distributions by applying Random Forest machine learning tools which integrate ground truthed data and environmental predictors. The resulting Habitat Complex map represents 19 different habitat complexes across Port Phillip Bay at Level 3 Combined Biotope Classification Scheme (CBiCS) described by Edmunds and Flynn (2015, 2018; 2021). A total of 8,325 ground-truth records were used within the model (of the 9,683 records) that met the Random Forest modelling criteria (\u00bf5 unique values for each biotope category; Breiman 2001). Environmental parameters were sourced from different methods including lidar, multibeam, and indexes calculated from the Digital Elevation Model (DEM), and mapped at a resolution of 2.5 metres. The Random forest model produced an accuracy (Out-of-bag) of 91%. Link to methodology: https://www.marineandcoasts.vic.gov.au/__data/assets/pdf_file/0031/537169/Mazor-et-al-2021_Port-Phillip-Bay-CBiCS-Habitat-Model.pdf\n\nThe Open Coast statewide marine habitat map (excluding PPB) developed by Deakin Marine Mapping lab using a range of techniques including digitisation of polygons and has been compiled using a compilatiom of various datasets including Boon et al. (2011). Deakin Marine Mapping (Young M et al, 2018). GeoHab Victoria Estuaries Geomorphology (2010). Deakin Marine Mapping (Zavalas, R et al. 2018), DELWP wetlands (1994), Monk et al 2011, Roob and Ball (1997), Ford et al 2016, Edmunds and Flynn (2015), Blake and Ball (2001), Poore (1992), Cohen et al (2000). The map has later been reclassified to CBICS habitat classification scheme at broad-scale level 2 and 3.", "anzlicid": "ANZVI0803009286", "geonet_info_createdate": "2021-08-24", "revisiondate": "2022-08-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "729249ab12981470e23b08ec28165c0086fc67a1", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "4da26d10-0260-598c-a390-7004526f481b", "publicationdate": "2019-12-17", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-10-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "Feature Class", "type": "dataset", "title": "Wetland Intervention Monitoring Program monitoring sites", "alttitle": "WIMP_SITES", "tempextentbegin": "2017-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:10:38+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35191\", \"uuid\": \"4da26d10-0260-598c-a390-7004526f481b\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-10-08\", \"changeDate\": \"2019-10-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "limitedDistribution", "defaulttitle": "Wetland Intervention Monitoring Program monitoring sites", "abstract": "The Wetland Intervention Monitoring Program (WIMP) is a state-wide, long-term program for assessing the effectiveness of management activities commonly applied in wetlands. This data set maps the location of monitoring sites included in the program.", "anzlicid": "ANZVI0803008544", "geonet_info_createdate": "2019-10-08", "revisiondate": "2019-10-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8579f17ffecda4083e35d6a35c25afa216b53369", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d708c9fb-d020-5a18-8faa-d8c98aaf3062", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-10-24", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL: ESRI ArcSDE export, ESRI Shapefile, MapInfo TAB, Oracle Spatial", "type": "dataset", "title": "Victorian Coastal Inundation Sea Level Rise 2070", "alttitle": "SLR47CM_2070", "tempextentbegin": "2009-09-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:10:39+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35195\", \"uuid\": \"d708c9fb-d020-5a18-8faa-d8c98aaf3062\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-10-24\", \"changeDate\": \"2017-10-24\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Coastal Inundation Sea Level Rise 2070", "abstract": "The Victorian Coastal Inundation Dataset (the product) is a digital dataset consisting of eight spatial layers modelling the extent of land subject to coastal inundation due to projected sea level rise from 2009 to 2100.\nThis product is recommended for use at a scale of approximately 1:75,000 or less detail to reflect the limitations in the modelling and the recommended catchment to regional scale of inundation assessments with this product. The product is NOT suitable for assessments of potential risks at property level.\n\nThe datasets available are:\nSea Level Rise:\n- SLR00CM_2009 - Current (2009) sea level \n- SLR20CM_2040 - Projected 20cm sea level rise by 2040 \n- SLR47CM_2070 - Projected 47cm sea level rise by 2070 \n- SLR82CM_2100 - Projected 82cm sea level rise by 2100 \n\nStorm tide (1-in-100 year) with added wind forcing plus sea level rise\n- SLR00CM_ST_2009 - Current (2009) inundation to 1-in-100 year storm tide level \n- SLR20CM_ST_2040 - Inundation to 1-in-100 year storm tide level with storm surge increased by 6% plus 20 cm sea level rise \n- SLR47CM_ST_2070 - Inundation to 1-in-100 year storm tide level with storm surge increased by 13% plus 47 cm sea level rise \n- SLR82CM_ST_2100 - Inundation to 1-in-100 year storm tide level with storm surge increased by 19% plus 82 cm sea level rise\n\nInteractive Map:-\nhttp://mapshare.maps.vic.gov.au/gvh270hydra/\n> Future Coasts (Modelled)\n\nThis data has been computed to support the Victorian Governments Future Coasts Project.", "anzlicid": "ANZVI0803004729", "geonet_info_createdate": "2017-10-24", "revisiondate": "2017-10-24", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4893e79a06f7ae953b4621539e2fc202583db9f9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "259286de-df57-5040-ae91-6e72a1dbdf69", "publicationdate": "2019-06-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-08-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Not Known", "type": "dataset", "title": "Victorian Water Asset Database (VWAD) - POLYGON_LAYER", "alttitle": "VWAD_PY", "tempextentbegin": "2013-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-05-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35197\", \"uuid\": \"259286de-df57-5040-ae91-6e72a1dbdf69\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-08-05\", \"changeDate\": \"2015-08-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Water Asset Database (VWAD) - POLYGON_LAYER", "abstract": "Victorian Water Asset Database (VWAD), contains the identification of water assets and their attributes for the state of Victoria. The VWAD includes features such as lakes, rivers, creeks, wetlands, water storages, estuaries, groundwater aquifers, springs, large marine intertidal zones,\nbut does not include specific irrigation and water supply infrastructure such as irrigation channels, bores and irrigation distribution networks.", "anzlicid": "ANZVI0803005340", "geonet_info_createdate": "2015-08-05", "revisiondate": "2015-08-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9ac9af8e179f9595e1abb20768e4e6e576089e04", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "ada037db-b61d-5dfa-9def-b34d977679a4", "publicationdate": "2022-12-26", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "UNIQUE_ADDRESS_PT_PROPOSED", "alttitle": "UNIQUE_ADDRESS_PT_PROPOSED", "tempextentbegin": "2021-08-12T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-08-12T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46979\", \"uuid\": \"ada037db-b61d-5dfa-9def-b34d977679a4\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-09-02\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "UNIQUE_ADDRESS_PT_PROPOSED", "abstract": "Prototype data to improve performance of map labels in VicPlan. This is a point feature class with the address and PFI as the only attributes in the data. The data has also had duplicate records removed so there only exists one (unique) point for each proposed property address.\n\nSource for this data is VMADD.ADDRESS", "anzlicid": "ANZVI0803009310", "geonet_info_createdate": "2021-09-02", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "555fb11bfb322b778f5feef7e016fe931fcb62bc", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3b35f080-4088-56db-89ee-9a3afba94c4c", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Port Fairy Coastal Erosion and River Hazard", "alttitle": "PF_COAST_HAZARD_RIVERS", "tempextentbegin": "2012-04-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2013-04-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;geoscientific information;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35074\", \"uuid\": \"3b35f080-4088-56db-89ee-9a3afba94c4c\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-07-12\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Port Fairy Coastal Erosion and River Hazard", "abstract": "The Port Fairy Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Port Fairy coastal environment.\n\nThis data identifies areas where coastal erosion hazard may be subjected to potential water course entrance stability processes in addition to, or independent of, coastal setback from ocean based processes\n\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.", "anzlicid": "ANZVI0803005641", "geonet_info_createdate": "2016-07-12", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "cd732546be2d1331200ebf455709fbf9fe53995e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "63f475a4-3e5b-53af-9aed-25c1100cbba5", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:60,000 Edition 46", "alttitle": "MELWAY_MAPINDEX_60_ED46", "tempextentbegin": "2018-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2018-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46799\", \"uuid\": \"63f475a4-3e5b-53af-9aed-25c1100cbba5\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:60,000 Edition 46", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:60 000 Phillip Island maps.", "anzlicid": "ANZVI0803009180", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fb687fa46622d37f3693bfcce48c89c7392463ff", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "4d8cd54f-6774-537d-be49-67bc2386ba91", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:60,000 Edition 46", "alttitle": "MELWAY_PAGEGRID_60_ED46", "tempextentbegin": "2018-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2018-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46802\", \"uuid\": \"4d8cd54f-6774-537d-be49-67bc2386ba91\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:60,000 Edition 46", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:60 000 Phillip Island maps.", "anzlicid": "ANZVI0803009233", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "3ab5c7685a751958a5d50241b935a35bd83b8e43", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "86789e76-95cf-5d12-b457-c34299bd739e", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:25,000 Edition 42", "alttitle": "MELWAY_PAGEGRID_25_ED42", "tempextentbegin": "2014-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2014-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46806\", \"uuid\": \"86789e76-95cf-5d12-b457-c34299bd739e\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:25,000 Edition 42", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:25 000 Phillip Island maps.", "anzlicid": "ANZVI0803009218", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "92baca5d75a210f7bc6f07d0e18f5e125bc07730", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "2682781f-2284-5154-9600-2525d213d68d", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:60,000 Edition 47", "alttitle": "MELWAY_PAGEGRID_60_ED47", "tempextentbegin": "2019-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2019-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35184\", \"uuid\": \"2682781f-2284-5154-9600-2525d213d68d\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-10-04\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:60,000 Edition 47", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:60 000 Phillip Island maps.", "anzlicid": "ANZVI0803004601", "geonet_info_createdate": "2018-10-04", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6b94e4eaebc557695f79e9f4295a2b42114511c0", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "fc1a1c2f-4364-5dc3-b5f8-50fe1a8f29a6", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:20,000 Edition 39", "alttitle": "MELWAY_PAGEGRID_20_ED39", "tempextentbegin": "2011-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2011-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46831\", \"uuid\": \"fc1a1c2f-4364-5dc3-b5f8-50fe1a8f29a6\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:20,000 Edition 39", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:20 000 greater Melbourne maps.", "anzlicid": "ANZVI0803009213", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f3b1aff05ca2e75b14cdf05021176c8ae60de98d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "e9df501c-58f7-534f-996c-ef788bab057a", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:20,000 Edition 43", "alttitle": "MELWAY_PAGEGRID_20_ED43", "tempextentbegin": "2015-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2015-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46839\", \"uuid\": \"e9df501c-58f7-534f-996c-ef788bab057a\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:20,000 Edition 43", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:20 000 greater Melbourne maps.", "anzlicid": "ANZVI0803009209", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2d8cdde58ae7b6a4442916f0e698aeaf7e061845", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "d9119c10-b557-588f-993e-f66dfcf1d6d4", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:5,000 Edition 42", "alttitle": "MELWAY_PAGEGRID_5_ED42", "tempextentbegin": "2014-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2014-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46840\", \"uuid\": \"d9119c10-b557-588f-993e-f66dfcf1d6d4\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:5,000 Edition 42", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:5 000 city maps.", "anzlicid": "ANZVI0803009227", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "aa8df4c268b146fda739cc13075798f110dce675", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "30ac6167-9ee2-5849-a888-c2890b178cc7", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:60,000 Edition 44", "alttitle": "MELWAY_MAPINDEX_60_ED44", "tempextentbegin": "2016-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2016-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46843\", \"uuid\": \"30ac6167-9ee2-5849-a888-c2890b178cc7\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:60,000 Edition 44", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:60 000 Phillip Island maps.", "anzlicid": "ANZVI0803009182", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d1197cc4622ac1bc95c17524456009b929ccff59", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0ba63dff-edac-5a95-99af-1cd616a81f76", "publicationdate": "2018-11-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2018-11-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Not Known", "type": "dataset", "title": "Victorian Land Use Information System 2016-2017", "alttitle": "LANDUSE_2017", "tempextentbegin": "2005-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2017-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Biannually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35208\", \"uuid\": \"0ba63dff-edac-5a95-99af-1cd616a81f76\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-11-08\", \"changeDate\": \"2018-11-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Land Use Information System 2016-2017", "abstract": "The Victorian Land Use Information System (VLUIS) 2016/17 dataset has been created by the Spatial Information Sciences Group of the Agriculture Victoria Research in the Department of Economic Development, Jobs, Transport, and Resources. It covers the entire landmass of Victoria and separately describes the land tenure, land use and land cover across the state at the cadastral parcel level.\n\nThe methodology for creating the VLUIS is described in Morse-McNabb et al. (2015) with the following notable changes:\n1. Land use data provided by the Office of the Valuer-General of Victoria for the 2014 year has been used as a base input. Readily available sources of land use information from government and industry have been used to provide updates to the land tenure and land use components of the 2016/17 dataset. The source dataset and source date are recorded for each parcel. The land cover mapping method remains unchanged to previous versions of the VLUIS.\n2. The Australian Land Use and Management (ALUM) Classification, version 8, has been added to the attribute table. The VLUIS land use code fields have been translated across to the ALUM classification. Version 8 has been used you can find the ALUM Classification on the Department of Agriculture and Water Resources ABARES ALUM page: http://www.agriculture.gov.au/abares/aclump/land-use/alum-classification. \n3. Land parcels within urban areas, mapped in previous versions, have been masked out and have been renamed as Built Up Areas vastly reducing the size of the 2016/17 dataset. Land cover for Built Up Areas (LC_CODE = BUILT) is listed as null.\n4. Road reserves and road parcels have been merged together and renamed Voids. Land cover for Voids (LC_CODE = VOID) is listed as null.\n5. Parcels <12.5 hectares: land cover has not been attributed as the resolution of MODIS cannot support classifications of polygons smaller than 12.5 hectares.\n\nThe data is in the form of an ESRI feature class. \n\nTo use the VLUIS data correctly it is important to understand the difference between the three components of VLUIS. The Guidelines for land use mapping in Australia: principles, procedures and definitions, Edition 3 published in 2006 by the Commonwealth of Australia, defines them as follows: \nLand tenure is the form of an interest in land. Some forms of tenure (such as pastoral leases or nature conservation reserves) relate directly to land use and land management practice. \nLand use means the purpose to which the land cover is committed. Some land uses, such as agriculture, have a characteristic land cover pattern. These usually appear in land cover classifications. Other land uses, such as nature conservation, are not readily discriminated by a characteristic land cover pattern. For example, where the land cover is woodland, land use may be timber production or nature conservation. \nLand cover refers to the physical surface of the earth, including various combinations of vegetation types, soils, exposed rocks and water bodies as well as anthropogenic elements, such as agriculture and built environments. Land cover classes can usually be discriminated by characteristic patterns using remote sensing.\n\nA metadata statement, for the VLUIS product, and ESRI symbology files for the data can be freely downloaded from the VLUIS project page on the Victorian Resources Online website: http://vro.agriculture.vic.gov.au/dpi/vro/vrosite.nsf/pages/vluis\n\nDOI 10.26279/5b96043f7bd02", "anzlicid": "ANZVI0803005950", "geonet_info_createdate": "2018-11-08", "revisiondate": "2018-11-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2d455227c31980d524144806c1a39aeaad796a79", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "bf6672d6-3116-591b-9f99-22dc239da850", "publicationdate": "2021-10-06", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "MapInfo, ESRI Shape", "type": "dataset", "title": "Urban Development Program - Major Residential Redevelopments Sites 2020", "alttitle": "MRS2020", "tempextentbegin": "2020-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2020-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"47047\", \"uuid\": \"bf6672d6-3116-591b-9f99-22dc239da850\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-09-29\", \"changeDate\": \"2022-08-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Urban Development Program - Major Residential Redevelopments Sites 2020", "abstract": "The Urban Development Program (UDP) monitors and reports on major residential redevelopment projects across metropolitan Melbourne. Major redevelopment projects are those comprising ten or more dwellings. Data is collected from commercial data sources and through analysis of aerial imagery, and is verified through consultations with local council representatives.\nThese include projects which may have an existing planning permit, or are in the planning processes, those that are current under construction, as well as potential longer term projects on sites that local councils have identified for residential purposes.\nA timing classification is attributed to each project based on commercial data sources, consultation with local councils, and the stage the project has reached in the planning process. The Urban Development Program reports on major redevelopment projects using the following categories:\n\u00bf\tCompleted (a project was completed from Jan 2017 to Jan 2019)\n\u00bf\tUnder Construction (a project was under construction at Jan 2019)\n\u00bf\tFirm (Recent planning approval, project with pre-sales)\n\u00bf\tLikely (In planning assessment, planning permit extension may be required to develop)\n\u00bf\tPossible (Long term redevelopment site, permit lapsed ).\n\nWhile the UDP acknowledges a proportion of proposed projects may be abandoned or delayed, the classification process provides an indicator of available supply provided there is sufficient demand. In addition, it is acknowledged there are also sites within the established parts of Melbourne that may be suitable for residential development into the future but have not yet been identified. The UDP will continue to report on these sites as they are identified for redevelopment for residential purposes.\nIt should also be noted that the timings attached to these projects are indicative. Construction rates can be cyclical in nature, and highly dependent on underlying demand and pre-sales, economic cycles and industry capacity. This can mean that stated development intentions will vary from on the-ground construction activity over time and by location.", "anzlicid": "ANZVI0803009321", "geonet_info_createdate": "2021-09-29", "revisiondate": "2022-08-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1d7778bb06be2db4d5c1e0e38a11b9255fb87263", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "bb5847f7-6cbb-558c-a16f-d51ce6bf8861", "publicationdate": "2021-11-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "MapInfo, ESRI Shape", "type": "dataset", "title": "Urban Development Program - Industrial Land 2020", "alttitle": "IND2020", "tempextentbegin": "2020-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2020-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"47048\", \"uuid\": \"bb5847f7-6cbb-558c-a16f-d51ce6bf8861\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-09-29\", \"changeDate\": \"2022-08-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Urban Development Program - Industrial Land 2020", "abstract": "Identifies all industrial land and the development status and size of each land parcel in hectare across metropolitan Melbourne.\nThis information identifies all industrial zoned land (Industrial 1, 2 and 3 as well as Commercial 2 Zone), and land of an industrial character and includes the Airport Business Parks, selected Special Use Zones, selected Comprehensive Development Zones and specific precincts within the Activity Centre Zones and Urban Growth Zones.\nEach land parcel is assessed as being either Unavailable (currently being used) or Supply (vacant).\n\nUrban Development Program (UDP).", "anzlicid": "ANZVI0803009324", "geonet_info_createdate": "2021-09-29", "revisiondate": "2022-08-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "15013822d8877f0a3007bd92f0473cc0ff87e7af", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "99ff165f-261e-548e-a9c7-3541f4890b52", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-11-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL All major formats available on request", "type": "dataset", "title": "Port Phillip Bay Depth Contours at 1:25,000", "alttitle": "BATHYMETRY_PORT_PHILLIP_ARC", "tempextentbegin": "1971-01-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2000-05-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35210\", \"uuid\": \"99ff165f-261e-548e-a9c7-3541f4890b52\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-11-13\", \"changeDate\": \"2014-11-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Port Phillip Bay Depth Contours at 1:25,000", "abstract": "This layer contains line features for depth contours (bathymetry) in Port Phillip Bay.", "anzlicid": "ANZVI0803004025", "geonet_info_createdate": "2014-11-13", "revisiondate": "2014-11-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "04f2caa1ceeba173593ff25fdb2d46dd413fa436", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "b1135b78-8d5a-50a3-b9c5-942aa7bc9ed7", "publicationdate": "2022-08-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "MapInfo, ESRI Shape, KML", "type": "dataset", "title": "Urban Development Program - Greenfield Residential Land 2021", "alttitle": "BH2021", "tempextentbegin": "2021-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"47050\", \"uuid\": \"b1135b78-8d5a-50a3-b9c5-942aa7bc9ed7\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-09-29\", \"changeDate\": \"2022-08-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Urban Development Program - Greenfield Residential Land 2021", "abstract": "Identifies undeveloped land for residential development generally on the fringe of the metropolitan area. Each record in the database details the subdivision and planning status of the land, the area of the site in hectares and the potential lot yield. Other details are also records against each site .\n \nThis information maps land areas for both the supply and recent subdivision\n-Unzoned englobo land requiring a PSP\n-Zoned englobo land\n-Proposed lots\n-Lots with a title\n\nUrban Development Program (UDP).", "anzlicid": "ANZVI0803009323", "geonet_info_createdate": "2021-09-29", "revisiondate": "2022-08-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "efcf2aa83dc060345fe60452f3e64a38528e3534", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a94e30f0-c7c7-5ced-b97a-d45c329aa412", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, MapInfo, Non digital - plotted maps", "type": "dataset", "title": "Geological zones of contact metamorphism interpreted from geophysical interpretation (1:250,000) Polygon", "alttitle": "GPCONMETA250_POLYGON", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35317\", \"uuid\": \"a94e30f0-c7c7-5ced-b97a-d45c329aa412\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-29\", \"changeDate\": \"2022-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological zones of contact metamorphism interpreted from geophysical interpretation (1:250,000) Polygon", "abstract": "This dataset displays areas of contact and regional metamorphism, and the style of metamorphism, mapped using using combined interpretations of airborne magnetic, radiometric and gravity survey data at 1:250,000.\n\nAt scales larger than 1:120,000 the display is a combination of both 1:100,000 and 1:250,000 geophysical mapping. Recent 1:250,000 geophysical mapping has been of such quality and detail it has been used to supersede older coincident 1:100,000 mapping. This occurs in the following areas: St Arnaud 7524, Dunolly 7624, Charlton 7525, Wedderburn 7625 and part of Ararat 7423 are superseded by St Arnaud SJ54-4. Bendigo 7724, Heathcote 7824 and Nagambie 7924 are superseded by Bendigo SJ55-1. \n\nBalmoral 7223, Ararat 7423, Horsham SJ54-3 and St Arnaud SJ54-4 supersede Grampians 7323 where there is overlap.\n\nThe Ouyen SI54-15 and Horsham SJ54-3 map areas are datasets derived from a combination of Geological Interpretation of Basement Geophysical Features maps and Geological Interpretation of Post-Cratonic Geophysical Features maps performed by Moore, D. H.\n\nThis data has been collected by the Geological Survey of Victoria. This dataset is accompanied by other datasets representing geological polygons and boundaries, sub-surface geological polygons, structural lines and miscellaneous lines.", "anzlicid": "ANZVI0803003416", "geonet_info_createdate": "2018-03-29", "revisiondate": "2022-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "66f022b86ba9dd4a17c523b87925e935b9235460", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2b74b619-9bce-55f9-8575-64b249ceafb1", "publicationdate": "2022-04-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-04-12", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Shapefile", "type": "dataset", "title": "Bushbank Target Landscapes", "alttitle": "BUSHBANK_TARGET_LANDSCAPES", "tempextentbegin": "2021-11-29T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2022-03-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"47603\", \"uuid\": \"2b74b619-9bce-55f9-8575-64b249ceafb1\", \"schema\": \"iso19115-3\", \"createDate\": \"2022-04-04\", \"changeDate\": \"2022-04-12\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Bushbank Target Landscapes", "abstract": "The Target landscape map ranks locations in Victoria according to their potential to concurrently deliver biodiversity and carbon benefits. A very high rank means that revegetation will deliver very high benefits for carbon and very high benefits for biodiversity. Revegetation in a moderate rank location will deliver at least a moderate benefit for both carbon and biodiversity but may deliver a high or very high benefit for either carbon or biodiversity.\n\nLast revision March 2022", "anzlicid": "ANZVI0803009442", "geonet_info_createdate": "2022-04-04", "revisiondate": "2022-04-12", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4e72b962206a2dfe3e5024e9eaf86ed6bcfdc14b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f1f2d26b-1df0-5bb6-b329-918244e22385", "publicationdate": "2019-11-22", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-11-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Watertable Salinity", "alttitle": "WATERTABLE_SALINITY", "tempextentbegin": "1979-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-03-14T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35321\", \"uuid\": \"f1f2d26b-1df0-5bb6-b329-918244e22385\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-21\", \"changeDate\": \"2019-11-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Watertable Salinity", "abstract": "This dataset comprises watertable salinity for Victoria. Salinity concentration has been mapped in mg/L for Total Dissolved Solids (TDS) using the following classes: <600, 601-1200, 1201-3100, 3101-5400, 5401-7100, 7101-10000, >10000. These classes reflect the beneficial use segments prescribed in the State Environment Protection Policy (Waters) (2018).", "anzlicid": "ANZVI0803004915", "geonet_info_createdate": "2019-11-21", "revisiondate": "2019-11-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7f9e210881326fe52fd6c77b3075f4cad0d217b6", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "77c96843-b2aa-5cfc-a973-ff99575b15fc", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - State Council Polygon 2001", "alttitle": "STATE_COUNCIL_2001", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Victorian Electoral Commission", "tempextentend": "2005-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35322\", \"uuid\": \"77c96843-b2aa-5cfc-a973-ff99575b15fc\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2022-07-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - State Council Polygon 2001", "abstract": "State wide data showing Upper House boundaries and names. These are the Legislative Council Electoral Boundaries referred to as the Upper House Boundaries .\nElectoral Boundaries are defined under the requirements of the Electoral Boundaries Commission Act 1982.\n\nSUPERSESED dataset by VMADMIN_STATE_COUNCIL_2005", "anzlicid": "ANZVI0803002625", "geonet_info_createdate": "2019-09-04", "revisiondate": "2022-07-14", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9713753f6b0d63ef703e2ae23506c5fc567c763a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "730b4c03-38e2-554c-b8a0-8ce4041c6a54", "publicationdate": "2022-08-31", "publishedforgroup": "12264;0", "geonet_info_changedate": "2022-04-11", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Forest Management Zones Update Layer", "alttitle": "FMZ_UPDATE", "tempextentbegin": "1987-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:11:19+00:00", "maintenanceandupdatefrequency_text": "Quarterly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"47623\", \"uuid\": \"730b4c03-38e2-554c-b8a0-8ce4041c6a54\", \"schema\": \"iso19115-3\", \"createDate\": \"2022-04-11\", \"changeDate\": \"2022-04-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Forest Management Zones Update Layer", "abstract": "Forest management planning (FMP) in Victoria aims to attain a balance between economics, conservation, and social values in managing the States forests. This may be achieved by integrated planning for multiple-use with effective public participation. The FMP process results in a zoning scheme which divides state forest into zones which can be managed for specific purposes, such as conservation or timber harvesting, whilst maintaining an overall balance between uses, and assuring the forest resource is managed sustainably. Please refer to the 'Coverage' section of the 'Quality' page for an explanation of area differences between FMZ 100 and the published Forest Management Plans.", "anzlicid": "ANZVI0803009448", "geonet_info_createdate": "2022-04-11", "revisiondate": "2022-04-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "79646390a9ba4a8731a83b5e20775c5a4c3359a1", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "61277d0e-9e40-5ec7-b69e-2d441aeaff71", "publicationdate": "2022-04-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-06-06", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital format", "type": "dataset", "title": "Fuel Hazard Management Units", "alttitle": "FUEL_HAZ_MGT_UNITS", "tempextentbegin": "2022-04-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2022-04-19T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;farming;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"47651\", \"uuid\": \"61277d0e-9e40-5ec7-b69e-2d441aeaff71\", \"schema\": \"iso19115-3\", \"createDate\": \"2022-04-20\", \"changeDate\": \"2022-06-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Fuel Hazard Management Units", "abstract": "This layer represents polygon boundaries that define the Fuel Hazard Management Units to calculate compliance with the 'Fuel Hazard in Fire Management Zones' provisions of the Code of Practice for Timber Production 2014 (as amended from time to time) (the Code).\nThe definition provided in the Code (Amended 2022) is: 'fuel hazard management unit' means an area of land of that description shown in the spatial information in the Fuel Hazard Management layer in the Victorian Spatial Data Library, published by the Secretary or delegate. A fuel hazard management unit typically encompasses several fire management zones across a broader landscape, region or district.", "anzlicid": "ANZVI0803009453", "geonet_info_createdate": "2022-04-20", "revisiondate": "2022-06-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f98b40ee839bb688674d6d7d00ddf0e6022fa50a", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "86aefed7-30e4-5dfe-aed2-eb42b586e6d8", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats available: \u00b7 MapInfo \u00b7 ESRI 'SHAPE' files \u00b7 DXF File \u00b7 Intergraph.DGN \u00b7 DWG (AutoCAD)", "type": "nonGeographicDataset", "title": "Planning scheme ordinance Victorian Planning Provisions Links", "alttitle": "PLAN_ORDINANCE_VPP_LGA_URL", "tempextentbegin": "2022-05-05T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:11:21+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"47688\", \"uuid\": \"86aefed7-30e4-5dfe-aed2-eb42b586e6d8\", \"schema\": \"iso19115-3\", \"createDate\": \"2022-05-06\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Planning scheme ordinance Victorian Planning Provisions Links", "abstract": "This dataset Victorian Planning Provisions Ordinance links contains URL links to Planning Scheme Ordinance representing zone and overlay controls for all Victorian planning schemes. This data contains an additional LGA (LGA_CODE) attribute to enable access to the new format html planning scheme ordinance web pages.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone code\n- LGA name\n- LGA code\n-URL", "anzlicid": "ANZVI0803009457", "geonet_info_createdate": "2022-05-06", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "477c696d63d50d74d29c28e2fb5698c1c1ba0f0d", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5cfb1304-471e-51ef-a382-fd156dd51840", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Bank Condition Reach Summary Table", "alttitle": "ISC2010_BANK_CONDITION_R", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35292\", \"uuid\": \"5cfb1304-471e-51ef-a382-fd156dd51840\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Bank Condition Reach Summary Table", "abstract": "The ISC2010_BANK_CONDITION_R table is the Statistical Summary table for the Bank Condition Metric at the Reach level. The Bank Condition Metric is an assessment of the proportion of the bank face that is eroding above expected rates.\n\nThe ISC2010_BANK_CONDITION_R table is designed to JOIN to the ISC2010_RIVER_CENTRELINES_R feature class.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005127", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8d5a74fe1a314e33302a784041f9a64f72e71215", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f2f59e8e-fce4-5c57-9af9-0c505a057dd2", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Fire Severity Classes for Caledonia & Thurra Fire in 1998", "alttitle": "FIRE_SEV98", "tempextentbegin": "2023-01-24T00:11:15+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:11:15+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35312\", \"uuid\": \"f2f59e8e-fce4-5c57-9af9-0c505a057dd2\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-10\", \"changeDate\": \"2022-02-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Fire Severity Classes for Caledonia & Thurra Fire in 1998", "abstract": "Fire Severity Classes for Caledonia & Thurra Fire in 1998 interpretted from Aerial photographs", "anzlicid": "ANZVI0803003208", "geonet_info_createdate": "2020-02-10", "revisiondate": "2022-02-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "151e49ffc467dcd55996ef24dfb7d2c000deddf6", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "6b01395c-34f4-5ab1-ba8c-3963c3dd9409", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-11", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Spatial Vision Mapbook Pagegrid 1:15,000 Edition 5", "alttitle": "MAPBOOK_PAGEGRID_15_ED5", "tempextentbegin": "2016-07-14T14:00:00+00:00", "resowner": "Spatial Vision Pty Ltd", "tempextentend": "2016-07-14T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Biannually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"47184\", \"uuid\": \"6b01395c-34f4-5ab1-ba8c-3963c3dd9409\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-11-11\", \"changeDate\": \"2021-11-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Spatial Vision Mapbook Pagegrid 1:15,000 Edition 5", "abstract": "This dataset is derived from the Mapbook directory and contains the pagegrid for the 1:15 000 Bendigo & Ballarat maps.", "anzlicid": "ANZVI0803009369", "geonet_info_createdate": "2021-11-11", "revisiondate": "2021-11-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f51ce6e1fb674d5a3711951cdf44424b76754a16", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "a6e3fd0f-018d-5ff1-ba4f-b9ea35f309eb", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-11", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Spatial Vision Mapbook Pagegrid 1:20,000 Edition 6", "alttitle": "MAPBOOK_PAGEGRID_20_ED6", "tempextentbegin": "2018-11-26T13:00:00+00:00", "resowner": "Spatial Vision Pty Ltd", "tempextentend": "2018-11-26T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Biannually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35257\", \"uuid\": \"a6e3fd0f-018d-5ff1-ba4f-b9ea35f309eb\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-05-20\", \"changeDate\": \"2021-11-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Spatial Vision Mapbook Pagegrid 1:20,000 Edition 6", "abstract": "This dataset is derived from the Mapbook directory and contains the pagegrid for the 1:20 000 town maps.", "anzlicid": "ANZVI0803004608", "geonet_info_createdate": "2013-05-20", "revisiondate": "2021-11-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "93641ae40edd6aec121034d7c52e6cb9c860408d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "8875ff1c-c528-5b90-a702-628819b1fc70", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-11", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Spatial Vision Mapbook Index 1:100,000 Edition 4", "alttitle": "MAPBOOK_MAPINDEX_100_ED4", "tempextentbegin": "2014-10-08T13:00:00+00:00", "resowner": "Spatial Vision Pty Ltd", "tempextentend": "2014-10-08T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Biannually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"47186\", \"uuid\": \"8875ff1c-c528-5b90-a702-628819b1fc70\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-11-11\", \"changeDate\": \"2021-11-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Spatial Vision Mapbook Index 1:100,000 Edition 4", "abstract": "This dataset is derived from the Mapbook directory and contains the map index for the 1:100 000 regional maps.", "anzlicid": "ANZVI0803009340", "geonet_info_createdate": "2021-11-11", "revisiondate": "2021-11-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "57f890a95c4ad87ac3086540075c8dc833f5af7b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9e54986c-a7a0-5a4d-a410-a0f20c92185f", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-11", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Spatial Vision Mapbook Index 1:150,000 Edition 3", "alttitle": "MAPBOOK_MAPINDEX_150_ED3", "tempextentbegin": "2012-08-13T14:00:00+00:00", "resowner": "Spatial Vision Pty Ltd", "tempextentend": "2012-08-13T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Biannually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"47189\", \"uuid\": \"9e54986c-a7a0-5a4d-a410-a0f20c92185f\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-11-11\", \"changeDate\": \"2021-11-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Spatial Vision Mapbook Index 1:150,000 Edition 3", "abstract": "This dataset is derived from the Mapbook directory and contains the map index for the 1:150 000 Wilsons Promontory maps.", "anzlicid": "ANZVI0803009345", "geonet_info_createdate": "2021-11-11", "revisiondate": "2021-11-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}]} \ No newline at end of file diff --git a/ckanext/datavic_harvester/data/metashare_dict.json b/ckanext/datavic_harvester/data/metashare_dict.json deleted file mode 100644 index a62ab6e..0000000 --- a/ckanext/datavic_harvester/data/metashare_dict.json +++ /dev/null @@ -1,64 +0,0 @@ -[ - { - "available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", - "resclassification": "unclassified", - "uuid": "7fc3079a-ffdb-5ba8-9f9a-382ac44187bb", - "publicationdate": "2023-01-15", - "publishedforgroup": "0;12264", - "geonet_info_changedate": "2022-08-26", - "standardname": "ISO 19115-3: 2018", - "classification_text": "Unclassified;Unclassified", - "format": "All major digital formats", - "type": "dataset", - "title": "Vicmap Crown Land Tenure - Crown Land Tenure Polygon joined to Crown Land Tenure Table with Decoded Tenure Attributes", - "alttitle": "CL_TENURE_POLYGON_DC", - "tempextentbegin": "1990-12-31T13: 00: 00+00: 00", - "resowner": "Department of Environment, Land, Water & Planning", - "tempextentend": "2023-01-20T00: 01: 08+00: 00", - "maintenanceandupdatefrequency_text": "As needed", - "locale": "eng", - "status": "notobsolete;completed", - "topiccat": "society;environment", - "geonet_info": ""{"@xmlns:geonet": "http: //www.fao.org/geonetwork", "id": "33634", "uuid": "7fc3079a-ffdb-5ba8-9f9a-382ac44187bb", "schema": "iso19115-3", "createDate": "2019-09-04", "changeDate": "2022-08-26", "source": "a18b679e-4040-4101-9fe2-82ebdd4736b2", "isPublishedToAll": "false", "view": "true", "notify": "false", "download": "true", "dynamic": "true", "featured": "false", "selected": "false", "lock": "false"}"", - "datasetlang": "eng", - "status_text": "Completed", - "mdclassification": "unclassified", - "defaulttitle": "Vicmap Crown Land Tenure - Crown Land Tenure Polygon joined to Crown Land Tenure Table with Decoded Tenure Attributes", - "abstract": "Part of the Vicmap Crown Land Tenure (Basic) dataset series. This dataset is a decoded version of Vicmap Crown Land Tenure. The model has been designed with simplicity of use in mind. Attributes have been populated with values from the aspatial tables normally supplied with Vicmap Crown Land Tenure. \n\nVicmap Crown Land Tenure is a statewide dataset series that plays a key role in the management of Victoria";"s Crown land. It was created (June 2003 - Feb 2004) from migrating LCMP layers into the Vicmap structure.\n\nThe dataset provides information about the Private use of Crown land Parcels and Crown Roads. It contains a number of Tenure types including:\n- (A) Agricultural including Unused Road licences, Water Frontage licences and Grazing licences,\n- (L) Lease including Commercial type leases,\n- (G) General Licences including miscellaneous community use licences, permits & consents\n- (P) Pipe including Water supply pipelines,\n- (RM) Reserve including land gazetted as a Reserve in Government Gazettes,\n- Tenure Identifiers, Tenure type identifiers and Tenure code identifiers.\n- Unique feature identifiers, date stamps and data quality information.\n- Cross reference to Vicmap Property.\n\nThe database is continually maintained, obtaining maintenance from authoritative sources within State Government.", - "anzlicid": "ANZVI0803003353", - "geonet_info_createdate": "2019-09-04", - "revisiondate": "2022-08-26", - "spatialrepresentationtype_text": "Vector" - }, - {"_uuid": "a0db9dd5-9fe6-5c47-88fa-54048e22eb28", - "abstract": "Part of the Vicmap Admin dataset series. This layer contains polygon features delineating the current Fire Rescue Victoria District Boundaries.\n \n Polygon features delineating FRV's ten administrative districts. FRV Districts are a sub-group of FRV Regions.\n\n This data is current as of 1 Dec 2021.", - "alttitle": "FRV_DISTRICT", - "anzlicid": "ANZVI0803008685", - "available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", - "classification_text": "Unclassified;Unclassified", - "datasetlang": "eng", - "defaulttitle": "Vicmap Admin - Fire Rescue Victoria (FRV) District Polygon", - "format": "All major digital formats", - "geonet_info": "'{"@xmlns:geonet": "http://www.fao.org/geonetwork", "id": "41696", "uuid": "a0db9dd5-9fe6-5c47-88fa-54048e22eb28", "schema": "iso19115-3", "createDate": "2020-09-11", "changeDate": "2022-01-13", "source": "a18b679e-4040-4101-9fe2-82ebdd4736b2", "isPublishedToAll": "false", "view": "true", "notify": "false", "download": "true", "dynamic": "true", "featured": "false", "selected": "false", "lock": "false"}'", - "geonet_info_changedate": "2022-01-13", - "geonet_info_createdate": "2020-09-11", - "locale": "eng", - "maintenanceandupdatefrequency_text": "As needed", - "mdclassification": "unclassified", - "publicationdate": "2022-05-19", - "publishedforgroup": "0;12264", - "resclassification": "unclassified", - "resowner": "Fire Rescue Victoria;Fire Rescue Victoria", - "revisiondate": "2022-01-13", - "spatialrepresentationtype_text": "Vector", - "standardname": "ISO 19115-3: 2018", - "status": "notobsolete;completed", - "status_text": "Completed", - "tempextentbegin": "2020-06-30T14: 00: 00+00: 00", - "tempextentend": "2023-01-23T00: 01: 23+00: 00", - "title": "Vicmap Admin - Fire Rescue Victoria (FRV) District Polygon", - "topiccat": "environment;boundaries", - "type": "dataset", - "uuid": "a0db9dd5-9fe6-5c47-88fa-54048e22eb28" - } -] diff --git a/ckanext/datavic_harvester/harvesters/__init__.py b/ckanext/datavic_harvester/harvesters/__init__.py index fbbaa08..320d617 100644 --- a/ckanext/datavic_harvester/harvesters/__init__.py +++ b/ckanext/datavic_harvester/harvesters/__init__.py @@ -1,4 +1,2 @@ from ckanext.datavic_harvester.harvesters.dcat_json import DataVicDCATJSONHarvester -from ckanext.datavic_harvester.harvesters.metashare import MetaShareHarvester from ckanext.datavic_harvester.harvesters.delwp import DelwpHarvester -from ckanext.datavic_harvester.harvesters.datavic_ckan import DataVicCKANHarvester diff --git a/ckanext/datavic_harvester/harvesters/delwp.py b/ckanext/datavic_harvester/harvesters/delwp.py index 00b8031..cf4867d 100644 --- a/ckanext/datavic_harvester/harvesters/delwp.py +++ b/ckanext/datavic_harvester/harvesters/delwp.py @@ -4,10 +4,9 @@ import logging import traceback import uuid -import re +from os import path from typing import Iterator, Optional, Any, Union -import requests from bs4 import BeautifulSoup, Tag, NavigableString from ckan import model @@ -15,14 +14,9 @@ from ckan.logic.schema import default_create_package_schema from ckanext.harvest.model import HarvestObject, HarvestObjectExtra -from ckanext.datavicmain import helpers +import ckanext.datavic_harvester.helpers as helpers from ckanext.datavic_harvester.harvesters.base import DataVicBaseHarvester -from ckanext.datavic_harvester.helpers import ( - convert_date_to_isoformat, - get_from_to, - munge_title_to_name, -) log = logging.getLogger(__name__) @@ -38,8 +32,26 @@ def info(self): "description": "Harvester for DELWP dataset descriptions serialized as JSON", } - def validate_config(self, config: Optional[str]): - config_obj: dict[str, Any] = super().validate_config(config) + def validate_config(self, config: Optional[str]) -> str: + config: str = super().validate_config(config) + config_obj = json.loads(config) + + if "full_metadata_url_prefix" not in config_obj: + raise ValueError("full_metadata_url_prefix must be set") + + if "{UUID}" not in config_obj.get("full_metadata_url_prefix", ""): + raise ValueError( + "full_metadata_url_prefix must have the {UUID} identifier in the URL" + ) + + if "resource_url_prefix" not in config_obj: + raise ValueError("resource_url_prefix must be set") + + if "license_id" not in config_obj: + raise ValueError("license_id must be set") + + if "resource_attribution" not in config_obj: + raise ValueError("resource_attribution must be set") if "dataset_type" not in config_obj: raise ValueError("dataset_type must be set") @@ -48,12 +60,17 @@ def validate_config(self, config: Optional[str]): raise ValueError("api_auth must be set") if "organisation_mapping" not in config_obj: - return config_obj + return json.dumps(config_obj, indent=4) + + self._validate_organisation_mapping(config_obj) - if not isinstance(config_obj["organisation_mapping"], list): + return json.dumps(config_obj, indent=4) + + def _validate_organisation_mapping(self, config: dict[str, Any]) -> None: + if not isinstance(config["organisation_mapping"], list): raise ValueError("organisation_mapping must be a *list* of organisations") - for organisation in config_obj["organisation_mapping"]: + for organisation in config["organisation_mapping"]: resowner: Optional[str] = organisation.get("resowner") org_name: Optional[str] = organisation.get("org-name") @@ -79,8 +96,6 @@ def validate_config(self, config: Optional[str]): except tk.ObjectNotFound: raise ValueError(f"Organisation {org_name} not found") - return config_obj - def gather_stage(self, harvest_job): log.debug(f"In {self.HARVESTER} gather_stage") self._set_config(harvest_job.source.config) @@ -94,8 +109,9 @@ def gather_stage(self, harvest_job): ] guids_in_source: list[str] = [] previous_guids: list[str] = [] + page: int = 1 - records_per_page: int = 10 + records_per_page: int = 500 harvest_source_url: str = harvest_job.source.url.rstrip("?") while True: @@ -107,19 +123,20 @@ def gather_stage(self, harvest_job): log.debug(f"{self.HARVESTER} empty document, no more records") break - for guid, as_string in self._get_guids_and_datasets(records): + for record_metadata in self._get_record_metadata(records): + guid: str = record_metadata["uuid"] batch_guids.append(guid) if guid in previous_guids: continue if guid in guids_in_db: - # Dataset needs to be udpated + # Dataset needs to be updated obj = HarvestObject( guid=guid, job=harvest_job, package_id=guid_to_package_id[guid], - content=as_string, + content=json.dumps(record_metadata), extras=[HarvestObjectExtra(key="status", value="change")], ) else: @@ -127,7 +144,7 @@ def gather_stage(self, harvest_job): obj = HarvestObject( guid=guid, job=harvest_job, - content=as_string, + content=json.dumps(record_metadata), extras=[HarvestObjectExtra(key="status", value="new")], ) @@ -137,7 +154,6 @@ def gather_stage(self, harvest_job): if len(batch_guids) > 0: guids_in_source.extend(set(batch_guids) - set(previous_guids)) - break page = page + 1 previous_guids = batch_guids @@ -162,7 +178,7 @@ def _fetch_records( self, url: str, page: int, records_per_page: int = 100 ) -> Optional[list[dict[str, Any]]]: - _from, _to = get_from_to(page, records_per_page) + _from, _to = helpers.get_from_to(page, records_per_page) request_url: str = "{}?dataset={}&start={}&rows={}&format=json".format( url, self.config["dataset_type"], _from, _to @@ -180,34 +196,20 @@ def _fetch_records( data = json.loads(resp_text) return data.get("records") - def _get_guids_and_datasets(self, datasets) -> Iterator[tuple[Optional[str], str]]: - """ - Copied & adapted from ckanext/dcat/harvesters/_json.py - - don't json.loads the `datasets` input - it already be a list of dicts - - get `uuid` from `geonet:info` property - :param content: - :return: - """ + def _get_record_metadata(self, datasets) -> Iterator[dict[str, Any]]: + """Fetch remote portal record data from `fields` field. The field + is a dict with all the dataset metadata.""" if not isinstance(datasets, list): if isinstance(datasets, dict): datasets = [datasets] else: - log.debug(f"Datasets data is not a list: {type(datasets)}") + log.debug("Datasets data is not a list: %s", type(datasets)) raise ValueError("Wrong JSON object") for dataset in datasets: - fields: dict[str, Any] = dataset.get("fields", {}) - as_string: str = json.dumps(fields) - guid: Optional[str] = fields.get("uuid") - - yield guid, as_string + yield dataset.get("fields", {}) def import_stage(self, harvest_object: HarvestObject) -> bool: - """ - Mostly copied from `ckanext/dcat/harvesters/_json.py` - :param harvest_object: - :return: - """ log.debug(f"{self.HARVESTER}: starting import stage") if not harvest_object: @@ -248,44 +250,42 @@ def import_stage(self, harvest_object: HarvestObject) -> bool: # previous_harvest_object.add() harvest_object.current = True - package_dict = self._get_package_dict(harvest_object) + pkg_dict = self._get_pkg_dict(harvest_object) # harvest_object.add() if status not in ["new", "change"]: return True - try: - if status == "new": - package_dict["id"] = str(uuid.uuid4()) - harvest_object.package_id = package_dict["id"] - # harvest_object.add() - - # Defer constraints and flush so the dataset can be indexed with - # the harvest object id (on the after_show hook from the harvester - # plugin) - model.Session.execute( - "SET CONSTRAINTS harvest_object_package_id_fkey DEFERRED" - ) - model.Session.flush() + if status == "new": + pkg_dict["id"] = str(uuid.uuid4()) + harvest_object.package_id = pkg_dict["id"] + # harvest_object.add() - elif status == "change": - package_dict["id"] = harvest_object.package_id + # Defer constraints and flush so the dataset can be indexed with + # the harvest object id (on the after_show hook from the harvester + # plugin) + model.Session.execute( + "SET CONSTRAINTS harvest_object_package_id_fkey DEFERRED" + ) + model.Session.flush() - action_name: str = "package_create" if status == "new" else "package_update" - message_status: str = "Created" if status == "new" else "Updated" + elif status == "change": + pkg_dict["id"] = harvest_object.package_id - context = self._make_context() - context["schema"] = self._create_custom_package_create_schema() + action: str = "package_create" if status == "new" else "package_update" + status: str = "Created" if status == "new" else "Updated" - package_id = tk.get_action(action_name)(context, package_dict) - log.info( - "%s: %s dataset with id %s", self.HARVESTER, message_status, package_id - ) + context = self._make_context() + context["schema"] = self._create_custom_package_create_schema() + try: + package_id = tk.get_action(action)(context, pkg_dict) + log.info("%s: %s dataset with id %s", self.HARVESTER, status, package_id) except Exception as e: + log.error(f"{self.HARVESTER}: error creating dataset: {e}") self._save_object_error( - f"Error importing dataset {package_dict.get('name', '')}: {e} / {traceback.format_exc()}", + f"Error importing dataset {pkg_dict.get('name', '')}: {e} / {traceback.format_exc()}", harvest_object, "Import", ) @@ -295,8 +295,8 @@ def import_stage(self, harvest_object: HarvestObject) -> bool: return True - def _get_package_dict(self, harvest_object): - """Create a package_dict from remote portal data""" + def _get_pkg_dict(self, harvest_object): + """Create a pkg_dict from remote portal data""" content = harvest_object.content uuid = harvest_object.guid @@ -311,69 +311,66 @@ def _get_package_dict(self, harvest_object): else "" ) - package_dict = {} - - package_dict["personal_information"] = "no" - package_dict["protective_marking"] = "official" - package_dict["access"] = "yes" - package_dict["organization_visibility"] = "all" - package_dict["workflow_status"] = "published" - package_dict["license_id"] = self.config.get("license_id", "cc-by") - - package_dict["title"] = metashare_dict.get("title") - package_dict["notes"] = metashare_dict.get("abstract", "") - package_dict["tags"] = get_tags(metashare_dict.get("topiccat")) - package_dict["last_updated"] = metashare_dict.get("geonet_info_changedate") - package_dict["extract"] = f"{package_dict['notes'].split('.')[0]}..." - package_dict["owner_org"] = self._get_organisation( + pkg_dict = {} + + pkg_dict["personal_information"] = "no" + pkg_dict["protective_marking"] = "official" + pkg_dict["access"] = "yes" + pkg_dict["organization_visibility"] = "all" + pkg_dict["workflow_status"] = "published" + pkg_dict["license_id"] = self.config.get("license_id", "cc-by") + + pkg_dict["title"] = metashare_dict.get("title") + pkg_dict["notes"] = metashare_dict.get("abstract", "") + pkg_dict["tags"] = helpers.get_tags(metashare_dict.get("topiccat")) + pkg_dict["last_updated"] = metashare_dict.get("geonet_info_changedate") + pkg_dict["extract"] = f"{pkg_dict['notes'].split('.')[0]}..." + pkg_dict["owner_org"] = self._get_organisation( self.config.get("organisation_mapping"), metashare_dict.get("resowner").split(";")[0], harvest_object, ) - if not package_dict.get("name"): - package_dict["name"] = self._get_package_name( - harvest_object, package_dict["title"] - ) + if not pkg_dict.get("name"): + pkg_dict["name"] = self._get_package_name(harvest_object, pkg_dict["title"]) if full_metadata_url: - package_dict["full_metadata_url"] = full_metadata_url + pkg_dict["full_metadata_url"] = full_metadata_url if uuid: - package_dict["primary_purpose_of_collection"] = uuid + pkg_dict["primary_purpose_of_collection"] = uuid if metashare_dict.get("resowner"): - package_dict["data_owner"] = metashare_dict["resowner"].split(";")[0] + pkg_dict["data_owner"] = metashare_dict["resowner"].split(";")[0] - package_dict["groups"] = [ + pkg_dict["groups"] = [ {"id": group.get("id")} for group in self.config["default_group_dicts"] ] - if package_dict["groups"]: - package_dict["category"] = package_dict["groups"][0] + if pkg_dict["groups"]: + pkg_dict["category"] = pkg_dict["groups"][0]["id"] - package_dict["date_created_data_asset"] = convert_date_to_isoformat( + pkg_dict["date_created_data_asset"] = helpers.convert_date_to_isoformat( metashare_dict.get("publicationdate") or metashare_dict.get("geonet_info_createdate"), "geonet_info_createdate", remote_pkg_name, ) - package_dict["date_modified_data_asset"] = convert_date_to_isoformat( + pkg_dict["date_modified_data_asset"] = helpers.convert_date_to_isoformat( metashare_dict.get("revisiondate") or metashare_dict.get("geonet_info_changedate"), "geonet_info_changedate", remote_pkg_name, ) - package_dict["update_frequency"] = map_update_frequency( - get_datavic_update_frequencies(), + pkg_dict["update_frequency"] = helpers.map_update_frequency( metashare_dict.get("maintenanceandupdatefrequency_text", "unknown"), ) - package_dict["resources"] = self._fetch_resources(metashare_dict) + pkg_dict["resources"] = self._fetch_resources(metashare_dict) - return package_dict + return pkg_dict def _get_organisation( self, @@ -388,8 +385,7 @@ def _get_organisation( organisation_mapping, resowner ) - if not owner_org: - return self._create_organization(resowner, harvest_object) + return owner_org or self._create_organization(resowner, harvest_object) def _get_existing_organization( self, organisation_mapping: list[dict[str, str]], resowner: str @@ -411,7 +407,7 @@ def _get_existing_organization( log.warning( f"{self.HARVESTER} get_organisation: No mapping found for resowner {resowner}" ) - org_name = munge_title_to_name(resowner) + org_name = helpers.munge_title_to_name(resowner) try: organisation = tk.get_action("organization_show")( @@ -435,7 +431,7 @@ def _get_existing_organization( def _create_organization(self, resowner: str, harvest_object: HarvestObject) -> str: """Create organization from a resowner field""" - org_name = munge_title_to_name(resowner) + org_name = helpers.munge_title_to_name(resowner) try: org_id = tk.get_action("organization_create")( @@ -482,7 +478,9 @@ def _get_resources_by_formats( resources: list[dict[str, Any]] = [] res_url_prefix: Optional[str] = self.config.get("resource_url_prefix") - res_url: str = f"{res_url_prefix}{uuid}" if res_url_prefix else "" + res_url: str = ( + f"{res_url_prefix}{metashare_dict['_uuid']}" if res_url_prefix else "" + ) attribution = self.config.get("resource_attribution") pkg_name: Optional[str] = metashare_dict.get("name") @@ -491,16 +489,16 @@ def _get_resources_by_formats( if not formats: return resources - for res_format in formats: + for res_format in formats.split(","): res = { "name": metashare_dict.get("alttitle") or metashare_dict.get("title"), "format": res_format, - "period_start": convert_date_to_isoformat( + "period_start": helpers.convert_date_to_isoformat( metashare_dict.get("tempextentbegin"), "tempextentbegin", pkg_name, ), - "period_end": convert_date_to_isoformat( + "period_end": helpers.convert_date_to_isoformat( metashare_dict.get("tempextentend"), "tempextentend", pkg_name, @@ -573,22 +571,14 @@ def _get_geoserver_content_with_uuid( geoserver_data: BeautifulSoup = BeautifulSoup(resp_text, "lxml-xml") return geoserver_data.find("Keyword", string=f"MetadataID={metadata_uuid}") - -def get_tags(tags: str) -> list[dict[str, str]]: - """Fetch tags from a delwp tags string, e.g `society;environment`""" - tag_list: list[str] = re.split(";|,", tags) - - return [{"name": tag} for tag in tag_list] - - -def get_datavic_update_frequencies(): - return helpers.field_choices("update_frequency") - - -def map_update_frequency(datavic_update_frequencies: list[dict[str, Any]], value: str): - """Map local update_frequency to remote portal ones""" - for frequency in datavic_update_frequencies: - if frequency["label"].lower() == value.lower(): - return frequency["value"] - - return "unknown" + def _get_mocked_records(self) -> str: + """Mock data, use it instead _make_request for develop process""" + here: str = path.abspath(path.dirname(__file__)) + with open(path.join(here, "../data/delwp_records.txt")) as f: + return f.read() + + def _get_mocked_geores(self) -> str: + """Mock data, use it instead _make_request for develop process""" + here: str = path.abspath(path.dirname(__file__)) + with open(path.join(here, "../data/delwp_geo_resource.txt")) as f: + return f.read() diff --git a/ckanext/datavic_harvester/helpers.py b/ckanext/datavic_harvester/helpers.py index 08b5f99..6ddcff0 100644 --- a/ckanext/datavic_harvester/helpers.py +++ b/ckanext/datavic_harvester/helpers.py @@ -9,6 +9,8 @@ import ckan.plugins.toolkit as tk +from ckanext.datavicmain.helpers import field_choices + log = logging.getLogger(__name__) @@ -113,7 +115,7 @@ def fetch_update_frequency(full_metadata_url: str) -> str: def convert_date_to_isoformat( - value: Optional[str], key: str, dataset_name: Optional[str], with_tz=False + value: Optional[str], key: str, dataset_name: Optional[str], strip_tz=True ) -> Optional[str]: """Convert a date string to isoformat @@ -130,7 +132,8 @@ def convert_date_to_isoformat( if not value: return log.debug(f"{dataset_name}: Missing date for key {key}") - value = value.lower().split("t")[0] if with_tz else value.split(".")[0] + value = value.split(".")[0] # strip out microseconds + value = value.lower().split("t")[0] if strip_tz else value try: date = tk.get_converter("isodate")(value, {}) @@ -174,3 +177,26 @@ def munge_title_to_name(value: str) -> str: name = re.sub("[^a-zA-Z0-9-_]", "", name).lower() name = re.sub("[-]+", "-", name) return name.strip("-")[:99] + + +def get_tags(tags: str) -> list[dict[str, str]]: + """Fetch tags from a delwp tags string, e.g `society;environment`""" + tag_list: list[str] = re.split(";|,", tags) + + return [{"name": tag} for tag in tag_list] + + +def map_update_frequency(value: str): + """Map local update_frequency to remote portal ones""" + + frequency_mapping: list[dict[str, Any]] = get_datavic_update_frequencies() + + for frequency in frequency_mapping: + if frequency["label"].lower() == value.lower(): + return frequency["value"] + + return "unknown" + + +def get_datavic_update_frequencies(): + return field_choices("update_frequency") diff --git a/setup.py b/setup.py index cdd233b..c05c3d0 100644 --- a/setup.py +++ b/setup.py @@ -64,9 +64,7 @@ # pip to create the appropriate form of executable for the target platform. entry_points=""" [ckan.plugins] - datavic_ckan_harvester=ckanext.datavic_harvester.harvesters:DataVicCKANHarvester datavic_dcat_json_harvester=ckanext.datavic_harvester.harvesters:DataVicDCATJSONHarvester - metashare_harvester=ckanext.datavic_harvester.harvesters:MetaShareHarvester delwp_harvester = ckanext.datavic_harvester.harvesters:DelwpHarvester [babel.extractors] From 8c85e89028fc37ccb892ce11ca6f2de2c9f09be6 Mon Sep 17 00:00:00 2001 From: mutantsan Date: Wed, 25 Jan 2023 12:45:46 +0200 Subject: [PATCH 17/21] SXDEDPCXZIC-90_DATAVIC-470 / finish refactor dcat_json and small fixes for delwp --- .../data/dcat_json_datasets.txt | 3304 +++++++++++++++++ ckanext/datavic_harvester/harvesters/base.py | 75 +- .../datavic_harvester/harvesters/dcat_json.py | 457 +-- ckanext/datavic_harvester/harvesters/delwp.py | 55 +- ckanext/datavic_harvester/helpers.py | 100 +- 5 files changed, 3561 insertions(+), 430 deletions(-) create mode 100644 ckanext/datavic_harvester/data/dcat_json_datasets.txt diff --git a/ckanext/datavic_harvester/data/dcat_json_datasets.txt b/ckanext/datavic_harvester/data/dcat_json_datasets.txt new file mode 100644 index 0000000..41ed05e --- /dev/null +++ b/ckanext/datavic_harvester/data/dcat_json_datasets.txt @@ -0,0 +1,3304 @@ +{ + "@context": "https://project-open-data.cio.gov/v1.1/schema/catalog.jsonld", + "@type": "dcat:Catalog", + "conformsTo": "https://project-open-data.cio.gov/v1.1/schema", + "describedBy": "https://project-open-data.cio.gov/v1.1/schema/catalog.json", + "dataset": [ + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=4a3f184ced3d48c883917804393ad420&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::melbourne-water-land-availability-for-our-space-your-place", + "title": "Melbourne Water Land Availability for Our Space Your Place", + "description": "
This dataset shows land parcels owned by Melbourne Water that have potential to be utilised for liveability related projects. The data does not provide a guarantee that the land can be used, or used by any particular activity. Authority to use the land will still need to be assessed and granted by Melbourne Water. Due to the restrictive nature of potentially using land containing assets such as pipes, pits, retarding basins etc the land has been classified into three landuse types. These types describe the potential for using the land area for different purposes. Land classified as "A" (or "Likely Available") are those area that are likely to be available for community projects and could be used for a variety of purposes depending on the space. Land classified as "L" (or "Restrictions Apply") are areas likely to be available for small scale or portable infrastructure such as park benches, goal posts, landscaping and temporary food vans. They are unlikely to be available for large scale infrastructure due to access, drainage, safety, current lease or licence agreements or other requirements. Land classified as "X" (or "Access Only") are areas likely to be available for access related activities such as walking, running or yoga. 24 hour access is usually required and infrastructure is unlikely to be permitted. To apply, visit: Our Space Your Place

Approximately 100 Melbourne Water asset datasets were used in the creation of this dataset. Rules governing the use of land on and around each asset class were established and applied to these areas. Coverage is across approximately 80% of MW owned land areas. The next edition aims to increase this to all applicable MW owned land.


NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "Land Availability Conditions" + ], + "issued": "2017-08-02T07:18:27.000Z", + "modified": "2022-05-06T05:29:14.178Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.3896,-38.5081,146.4106,-37.1463", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::melbourne-water-land-availability-for-our-space-your-place" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Land_Availability_Conditions/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::melbourne-water-land-availability-for-our-space-your-place.geojson?outSR=%7B%22latestWkid%22%3A3857%2C%22wkid%22%3A102100%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::melbourne-water-land-availability-for-our-space-your-place.csv?outSR=%7B%22latestWkid%22%3A3857%2C%22wkid%22%3A102100%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::melbourne-water-land-availability-for-our-space-your-place.kml?outSR=%7B%22latestWkid%22%3A3857%2C%22wkid%22%3A102100%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::melbourne-water-land-availability-for-our-space-your-place.zip?outSR=%7B%22latestWkid%22%3A3857%2C%22wkid%22%3A102100%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=dba0069ce11940bab87420344abdff78&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::water-supply-pumpset-assets", + "title": "Water Supply Pumpset Assets", + "description": "
Layer containing pump sets owned by Melbourne Water and used for water supply. Includes pump station name, description, pump type and other key attributes. This layer is intended to be used to locate and obtain details on Melbourne Water's water supply transfer assets for asset management, buildover (Dial-Before-You-Dig) and operational / maintenance purposes.

This layer is updated when new information is received from completed projects and updated from certified survey plans. 

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "melbourne water", + "water supply", + "pumping stations", + "pump" + ], + "issued": "2019-10-06T03:03:45.000Z", + "modified": "2021-09-15T00:22:35.817Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.7436,-37.9717,146.3590,-37.1734", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::water-supply-pumpset-assets" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Water_Supply_Pumpset_Assets/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-pumpset-assets.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-pumpset-assets.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-pumpset-assets.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-pumpset-assets.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=4985778f052d4020a6571f777a0f25ab&sublayer=1", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::sewerage-network-basins", + "title": "Sewerage Network Basins", + "description": "
This layer delineates sewer catchments upstream of retail water company hydraulic information points. Sewer catchments which contribute directly to Melbourne Water assets are also included. This layer supports Melbourne Water to communicate high level data in regards to the existence and indicative location of assets within its responsibility to ensure they are protected throughout the assets life.

This layer is updated when new information is received from completed projects and updated from certified survey plans.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "sewerage", + "basin", + "boundary", + "sewer catchments", + "melbourne water" + ], + "issued": "2019-10-06T03:06:01.000Z", + "modified": "2019-10-08T02:42:29.043Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.6467,-38.4427,145.7868,-37.6343", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::sewerage-network-basins" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Sewerage_Network_Basins/FeatureServer/1" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::sewerage-network-basins.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::sewerage-network-basins.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::sewerage-network-basins.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::sewerage-network-basins.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=92528ac14cd54a8fa174807839202b65&sublayer=10", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::retarding-basin-assets", + "title": "Retarding Basin Assets", + "description": "
Location and extent of Melbourne Water drainage retarding basins. Captured using the Top Water Level (TWL) of each, includes retarding basin name, asset section (for As Constructed drawings) and other key attributes. This layer is intended to be used to locate and obtain details on Melbourne Water's drainage assets for asset management and operational / maintenance purposes.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "melbourne water", + "retarding basins", + "drainage", + "RB", + "waterways" + ], + "issued": "2019-10-07T04:43:16.000Z", + "modified": "2019-10-11T05:32:31.596Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.4071,-38.4811,145.8852,-37.3855", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::retarding-basin-assets" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Retarding_Basin_Assets/FeatureServer/10" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::retarding-basin-assets.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::retarding-basin-assets.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::retarding-basin-assets.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::retarding-basin-assets.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=f20c34e8cafd49eb848e0f90c9822c0e&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::recycled-water-main-pipelines", + "title": "Recycled Water Main Pipelines", + "description": "
Layer containing reclaimed water (recycled) mains and associated details. Includes description, asset section (for As Constructed drawings) and key attributes. Recycled water is supplied to Melbourne's retail water companies – City West Water, South East Water and Yarra Valley Water. This layer supports Melbourne Water to communicate high level data in regards to the existence and indicative location of assets within its responsibility, to ensure they are protected throughout the assets life. 

This layer is updated when new information is received from completed projects and updated from certified survey plans. 

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "recycled water", + "melbourne water assets", + "water supply", + "melbourne", + "mains", + "transfer network", + "assets" + ], + "issued": "2019-11-13T05:45:26.000Z", + "modified": "2020-09-03T23:18:00.735Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.6284,-38.1712,145.3811,-37.9216", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::recycled-water-main-pipelines" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Recycled_Water_Main/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::recycled-water-main-pipelines.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::recycled-water-main-pipelines.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::recycled-water-main-pipelines.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::recycled-water-main-pipelines.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=ca7bc6087ede4181861f8379fe55eb24&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::hws2018-vegetation-extent-priority-for-streams", + "title": "HWS2018 Vegetation Extent Priority for Streams", + "description": "
Data describes vegetation extent priorities for each stream reach across the Melbourne Water region. Each reach is classified as either high, medium or low priority. To meet the performance objectives of the Healthy Waterways Strategy 2018 (HWS2018), high priority reaches need to be revegetated by 2028. To meet the target trajectory scores of the Healthy Waterways Strategy, medium priority reaches need to be revegetated by 2068. Vegetation priority reaches were determined by a combination of decision support tools and the co-design process. The decision support tool used was Zonation, which prioritised management actions across the region with the objective of improving instream habitat suitability for platypus, fish and macroinvertebrates.

For the most up-to-date performance objectives, see the co-designed Catchment Programs at: https://www.melbournewater.com.au/about-us/strategies-achievements-and-policies/healthy-waterways-strategy 

Results are considered fit for purpose (i.e. for waterway planning). This data set covers the entire Melbourne Water region with the exception of very small areas close to Port Phillip Bay or Western Port. For example, there are small areas of French Island which are not captured.

This data set was created using: 1. Streams dataset for the Healthy Waterways Strategy 2018. This layer was developed by GraceGIS using Melbourne Water layers as inputs.

For further reading on the prioritisation process see:
• Chee et al. (in development), Habitat Suitability Models, Scenarios and Quantitative Action Prioritisation (using Zonation) for Melbourne Water’s Healthy Waterways Strategy: A Resource Document, University of Melbourne and Melbourne Water for Melbourne Waterways Research Practice Partnership
• Melbourne Water (in development), Healthy Waterways Strategy Resource Document, Presentation of revegetation priority reaches for the Healthy Waterways Strategy 2018.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "Healthy Waterways Strategy 2018", + "Vegetation", + "Revegetation", + "Canopy", + "Waterways", + "Streams", + "Land" + ], + "issued": "2019-09-05T07:35:49.000Z", + "modified": "2020-02-05T06:53:47.003Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.0836,-38.4941,146.1648,-37.2301", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::hws2018-vegetation-extent-priority-for-streams" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/VEG_EXTENT_PRIORITY_HWS/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-vegetation-extent-priority-for-streams.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-vegetation-extent-priority-for-streams.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-vegetation-extent-priority-for-streams.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-vegetation-extent-priority-for-streams.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=2c538ef097b64702afa908d484cbffda&sublayer=1", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::hws2018-subcatchments-with-2016-vegetation-metrics-for-riparian-and-stream-bed", + "title": "HWS2018 Subcatchments with 2016 vegetation metrics for Riparian and Stream Bed", + "description": "
Data represents vegetation coverage within the riparian zone for waterways across Melbourne Water’s region. This layer was developed by GraceGIS as part of vegetation statistics extraction for each riparian zone and stream bed for each of the subcatchments. The data was developed as part of the Healthy Waterways Strategy 2018 (HWS2018). The primary purpose of this layer is for reporting and target setting. This includes setting and reporting on targets and performance objectives relating to vegetation coverage.

Dataset was created using 1. Latest MW Drainage Network to prepare HWS stream network layer. 2. Seamless polygons were created for the stream bed: ISC 2010 streambed data and a 2 metre buffer from the network was used to develop a complete streambed layer across the Melbourne Water region. 3. Buffer polygons at 20 metres and 10 metres from the streambed representing riparian zone outside Urban Growth Boundary (UGB) area and within UGB respectively. 4. HWS Vegetation Streambed Riparian (2016) layer for these riparian and stream beds has been assembled. 5. Subc level stats are derived as detailed above.

Attribute level metadata can be viewed here

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "Healthy Waterways Strategy 2018", + "Vegetation", + "Subcatchment", + "Land", + "Riparian Zone", + "Waterways" + ], + "issued": "2019-09-05T14:00:57.000Z", + "modified": "2019-09-13T22:41:53.654Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.0723,-38.5425,146.1698,-37.2264", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::hws2018-subcatchments-with-2016-vegetation-metrics-for-riparian-and-stream-bed" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/HWS_Subc_Veg_Metrics/FeatureServer/1" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-subcatchments-with-2016-vegetation-metrics-for-riparian-and-stream-bed.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-subcatchments-with-2016-vegetation-metrics-for-riparian-and-stream-bed.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-subcatchments-with-2016-vegetation-metrics-for-riparian-and-stream-bed.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-subcatchments-with-2016-vegetation-metrics-for-riparian-and-stream-bed.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=3136c8165eff4bbdba8edf184776643d&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::melbourne-wastewater-treatment-east-daily-grid-electricity-consumption", + "title": "Melbourne Wastewater Treatment (East) - Daily Grid Electricity Consumption", + "description": "
Daily accumulated electricity supply (kWh) and daily accumulated electricity generation (kWh) into the Eastern Treatment Plant (ETP) of Melbourne Water. This data is collected using revenue quality meters across each supply line (feeder) into the plant, and Melbourne Water owned power meters for generation measurements. Melbourne Water collects and stores this feeder data as 15 minute interval data, and the generation data at real time. The data in this file summarises the electricity consumption and generation as daily usage. The time period associated with each day has been converted to a UTC time zone. This data set allows year on year comparison or daily usage against atmospheric changes i.e. temperature variance, rainfall. Feeder 1 and Feeder 2 can be combined to obtain the total Grid Electricity Consumption for ETP, and combined with the total electricity Generation to obtain the total Electricity consumption for ETP.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "Open Data" + ], + "issued": "2019-09-02T03:14:02.000Z", + "modified": "2021-04-09T06:12:22.213Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "145.1485,-38.0723,145.1854,-38.0462", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::melbourne-wastewater-treatment-east-daily-grid-electricity-consumption" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/MWC_ETP_Daily_ElectricityUse_From2014/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::melbourne-wastewater-treatment-east-daily-grid-electricity-consumption.geojson" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::melbourne-wastewater-treatment-east-daily-grid-electricity-consumption.csv" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=7c0e5ccf71854e60bb77345dc26ddb76&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::water-supply-main-pipelines", + "title": "Water Supply Main Pipelines", + "description": "
Layer containing water main centre lines and associated details. Includes water main name, description, asset section (for As Constructed drawings) and key attributes for water transfer pipes, bypass connections, aqueducts. This layer is intended to be used to locate and obtain details on Melbourne Water's water supply transfer assets for asset management, buildover (Dial-Before-You-Dig) and operational / maintenance purposes.

This layer is updated when new information is received from completed projects and updated from certified survey plans.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.

", + "keyword": [ + "melbourne water", + "water supply", + "mains", + "water supply mains", + "transfer network", + "wholesale infrastructure", + "assets" + ], + "issued": "2019-11-18T01:31:42.000Z", + "modified": "2020-10-28T02:07:42.604Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.4917,-38.3355,146.4063,-37.1728", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::water-supply-main-pipelines" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Water_Supply_Main_Pipelines/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-main-pipelines.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-main-pipelines.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-main-pipelines.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-main-pipelines.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=f927c73700a9481aaac35f8f40923b86&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::sewerage-network-main-pipelines", + "title": "Sewerage Network Main Pipelines", + "description": "
Layer containing sewer main centrelines and associated details. Includes sewer name, description, asset section (for As Constructed drawings) and key attributes for gravity mains, pressure (rising) mains, effluent reuse / recycling pipes. This layer supports Melbourne Water to communicate high level data in regards to the existence and indicative location of assets within its responsibility to ensure they are protected throughout the assets life.

This layer is updated when new information is received from completed projects and updated from certified survey plans.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "melbourne water", + "sewer main", + "sewerage", + "mains", + "wastewater", + "transfer network", + "assets" + ], + "issued": "2019-11-18T01:09:08.000Z", + "modified": "2021-12-15T21:18:07.522Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.6311,-38.4361,145.2738,-37.7148", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::sewerage-network-main-pipelines" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Sewerage_Network_Mains/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::sewerage-network-main-pipelines.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::sewerage-network-main-pipelines.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::sewerage-network-main-pipelines.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::sewerage-network-main-pipelines.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=1d833903f2464109bf1f2b5b3d84dacd&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::melbourne-drain-and-waterway-outlets", + "title": "Melbourne drain and waterway outlets", + "description": "

This data contains points representing drain and waterway outlet\nlocations, associated with a natural waterway or channel centreline, within the\nGreater Melbourne region. This region includes the Port Phillip Bay and Western\nPort coastlines. Points are captured to show the indicative location of the\nendpoint for a waterway or channel as geographic coordinates.

\n\n

The data table includes minimal attributes to assist in\nidentifying the feature.

\n\n

Data was created using the waterway (Reach) layer from original FIS\n1:50K (Vicmap Hydro) streams data set, which included only those waterways\nwithin catchments of greater than 60ha. Waterways (Reach) Rectification project\nundertaken 2001 to 2003 to review and correct the extent of the waterways reach\nnetwork to ensure a complete data set exists (using the Drainage Metropolis\nBoundary, 50K data, 1:2500 Drainage Record Plans, Drainage Limits data,\northophotos, as constructed and/or design drawings, contour data and Melway\nStreet Directory). Waterway (Reach) extents defined and attributes populated in\nGIS and AMIS for all records including assigning nodes and node numbers (for\nstart / end points) and removing any reaches less than 100 metres in length\nthat are predominantly channel assets. Waterways in extended area incorporated\nin 2005 using Vicmap Hydro data and aerial imagery, then updated in 2009/10\nusing Lidar survey data (contours). Data is maintained using Lidar survey data\n(contours) and 60 ha limits. Please refer to metadata for each dataset row\nrecord for specific source / accuracy information.

\n\n

 

\n\nNOTE: Whilst every effort has been taken in collecting, validating and\nproviding the attached data, Melbourne Water Corporation makes no\nrepresentations or guarantees as to the accuracy or completeness of this data.\nAny person or group that uses this data does so at its own risk and should make\ntheir own assessment and investigations as to the suitability and/or\napplication of the data. Melbourne Water Corporation shall not be liable in any\nway to any person or group for loss of any kind including damages, costs,\ninterest, loss of profits or special loss or damage, arising from any use,\nerror, inaccuracy, incompleteness or other defect in this data.", + "keyword": [ + "Transfer Network", + "Wholesale", + "Infrastructure", + "Assets", + "Water", + "Hydrology", + "Land", + "Topography", + "Agriculture", + "Irrigation", + "Melbourne", + "Waterways" + ], + "issued": "2020-08-14T02:13:01.000Z", + "modified": "2020-08-14T02:26:10.424Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.0834,-38.4993,146.1648,-37.2301", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::melbourne-drain-and-waterway-outlets" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Melbourne_drain_and_waterway_outlets/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::melbourne-drain-and-waterway-outlets.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::melbourne-drain-and-waterway-outlets.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::melbourne-drain-and-waterway-outlets.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::melbourne-drain-and-waterway-outlets.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=15c3c23d7ef140b4a746e7779eae92d7&sublayer=1", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::catchments-waterways-and-drains-subcatchments", + "title": "Catchments - Waterways and Drains Subcatchments", + "description": "
Catchment area for each Melbourne Water drain. Captured using available contours and drainage network information. This layer has two intended purposes: 
  1. To enable the identification of the receiving Melbourne Water waterway/drain for any property, area or point. 
  2. To provide a framework of catchments for hydrologic modelling that can be further divided or amalgamated to suit the needs of the modeller.
NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "drainage", + "waterways", + "catchments", + "melbourne", + "boundaries", + "land", + "hydraulic modelling", + "hydrology", + "stormwater" + ], + "issued": "2019-10-06T03:21:33.000Z", + "modified": "2019-12-04T01:51:16.415Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.0723,-38.5425,146.1698,-37.2264", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::catchments-waterways-and-drains-subcatchments" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Catchments_of_all_Waterways_and_Drains/FeatureServer/1" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::catchments-waterways-and-drains-subcatchments.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::catchments-waterways-and-drains-subcatchments.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::catchments-waterways-and-drains-subcatchments.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::catchments-waterways-and-drains-subcatchments.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=137150aa1de74bfb9afcfb152c231560&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::recycled-water-annual-volumes-supplied-by-melbourne-water", + "title": "Recycled Water Annual Volumes Supplied by Melbourne Water", + "description": "
Melbourne Water treats effluent to Class A recycled water standard. A proportion of this water is used onsite and provided to retail water companies to sell to recycled water customers.  This file contains annual volumes of recycled water use and sales as reporting in the organisation's annual report.

NOTE. Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "water supply", + "wastewater", + "water usage", + "recycled water", + "melbourne", + "eastern treatment plant" + ], + "issued": "2019-09-05T13:26:21.000Z", + "modified": "2019-09-20T06:21:11.289Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "143.5310,-38.8620,146.6510,-36.9560", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::recycled-water-annual-volumes-supplied-by-melbourne-water" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/MWC_Annual_RecycledWaterUseVolumes_From2012/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::recycled-water-annual-volumes-supplied-by-melbourne-water.geojson" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::recycled-water-annual-volumes-supplied-by-melbourne-water.csv" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=ab54f1679c3d4dd6b0f4030634fce861&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::water-supply-daily-volume-drawn-from-storage-dams-operated-by-melbourne-water", + "title": "Water Supply - Daily Volume Drawn from storage dams operated by Melbourne Water", + "description": "This data provides daily accumulated water usage volumes supplied from the 10 Melbourne Water storages. This data is collected using more than 120 Flow Monitoring devices across Melbourne Water's Water Transfer Pipe Network, linked to the Telemetry System. Melbourne Water collects and stores observations at six minute intervals. This data summarises the usage volume supplied by Melbourne Water over a 24 hour period (8am to 8am). Water recipients include 3 metro water retailer companies and 5 regional water authorities. This data set is best used in long and short term water demand analysis.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "Open Data", + "water supply", + "water usage", + "consumption", + "water demand", + "daily demands", + "flowmeter" + ], + "issued": "2019-09-02T02:41:50.000Z", + "modified": "2020-03-19T02:10:57.405Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.5206,-38.5699,146.4858,-37.3439", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::water-supply-daily-volume-drawn-from-storage-dams-operated-by-melbourne-water" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/MWC_Daily_BulkWaterSupply_CompleteRecord/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-daily-volume-drawn-from-storage-dams-operated-by-melbourne-water.geojson" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-daily-volume-drawn-from-storage-dams-operated-by-melbourne-water.csv" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=7db00ccb52134f53991257edfe37cade&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::water-supply-daily-volume-observed-for-storage-dams-operated-by-melbourne-water", + "title": "Water Supply - Daily Volume observed for storage dams operated by Melbourne Water", + "description": "
Daily observed Storage Dam Volumes at 10 Water Storage Dams operated by Melbourne Water. This data is collected with telemetry devices installed at the storage dams, and verified with field observations.  The storage volume is recorded at 8:00 am daily. This data is best used in long term storage volume analysis.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "Open Data", + "water supply", + "storage dams", + "dam levels", + "volumes", + "water" + ], + "issued": "2019-09-02T03:16:14.000Z", + "modified": "2020-03-19T02:10:44.837Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "143.5310,-38.8620,146.6510,-36.9560", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::water-supply-daily-volume-observed-for-storage-dams-operated-by-melbourne-water" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/MWC_Daily_StorageVolume_CompleteRecord/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-daily-volume-observed-for-storage-dams-operated-by-melbourne-water.geojson" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-daily-volume-observed-for-storage-dams-operated-by-melbourne-water.csv" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=c6eab1b4aa3e40939f35b6ee4952ddb0&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::water-supply-daily-streamflow-into-melbournes-4-major-harvesting-storage-dams", + "title": "Water Supply - Daily Streamflow (into Melbourne's 4 Major Harvesting Storage Dams)", + "description": "
This dataset provides daily measured streamflows into the four (4) major harvesting catchment dams in megalitres (ML). The streamflow is a calculated value which represents the observed 24-hour accumulated streamflow into the dam; net of any evaporation losses or rainfall gains from the dam surface. The streamflow measurement process requires reservior level, reservior gains and dam outflow data. The reservior level and dam outflow data is collected using telemetry devices. The reserviour levels are validated by Melbourne Water field operators. The dam outflow accounts for all water releases, including for consumption and for environmental purposes . The data is recorded at 8am daily. This data can be used in long and short-term catchment streamflow analysis.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "Open Data", + "water supply", + "catchment streamflows", + "storage dams", + "dam levels", + "volumes", + "water" + ], + "issued": "2019-09-02T03:17:46.000Z", + "modified": "2020-03-19T02:09:42.289Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.4758,-38.5820,146.6510,-37.2772", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::water-supply-daily-streamflow-into-melbournes-4-major-harvesting-storage-dams" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/MWC_Daily_MajorStorageStreamflow_CompleteRecord/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-daily-streamflow-into-melbournes-4-major-harvesting-storage-dams.geojson" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-daily-streamflow-into-melbournes-4-major-harvesting-storage-dams.csv" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=1e7818ddbdea415c83e0fe1f8b6e7fc2&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::melbourne-wastewater-daily-volume-received-by-melbourne-water", + "title": "Melbourne Wastewater - Daily Volume Received by Melbourne Water", + "description": "
This data provides daily accumulated inflow volumes for wastewater treatment at the two Melbourne Water site (Western and Eastern). This data is collected using network flow monitoring devices. This data has been processed and stored as official inflow volumes received by Melbourne Water over a 24 hour period (12am to 12am). Wastewater volume is the total accumulated flow received from the sewer and stormwater networks. This data set is best used in long and short term wastewater services demand analysis. 

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "wastewater", + "transfer network", + "wholesale", + "stormwater", + "sewage", + "sewerage", + "volume", + "flowrate", + "melbourne", + "eastern treatment plant", + "western treatment plant", + "daily" + ], + "issued": "2019-09-05T13:31:23.000Z", + "modified": "2020-03-19T02:08:25.726Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "143.5310,-38.8620,146.6510,-36.9560", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::melbourne-wastewater-daily-volume-received-by-melbourne-water" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/MWC_Daily_BulkWastewaterInflow_From1995/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::melbourne-wastewater-daily-volume-received-by-melbourne-water.geojson" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::melbourne-wastewater-daily-volume-received-by-melbourne-water.csv" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=c9bd7401a6274d178ed745b92d1c0ab0&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::water-supply-daily-rainfall-at-the-4-major-harvesting-storage-dams", + "title": "Water Supply - Daily Rainfall (at the 4 Major Harvesting Storage Dams)", + "description": "
Daily point rainfall values. This data is collected with rainfall telemetry devices installed at the catchment storage dams, and verified with field observations daily.  This data provides daily rainfall observed for the 24hr period from 8am to 8am. This data provides our customers and community with the daily observed rainfall information. This data is best used in long term rainfall analysis at the four major melbourne storage dams (Maroondah; O'Shannassy; Thomson; and Upper Yarra). This dataset is not suitable for event modelling which requires higher frequency observations.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "Open Data", + "water supply", + "rain", + "rainfall", + "telemetry", + "storage dams", + "catchments" + ], + "issued": "2019-09-02T03:18:38.000Z", + "modified": "2020-03-19T02:07:32.560Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.7055,-38.0743,146.4290,-37.4064", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::water-supply-daily-rainfall-at-the-4-major-harvesting-storage-dams" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/MWC_Daily_MajorCatchmentRainfall_CompleteRecord/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-daily-rainfall-at-the-4-major-harvesting-storage-dams.geojson" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-daily-rainfall-at-the-4-major-harvesting-storage-dams.csv" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=4af9de57e1c14541870905c209498a5c&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::hws2018-habitat-suitability-modelling-results-for-platypus", + "title": "HWS2018 Habitat suitability modelling results for Platypus", + "description": "
Data describes habitat suitability modelling (HSM) results for platypus. The data was developed by the University of Melbourne through the Melbourne Waterways Research Practice Partnership as part of the development of Melbourne Water’s Healthy Waterways Strategy 2018 (HWS2018). Analysis has been undertaken across the Melbourne Water operating region, where the operating region has been divided into 16,346 sub-catchments. Of these 16,346 subcatchments, 8233 contain Melbourne Water waterways. The results are presented for each of these 8233 reaches. The data was used to estimate scores for platypus presented in the HWS for three scenarios:
  • Current: habitat suitability for platypus under current conditions (i.e. 2014).
  • Current trajectory: habitat suitability for platypus under urbanisation and climate change scenarios if current management approaches continue.
  • Target trajectory: habitat suitability for platypus given urbanisation and climate change (as for current trajectory), together with (a) delivery of performance objectives of the Healthy Waterways Strategy and (b) achievement of environmental condition scores as described in the Catchment Programs of the Healthy Waterways Strategy. Presentation of habitat suitabilty model results for platypus from the Healthy Waterways Strategy 2018. 

Habitat Suitability Model results have been thoroughly reviewed and are considered fit for purpose (i.e. for waterway planning). This data set covers the entire Melbourne Water region with the exception of very small areas close to Port Phillip Bay or Western Port. For example, there are small areas of French Island which are not captured.

This data set was created using: 1. Streams dataset for the Healthy Waterways Strategy 2018. This layer was developed by GraceGIS using Melbourne Water layers as inputs. 2. Results from Habitat Suitability Modelling for the Healthy Waterways Strategy 2018. 

Further reading: Chee et al. (in development), Habitat Suitability Models, Scenarios and Quantitative Action Prioritisation (using Zonation) for Melbourne Water’s Healthy Waterways Strategy: A Resource Document, University of Melbourne and Melbourne Water for Melbourne Waterways Research Practice Partnership Melbourne Water (in development), Healthy Waterways Strategy Resource Document

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "Healthy Waterways Strategy 2018", + "Stormwater", + "Harvest", + "Infiltrate", + "Waterways", + "Hydrology", + "Impervious", + "Disconnection", + "Land" + ], + "issued": "2019-09-05T13:31:03.000Z", + "modified": "2020-08-31T05:42:06.952Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.0836,-38.4941,146.1648,-37.2301", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::hws2018-habitat-suitability-modelling-results-for-platypus" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/PLATY_HSM_HWS/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-habitat-suitability-modelling-results-for-platypus.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-habitat-suitability-modelling-results-for-platypus.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-habitat-suitability-modelling-results-for-platypus.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-habitat-suitability-modelling-results-for-platypus.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=4310d5bcf21a42bbb2103a51892fc9f8&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::water-supply-storage-dams-major-system-storage", + "title": "Water Supply Storage Dams (Major System Storage)", + "description": "
Layer containing water supply storage dams (location and extent). These are major water supply system storages. Captured using as-constructed drawings and aerial imagery, and includes storage dam name, category / type, asset identifier, as=-constructed plan references plus other key attributes. This layer is intended to be used to locate and obtain details on Melbourne Water's water supply transfer assets for asset management, buildover (Dial-Before-You-Dig) and operational or maintenance purposes.

This layer is updated when new information is received from completed projects and/or updated from certified survey plans. Melbourne Water are responsible for reviewing and accepting information which results in update to the existing layer.

Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "water supply assets", + "water supply", + "transfer network", + "wholesale", + "infrastructure assets", + "dams" + ], + "issued": "2019-09-03T03:19:11.000Z", + "modified": "2020-08-14T02:37:42.733Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.8816,-38.0069,146.4062,-37.4837", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::water-supply-storage-dams-major-system-storage" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/WS_Storage_Dam_OpenData/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-storage-dams-major-system-storage.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-storage-dams-major-system-storage.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-storage-dams-major-system-storage.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-storage-dams-major-system-storage.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=ccbcb0ba949b43dca75311aa1137e3fc&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::wastewater-outlet-daily-treated-water-quality-eastern-treatment-plant-etp-", + "title": "Wastewater Outlet - Daily Treated Water Quality - Eastern Treatment Plant (ETP) ", + "description": "
The Eastern Treatment Plant (ETP) discharges treated effluent  in accordance with EPA Victoria licence AL74284 to an ocean outfall at Boag Rocks. This file contains selected discharge quality data. Samples are taken as a grab sample at the time stamp shown in the file. Results are in milligrams per litre.

Quality parameters include: Ammonia (Ammonia as N) (mg/L), Biochemical Oxygen Demand (BOD) (mg/L), Chemical Oxygen Demand (COD) (mg/L), Nitrate plus Nitrite (mg/L), Nitrogen (Nitrogen (total)) (mg/L).

NOTE. Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "wastewater", + "treatment", + "water quality", + "recycled water", + "melbourne", + "eastern treatment plant" + ], + "issued": "2019-09-05T13:16:26.000Z", + "modified": "2019-09-05T14:30:36.565Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "143.5310,-38.8620,146.6510,-36.9560", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::wastewater-outlet-daily-treated-water-quality-eastern-treatment-plant-etp-" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/MWC_ETP_Daily_EffluentQuality_From2014/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::wastewater-outlet-daily-treated-water-quality-eastern-treatment-plant-etp-.geojson" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::wastewater-outlet-daily-treated-water-quality-eastern-treatment-plant-etp-.csv" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=b2f0498806784746b72e98c49632d1b3&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::wastewater-inlet-hourly-flow-eastern-treatment-plant-etp-", + "title": "Wastewater Inlet - Hourly Flow - Eastern Treatment Plant (ETP) ", + "description": "
The Eastern Treatment Plant (ETP) receives sewage from the eastern side of Melbourne. This file describes the volume of sewage pumped through ETP on an hourly basis.

NOTE. Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "wastewater", + "transfer network", + "wholesale", + "stormwater", + "sewage", + "sewerage", + "volume", + "flowrate", + "melbourne", + "eastern treatment plant" + ], + "issued": "2019-09-05T13:22:33.000Z", + "modified": "2019-09-05T14:30:18.398Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "143.5310,-38.8620,146.6510,-36.9560", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::wastewater-inlet-hourly-flow-eastern-treatment-plant-etp-" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/MWC_ETP_Hourly_InfluentFlow_From2009/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::wastewater-inlet-hourly-flow-eastern-treatment-plant-etp-.geojson" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::wastewater-inlet-hourly-flow-eastern-treatment-plant-etp-.csv" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=2bd028b25c3041c9873f9bff12d39413&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::wastewater-inlet-daily-raw-water-quality-eastern-treatment-plant-etp", + "title": "Wastewater Inlet - Daily Raw Water Quality - Eastern Treatment Plant (ETP)", + "description": "
The Eastern Treatment Plant (ETP) receives sewage from the eastern side of Melbourne. This file describes the quality of the sewage received by providing results of regular sampling.
The sample is taken with a flow-weighted auto-sampler. Samples are collected at 7:00 AM each day and relate to the previous 24 hours (e.g. timestamp of 5/1/19 07:00 was sampled between 4/1/19 07:00 and 5/1/19 07:00). Results are in milligrams per litre (mg/L). To calculate an incoming load in raw sewage, match this with wastewater inlet hourly flow for the same time period (as noted in the example).

Quality parameters include: Ammonia (Ammonia as N) (mg/L), Biochemical Oxygen Demand (BOD) (mg/L), Chemical Oxygen Demand (COD) (mg/L), Nitrate plus Nitrite (mg/L), Nitrogen (Nitrogen (total)) (mg/L).

NOTE. Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "wastewater", + "stormwater", + "treatment", + "sewage", + "sewerage", + "water quality", + "melbourne", + "eastern treatment plant" + ], + "issued": "2019-09-05T13:04:36.000Z", + "modified": "2019-09-05T14:29:51.316Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "143.5310,-38.8620,146.6510,-36.9560", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::wastewater-inlet-daily-raw-water-quality-eastern-treatment-plant-etp" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/MWC_ETP_Daily_InfluentQuality_From2014/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::wastewater-inlet-daily-raw-water-quality-eastern-treatment-plant-etp.geojson" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::wastewater-inlet-daily-raw-water-quality-eastern-treatment-plant-etp.csv" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=ca7365ea0e5a4258ac20e7d376233444&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::wastewater-outlet-hourly-flow-eastern-treatment-plant-etp-", + "title": "Wastewater Outlet - Hourly Flow - Eastern Treatment Plant (ETP) ", + "description": "
The Eastern Treatment Plant (ETP) discharges treated effluent  in accordance with EPA Victoria licence AL74284 to an ocean outfall at Boag Rocks. This file contains hourly flowrate data at the treatment plant pumpstation. From the pumpstation, the effluent takes several hours (typically 4-8 h) to reach the ocean.

NOTE. Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "wastewater", + "treatment", + "sewage", + "sewerage", + "volume", + "flowrate", + "melbourne", + "eastern treatment plant" + ], + "issued": "2019-09-05T13:20:12.000Z", + "modified": "2019-09-05T14:30:57.334Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "143.5310,-38.8620,146.6510,-36.9560", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::wastewater-outlet-hourly-flow-eastern-treatment-plant-etp-" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/MWC_ETP_Hourly_EffluentFlow_From2009/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::wastewater-outlet-hourly-flow-eastern-treatment-plant-etp-.geojson" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::wastewater-outlet-hourly-flow-eastern-treatment-plant-etp-.csv" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=b217c542a6f8496c8d8daca40e87cd67&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::water-supply-main-pipelines-other-authority", + "title": "Water Supply Main Pipelines (Other Authority)", + "description": "Layer containing water supply main centrelines for other authorities (assets not owned by Melbourne Water). This layer is generated from data received from other Water Authorities (Barwon Water, Gippsland Water, DELWP and other). This layer supports Melbourne Water to reference the existence and indicative location of water supply mains and their likely inter-connectivity with Melbourne Water assets. This layer is intended to be used for reference purpose only. Relevant authorities would need to be contacted if the data is to be used other than for reference.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "water main", + "other authority", + "centreline", + "water supply", + "melbourne", + "wholesale infrastructure", + "assets" + ], + "issued": "2019-11-13T05:38:36.000Z", + "modified": "2019-11-15T05:21:18.723Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.3096,-38.5638,145.9432,-37.8307", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::water-supply-main-pipelines-other-authority" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Water_Supply_Main_Pipelines_(Other_Authority)/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-main-pipelines-other-authority.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-main-pipelines-other-authority.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-main-pipelines-other-authority.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-main-pipelines-other-authority.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=fa9f51b6a3284c0095efe460e8da3db7&sublayer=1", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::catchments-primary-catchments-of-melbournes-river-basins", + "title": "Catchments - Primary Catchments of Melbourne's River Basins", + "description": "
Area representing the watershed catchment of a waterway or the hydraulic catchment of an underground stormwater drain for each Melbourne Water drain / catchment number. Captured using available contours and underground stormwater pipe network information. This layer is intended:
  1. To enable the identification of the receiving Melbourne Water waterway/drain for any property, area or point.
  2. To provide a framework of catchments for hydrologic modelling that can be further divided or amalgamated to suit the needs of the modeller.
NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "drainage", + "waterways", + "underground drains", + "catchments", + "melbourne", + "stormwater", + "land", + "drainage network" + ], + "issued": "2019-10-07T00:02:06.000Z", + "modified": "2019-10-28T04:13:48.636Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.0494,-39.0996,147.9639,-37.2254", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::catchments-primary-catchments-of-melbournes-river-basins" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Primary_Drainage_Catchment/FeatureServer/1" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::catchments-primary-catchments-of-melbournes-river-basins.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::catchments-primary-catchments-of-melbournes-river-basins.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::catchments-primary-catchments-of-melbournes-river-basins.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::catchments-primary-catchments-of-melbournes-river-basins.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=49efc083a61749e6b3f5001669cbbdae&sublayer=1", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::catchments-major-river-basins-melbourne", + "title": "Catchments - Major River Basins Melbourne", + "description": "
River basin catchment areas for Melbourne.  This layer has two intended purposes: 
  1. To provide a readily available amalgamation of MWC_Catchments that make up the river basins within Melbourne Water’s area. 
  2. Useful for larger scale plans and maps.
Data for basin boundaries have been captured by relevant State and Territory authorities from 1:10 000 and 1:250 000 scale source material. The balance of the data are from Geoscience Australia's GEODATA Coast 100K which includes coastlines and State and Territory borders. Topographic Drainage Divisions and River Region boundaries are updated based on current research, data and technology. It references previous work of the Australian Water Resources Management Committee as shown in Australia's River Basins 1997. This work is a collaboration of scientists from the Bureau of Meteorology, Australian National University Fenner School of Environment and Society, CSIRO Water for Healthy Country Flagship and Geoscience Australia.

In late 2008, the Bureau of Meteorology (BoM), in partnership with Geoscience Australia, CSIRO and the Australian National University (ANU) commenced the development of the Australian Hydrological Geospatial Fabric (Geofabric). Geofabric is being developed to underpin the Australian Water Resources Information System (AWRIS) within a single, consistent, national geospatial framework for hydrological features. Geoscience Australia's role in the Geofabric is to provide the best available national topographic spatial data for surface water features based on the National Topographic Data and Map Specifications. The river basin boundaries have been aligned (by Melbourne Water) to Melbourne Water Corporation (MWC) drainage catchments, to produce a consistent drainage and waterways catchment dataset to State level, since 2005.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "drainage", + "waterways", + "catchments", + "melbourne", + "river basins", + "land" + ], + "issued": "2019-10-07T00:01:52.000Z", + "modified": "2021-09-15T00:20:55.621Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.0723,-38.5425,146.1698,-37.2264", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::catchments-major-river-basins-melbourne" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Catchments_of_Major_Waterways/FeatureServer/1" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::catchments-major-river-basins-melbourne.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::catchments-major-river-basins-melbourne.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::catchments-major-river-basins-melbourne.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::catchments-major-river-basins-melbourne.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=e2f77d27e5d14edb815453031dc3ed6b&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::land-owned-by-melbourne-water", + "title": "Land Owned by Melbourne Water", + "description": "
Layer containing polygons that denote the location and extent of parcels of land that are owned by Melbourne Water. This layer is intended to be used to identify Melbourne Water owned land and responsibilities for the management of Melbourne Water assets. Layer shows general location of assets only and so cannot be used for detailed mapping or analysis.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "melbourne water", + "land", + "mwc", + "property", + "ownership", + "water supply", + "wastewater", + "sewerage", + "drainage", + "waterways", + "reserve" + ], + "issued": "2019-09-02T06:18:28.000Z", + "modified": "2021-09-15T00:21:06.275Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.3896,-38.4808,146.4212,-37.1726", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::land-owned-by-melbourne-water" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/MWC_Owned_Land_OpenData/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::land-owned-by-melbourne-water.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::land-owned-by-melbourne-water.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::land-owned-by-melbourne-water.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::land-owned-by-melbourne-water.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=7754f292286342a99baf7c26e8f7463e&sublayer=1", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::hws2018-habitat-suitability-modelling-results-for-macroinvertebrates", + "title": "HWS2018 Habitat suitability modelling results for Macroinvertebrates", + "description": "
Data describes habitat suitability modelling (HSM) results for macroinvertebrates in streams. The data was developed by University of Melbourne through the Melbourne Waterways Research Practice Partnership as part of the development of Melbourne Water’s Healthy Waterways Strategy 2018 (HWS2018). Analysis has been undertaken across the Melbourne Water operating region, where the operating region has been divided into 16,346 sub-catchments. Of these 16,346 subcatchments, 8233 contain Melbourne Water waterways. The results are presented for each of these 8233 reaches. The data was used to estimate the scores for macroninvertebrates presented in the HWS for three scenarios:
  • Current: habitat suitability under current conditions (i.e. 2014).
  • Current trajectory: habitat suitability under urbanisation and climate change scenarios if current management approaches continue.
  • Target trajectory: habitat suitability given urbanisation and climate change (as for current trajectory), together with (a) delivery of performance objectives of the Healthy Waterways Strategy and (b) achievement of environmental condition scores as described in the Catchment Programs of the Healthy Waterways Strategy.
Data has also been captured for a range of modelled HSM scenarios involving revegetation, stormwater management and climate change. Primary purpose is for waterways planning and analysis.

Habitat Suitability Model results have been thoroughly reviewed and are considered fit for purpose (i.e. for waterway planning). This data set covers the entire Melbourne Water region with the exception of very small areas close to Port Phillip Bay or Western Port. For example, there are small areas of French Island which are not captured.

This data set was created using: 1. Streams dataset for the Healthy Waterways Strategy 2018. This layer was developed by GraceGIS using Melbourne Water layers as inputs. 2. Results from Habitat Suitability Modelling for the Healthy Waterways Strategy 2018. 

Further reading: Chee et al. (in development), Habitat Suitability Models, Scenarios and Quantitative Action Prioritisation (using Zonation) for Melbourne Water’s Healthy Waterways Strategy: A Resource Document, University of Melbourne and Melbourne Water for Melbourne Waterways Research Practice Partnership
Melbourne Water (in development), Healthy Waterways Strategy Resource Document.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "Habitat Suitability Modelling 2018", + "Macroinvertebrates", + "Bugs", + "Waterways", + "Instream", + "Land", + "Healthy Waterways Strategy 2018" + ], + "issued": "2019-09-05T14:19:42.000Z", + "modified": "2019-09-05T14:20:13.323Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.0836,-38.4941,146.1648,-37.2301", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::hws2018-habitat-suitability-modelling-results-for-macroinvertebrates" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/MACROS_HSM_HWS/FeatureServer/1" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-habitat-suitability-modelling-results-for-macroinvertebrates.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-habitat-suitability-modelling-results-for-macroinvertebrates.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-habitat-suitability-modelling-results-for-macroinvertebrates.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-habitat-suitability-modelling-results-for-macroinvertebrates.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=edb323c130374cf38733d955a93fc4eb&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::water-supply-service-reservoirs-local-system-storage", + "title": "Water Supply Service Reservoirs (Local System Storage)", + "description": "
Layer containing water supply service reservoirs (location and extent). Service reservoirs are minor local storages. Information captured using as-constructed drawings and aerial imagery, and includes service reservoir name, category / type, asset identifier, as-constructed plan references plus other key attributes. This layer is intended to be used to locate and obtain details on Melbourne Water's water supply transfer assets for asset management, buildover (Dial-Before-You-Dig) and operational or maintenance purposes.

This layer is updated when new information is received from completed projects and/or updated from certified survey plans. Melbourne Water are responsible for reviewing and accepting information which results in update to the existing layer. 

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "water supply assets", + "water supply", + "transfer network", + "wholesale", + "infrastructure assets", + "reservoirs" + ], + "issued": "2019-09-03T03:19:03.000Z", + "modified": "2019-09-03T04:20:15.056Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.6519,-38.3392,145.9115,-37.2433", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::water-supply-service-reservoirs-local-system-storage" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/WS_Service_Reservoir_OpenData/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-service-reservoirs-local-system-storage.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-service-reservoirs-local-system-storage.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-service-reservoirs-local-system-storage.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-service-reservoirs-local-system-storage.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=4f7855d35fbf445f8d45dbeefdc117b4&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::eastern-treatment-plant-supernatant-main", + "title": "Eastern Treatment Plant Supernatant Main", + "description": "
Eastern Treatment Plant (ETP) is a wastewater treatment facility. This layer contains the ETP supernatant pipeline centrelines and associated details.  Includes sewer name, description, asset section (for As Constructed drawings) and key attributes. This layer supports Melbourne Water to communicate the existence and indicative location of sewer assets within its responsibility; to ensure they are protected throughout asset life. This layer is intended to be used for asset management, buildover (Dial-Before-You-Dig) and operational / maintenance purposes. 

This layer is updated when new information is received from completed projects and updated from certified survey plans.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.

", + "keyword": [ + "Treatment Plant", + "Supernatant", + "Main", + "ETP", + "sewer", + "wastewater" + ], + "issued": "2019-11-13T06:34:35.000Z", + "modified": "2019-11-15T05:04:26.702Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "145.1649,-38.0751,145.1846,-38.0413", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::eastern-treatment-plant-supernatant-main" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Eastern_Treatment_Plant_Supernatant_Main/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::eastern-treatment-plant-supernatant-main.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::eastern-treatment-plant-supernatant-main.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::eastern-treatment-plant-supernatant-main.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::eastern-treatment-plant-supernatant-main.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=a6d917c9bf3c466fb99304cc27034662&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::western-treatment-plant-carrier-and-main-pipelines", + "title": "Western Treatment Plant Carrier and Main Pipelines", + "description": "Western Treatment Plant (WTP) is a wastewater treatment facility. This layer contains the WTP carrier and mains and associated details. Includes sewer name, description, asset section (for As Constructed drawings) and key attributes. This layer supports Melbourne Water to communicate high level data in regards to the existence and indicative location of assets within its responsibility to ensure they are protected throughout the assets life.

This layer is updated when new information is received from completed projects and updated from certified survey plans. 

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "Main", + "Treatment Plant", + "WTP", + "Carrier", + "Sewer", + "wastewater" + ], + "issued": "2019-11-14T13:33:22.000Z", + "modified": "2019-11-15T04:55:57.516Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.4946,-38.0483,144.6756,-37.9310", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::western-treatment-plant-carrier-and-main-pipelines" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Western_Treatment_Plant_Carrier_and_Mains/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::western-treatment-plant-carrier-and-main-pipelines.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::western-treatment-plant-carrier-and-main-pipelines.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::western-treatment-plant-carrier-and-main-pipelines.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::western-treatment-plant-carrier-and-main-pipelines.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=c88a41b40ed6425f91845fd8f7f1c6a6&sublayer=1", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::catchments-major-catchments-of-melbournes-river-basins", + "title": "Catchments - Major Catchments of Melbourne's River Basins", + "description": "
Area representing the watershed / hydraulic catchment of major waterways. The "Major Catchment" layer divides each Primary catchment into the tributaries of a primary river. The delineation of a Major Catchment is by the watershed (natural or constructed) of a major drain or watercourse. Examples of major catchments are: Tributary of Yarra River, Darebin Creek, Tarago River and Corhanwarrbul Creek. This dataset provides a consolidated and consistent set of drainage catchments covering the entire Port Phillip and Westernport catchment area (Melbourne Water’s area of responsibility for waterways and drainage). The primary purpose of this layer is for the hydraulic modelling of catchments and waterways, and/or calculations. Additional uses: 
  • Asset creation and numbering
  • Flood Plain Mapping
  • Drainage Scheme Creation and Reviews
  • Water Resource Management
  • Responding to Land Development Queries
NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "major catchments", + "drainage", + "waterways", + "catchments", + "melbourne", + "land" + ], + "issued": "2019-10-06T03:20:49.000Z", + "modified": "2020-05-07T23:31:24.483Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.0723,-38.5425,146.1698,-37.2264", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::catchments-major-catchments-of-melbournes-river-basins" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Major_Waterways_Drains_and_Tributaries_Catchments/FeatureServer/1" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::catchments-major-catchments-of-melbournes-river-basins.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::catchments-major-catchments-of-melbournes-river-basins.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::catchments-major-catchments-of-melbournes-river-basins.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::catchments-major-catchments-of-melbournes-river-basins.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=e7f55cf51fdb4bcd912ac1151a8d401a&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::eastern-treatment-plant-digester-sludge-main", + "title": "Eastern Treatment Plant Digester Sludge Main", + "description": "Eastern Treatment Plant is a wastewater treatment facility. This layer contains the Eastern Treatment Plant Digester Sludge pipeline centre lines and associated details.  Includes sewer name, description, asset section (for As Constructed drawings) and key attributes. This layer supports Melbourne Water to communicate the existence and indicative location of sewer assets within its responsibility; to ensure they are protected throughout asset life. This layer is intended to be used for asset management, buildover (Dial-Before-You-Dig) and operational / maintenance purposes. 

This layer is updated when new information is received from completed projects and updated from certified survey plans.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "Treatment Plant", + "Sludge", + "Digester", + "Main", + "ETP", + "sewer", + "wastewater" + ], + "issued": "2019-11-14T12:43:00.000Z", + "modified": "2019-11-15T05:07:18.005Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "145.1624,-38.0768,145.1843,-38.0419", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::eastern-treatment-plant-digester-sludge-main" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Eastern_Treatment_Plant_Digester_Sludge_Main/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::eastern-treatment-plant-digester-sludge-main.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::eastern-treatment-plant-digester-sludge-main.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::eastern-treatment-plant-digester-sludge-main.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::eastern-treatment-plant-digester-sludge-main.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=a8a9b5a6282b47ed877659304883a3ad&sublayer=1", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::wetland-and-lake-assets", + "title": "Wetland and Lake Assets", + "description": "
Location and extent of Melbourne Water natural and constructed (man-made) wetlands and lakes. Captured using the Top Water Level (TWL) of each, includes wetland or lake name, asset section (for As Constructed drawings) and key attributes. Data set required to indicate the location and types of assets used for stormwater treatment (treatment and removal of pollutants from the stormwater system) and flow management (helping maintain the flow of water and reduce the impacts of floods), for ongoing condition monitoring, maintenance and hydrologic or vegetation analysis and to assist with the planning and design, construction of future stormwater management (WSUD) options.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "infrastructure assets", + "water", + "waterbodies", + "melbourne water", + "drainage", + "wetlands", + "lakes", + "stormwater", + "treatment", + "constructed" + ], + "issued": "2019-10-07T04:45:30.000Z", + "modified": "2022-01-11T23:02:35.615Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.1682,-38.4918,145.9096,-37.3215", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::wetland-and-lake-assets" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Constructed_Wetland_Stormwater_Quality_Assets/FeatureServer/1" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::wetland-and-lake-assets.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::wetland-and-lake-assets.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::wetland-and-lake-assets.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::wetland-and-lake-assets.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=bcbd557eea1040579257535408894e3e&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::eastern-treatment-plant-4w-effluent-main", + "title": "Eastern Treatment Plant 4W Effluent Main", + "description": "
Eastern Treatment Plant (ETP) is a wastewater treatment facility. Non-potable water, known as 4W, is generated and used onsite. This layer contains the 4W Effluent pipeline centrelines and associated details.  Includes sewer name, description, asset section (for As Constructed drawings) and key attributes. This layer supports Melbourne Water to communicate high level data in regards to the existence and indicative location of assets within its responsibility to ensure they are protected throughout the assets life.

This layer is updated when new information is received from completed projects and updated from certified survey plans. 

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "effluent", + "ETP", + "treatment plant", + "4W Main", + "sewer", + "onsite recycling", + "wastewater" + ], + "issued": "2019-11-15T04:10:14.000Z", + "modified": "2019-11-15T05:10:34.690Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "145.1458,-38.0674,145.1764,-38.0538", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::eastern-treatment-plant-4w-effluent-main" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Eastern_Treatment_Plant_4W_Effluent_Main/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::eastern-treatment-plant-4w-effluent-main.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::eastern-treatment-plant-4w-effluent-main.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::eastern-treatment-plant-4w-effluent-main.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::eastern-treatment-plant-4w-effluent-main.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=07e011c3e36f4b0aa8023d096d5a50a8&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::frog-census-records", + "title": "Frog Census Records", + "description": "This dataset is a compilation of Frog Census records (citizen science program) and the preceding Frog Watch program for the Port Phillip and Westernport CMA Region. These presence-only records collected in an ad-hoc manner are combined with regional frog records form the Victorian Biodiversity Atlas (VBA) and results of Melbourne Water commissioned surveys for frogs. The latter data are largely targeting threatened species of frog.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "Biodiversity", + "Fauna", + "Frogs", + "Amphibians", + "Victoria", + "Port Phillip and Westernport Region", + "Melbourne" + ], + "issued": "2019-09-05T10:31:47.000Z", + "modified": "2022-05-27T00:41:43.783Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "143.4904,-39.0217,146.4396,-37.0331", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::frog-census-records" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Frog_Location_OpenData/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::frog-census-records.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::frog-census-records.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::frog-census-records.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::frog-census-records.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=05b5509d3526423c82e1409e9bf8b7ac&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::water-supply-catchments-for-melbourne-water", + "title": "Water Supply Catchments for Melbourne Water", + "description": "
Layer containing water supply system catchment boundaries for water harvesting in the region of Melbourne. Includes catchment name, type, size of catchment and asset identifier. The type are defined by CATCHO (Open), CATCHC (Closed), and CATCH (Restricted). This layer is intended for general mapping purposes and internal use only, and is not to be used for detailed mapping of, or detailed calculation related to, water supply catchments.

This layer is updated when new information is received from completed projects and/or updated from certified survey plans. Melbourne Water are responsible for reviewing and accepting information which results in update to the existing layer. Dataset also includes additional catchments captured originally e.g. Graceburn and Donnellys Weir.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "catchment boundaries", + "water supply", + "transfer network", + "wholesale", + "assets", + "water harvesting" + ], + "issued": "2019-09-03T01:39:02.000Z", + "modified": "2019-09-15T23:53:38.481Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.8723,-38.3125,146.4106,-37.3559", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::water-supply-catchments-for-melbourne-water" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/WS_Catchment_OpenData/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-catchments-for-melbourne-water.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-catchments-for-melbourne-water.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-catchments-for-melbourne-water.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::water-supply-catchments-for-melbourne-water.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=4f254fdf618e4668b450d7b6a6bd2a2a&sublayer=1", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::hws2018-subcatchment-boundaries", + "title": "HWS2018 Subcatchment Boundaries", + "description": "
As part of the Healthy Waterways Strategy 2018 (HWS2018) the Melbourne Water operating region was split into a series of sub-regions. This includes 5 catchments, and 69 sub-catchments. The boundaries of each region generally follow catchment boundaries. There are two separate spatial scales:- Catchments (5 regions: Werribee, Maribyrnong, Yarra, Dandenong, Westernport) and Sub-catchments (69 polygons). This dataset is an update to the Regional River Health Strategy (RRHS) Management Units layer created in 2008. Primary purpose of this data is for reporting of targets, performance objectives, conditions, values etc. relating to the Healthy Waterways Strategy.

The sub-catchments in this dataset are an update of the "management units" developed for the Regional River Health Strategy in 2008. This dataset was created by merging sub-catchments from the University of Melbourne sub-catchments layer, commonly referred to as the DCI layer (where DCI refers to Directly Connected Imperviousness). The catchment polygons in this layer are similar to, but not exactly the same as those in the DCI layer currently used internally at Melbourne Water - The internally used layer has 15,901 polygon catchments, whilst the layer used to create this dataset has 16,346 polygon catchments. The Melbourne Water internal dataset will shortly be updated to align.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "Healthy Waterways Strategy 2018", + "Waterways", + "Management Unit", + "Drainage", + "Stormwater", + "Catchment", + "Subcatchment", + "Boundary", + "Land" + ], + "issued": "2019-09-05T14:07:34.000Z", + "modified": "2019-09-05T14:08:01.283Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.0723,-38.5425,146.1698,-37.2264", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::hws2018-subcatchment-boundaries" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/HWS_Subcatchments/FeatureServer/1" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-subcatchment-boundaries.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-subcatchment-boundaries.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-subcatchment-boundaries.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-subcatchment-boundaries.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=ed5fe433145b4e1cb786bb50f1c629da&sublayer=0", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::eastern-treatment-plant-3w-effluent-main", + "title": "Eastern Treatment Plant 3W Effluent Main", + "description": "
Eastern Treatment Plant (ETP) is a wastewater treatment facility. Utility water, known as 3W, is generated and used onsite. This layer contains the 3W pipeline centrelines and associated details.  Includes pipeline name, description, asset section (for As Constructed drawings) and key attributes. This layer supports Melbourne Water to communicate the existence and indicative location of sewer assets within its responsibility; to ensure they are protected throughout asset life. This layer is intended to be used for asset management and operational / maintenance purposes. 

This layer is updated when new information is received from completed projects and updated from certified survey plans. 

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "effluent", + "ETP", + "treatment plant", + "3W Main", + "sewer", + "wasterwater", + "onsite recycling" + ], + "issued": "2019-11-15T04:07:05.000Z", + "modified": "2019-11-15T05:13:25.460Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "145.1572,-38.0740,145.1856,-38.0461", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::eastern-treatment-plant-3w-effluent-main" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Eastern_Treatment_Plant_3W_Effluent_Main/FeatureServer/0" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::eastern-treatment-plant-3w-effluent-main.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::eastern-treatment-plant-3w-effluent-main.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::eastern-treatment-plant-3w-effluent-main.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::eastern-treatment-plant-3w-effluent-main.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=80575fa5c8a84daab04b6a8893d7842c&sublayer=1", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::hws2018-stormwater-priority-areas", + "title": "HWS2018 Stormwater Priority Areas", + "description": "
This layer describes the stormwater priority areas for Melbourne Water’s Healthy Waterways Strategy 2018 (HWS2018). Stormwater priority areas were determined by a combination of decision support tools and the co-design process. The decision support tool used was Zonation, which prioritised management actions across the region with the objective of improving instream habitat suitability for platypus, fish and macroinvertebrates. The stormwater priority area polygons were created by merging sub-catchments from University of Melbourne’s subc layer, i.e. the network of sub-catchments used for assessing attenuated imperviousness and for habitat suitability modelling. 

Primary purpose for this data is identifying stormwater priority areas of Melbourne Water's Healthy Waterways Strategy 2018. This dataset covers the Greater Melbourne region with the stormwater priority areas presented in this dataset aligning with the priorities of the Melbourne Water Healthy Waterways Strategy 2018. However, it is important to note that stormwater management activities require additional judgement to consider whether areas beyond (e.g. upstream) of the priority areas identified will also require treatment to achieve the desired waterway health outcomes.

The harvesting and infiltration targets presented in this dataset provide an estimate of what is required to achieve stormwater disconnection and recreation of the natural hydrology. However, is should be noted that these values are approximate only and do not replace site-specific investigations. The values have been calculated in reference to Walsh et al. 2012 , who presented target ranges for infiltration and harvesting required to achieve urban stormwater disconnection (i.e. re-creation of forested/vegetated hydrology). The values presented are the average of the ranges estimated by Walsh et al. 2012. These values do not replace a detailed site investigation. Site-specific factors (soil type, topography, geology and other hydrological features of the catchment) will influence the appropriate targets for a site.

For further reading on the prioritisation process see:
  • Chee et al. (in development), Habitat Suitability Models, Scenarios and Quantitative Action Prioritisation (using Zonation) for Melbourne Water’s Healthy Waterways Strategy: A Resource Document, University of Melbourne and Melbourne Water for Melbourne Waterways Research Practice Partnership
  • Melbourne Water (in development), Healthy Waterways Strategy Resource Document. Each priority area contains targets for harvesting and infiltration. Achievement of these targets is required to achieve stormwater disconnection. These targets are presented in two ways: per impervious hectare, and total volume to full urban development (i.e. complete urban development to the urban growth boundary). It should be noted that these targets are approximate values only and do not replace site-specific studies. See notes above about how target values were selected.
For further reading, see: Walsh, C. J., Fletcher, T. D., & Burns, M. J. (2012). Urban stormwater runoff: a new class of environmental flow problem. PLoS One, 7(9)

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "Healthy Waterways Strategy 2018", + "Stormwater", + "Harvest", + "Infiltrate", + "Waterways", + "Hydrology", + "Impervious", + "Disconnection", + "Land" + ], + "issued": "2019-09-05T14:10:57.000Z", + "modified": "2019-10-28T04:00:33.909Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.0749,-38.4788,146.1698,-37.2264", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::hws2018-stormwater-priority-areas" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/STORMWATER_PRIORITY_AREAS_HWS/FeatureServer/1" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-stormwater-priority-areas.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-stormwater-priority-areas.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-stormwater-priority-areas.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-stormwater-priority-areas.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=ed76606730d5410392ab2d1f222a35dc&sublayer=1", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::hws2018-habitat-suitability-modelling-results-for-fish", + "title": "HWS2018 Habitat suitability modelling results for Fish", + "description": "
Data describes habitat suitability modelling (HSM) results for fish in streams. The data was developed by University of Melbourne through the Melbourne Waterways Research Practice Partnership as part of the development of Melbourne Water’s Healthy Waterways Strategy 2018 (HWS2018). Analysis has been undertaken across the Melbourne Water operating region, where the operating region has been divided into 16,346 sub-catchments. Of these 16,346 subcatchments, 8233 contain Melbourne Water waterways. The results are presented for each of these 8233 reaches for these HWS scenarios:
  • Current: habitat suitability for fish under current conditions (i.e. 2014).
  • Current trajectory: habitat suitability for fish under urbanisation and climate change scenarios if current management approaches continue. 
  • Target trajectory: habitat suitability for fish given urbanisation and climate change (as for current trajectory), together with (a) delivery of performance objectives of the Healthy Waterways Strategy and (b) achievement of environmental condition scores as described in the Catchment Programs of the Healthy Waterways Strategy.
Results are presented as:
  • Stacked probabilities, i.e. habitat suitability all 13 native fished species added together. These stacked probability values were used in the HWS to provide a fish value score each reach and sub-catchments.
  • Results are also provided for all 22 fish species. Presentation of habitat suitabilty model results for fish from the Healthy Waterways Strategy 2018.

Habitat Suitability Model results have been thoroughly reviewed and are considered fit for purpose (i.e. for waterway planning). This data set covers the entire Melbourne Water region with the exception of very small areas close to Port Phillip Bay or Western Port. For example, there are small areas of French Island which are not captured.

This data set was created using: 1. Streams dataset for the Healthy Waterways Strategy 2018 (developed by GraceGIS using Melbourne Water layers as inputs), and 2. Results from Habitat Suitability Modelling for the Healthy Waterways Strategy 2018. 

Further reading: Chee et al. (in development), Habitat Suitability Models, Scenarios and Quantitative Action Prioritisation (using Zonation) for Melbourne Water’s Healthy Waterways Strategy: A Resource Document, University of Melbourne and Melbourne Water for Melbourne Waterways Research Practice Partnership Melbourne Water (in development), Healthy Waterways Strategy Resource Document

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "Habitat Suitability Modelling 2018", + "Fish", + "Galaxias", + "Waterways", + "Streams", + "Habitat", + "Healthy Waterways Strategy 2018", + "Land" + ], + "issued": "2019-09-05T14:16:01.000Z", + "modified": "2019-09-05T14:23:06.804Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.0836,-38.4941,146.1648,-37.2301", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::hws2018-habitat-suitability-modelling-results-for-fish" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/FISH_HSM_HWS/FeatureServer/1" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-habitat-suitability-modelling-results-for-fish.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-habitat-suitability-modelling-results-for-fish.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-habitat-suitability-modelling-results-for-fish.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::hws2018-habitat-suitability-modelling-results-for-fish.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=1f7bd55e1fd548ec8aa464b8c04e109d", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::community-perceptions-of-water-in-melbourne-in-2019-1", + "title": "Community Perceptions of Water in Melbourne in 2019", + "description": "
This data was collected in June 2019 from 799 residents aged 18+ in the Greater Melbourne Region to capture and monitor: 
-Community perceptions and concerns about water in Melbourne
-Awareness and attitudes toward water sources
-Attitude towards water conservation and restrictions
-Water literacy in the community
-Perceptions of Melbourne Water’s brand and industry performance
-Exposure to flood and understanding of flood management and responsible authorities.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "Open Data", + "water supply", + "wastewater", + "drainage", + "waterways", + "land", + "water security", + "community perceptions", + "water literacy", + "alternative water sources", + "Melbourne water", + "flood awareness", + "saving water", + "water conservation", + "willingness to pay" + ], + "issued": "2019-09-03T05:05:18.000Z", + "modified": "2019-10-17T07:31:24.000Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "143.5310,-38.8620,146.6510,-36.9560", + "license": "Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License under the following terms:
  • Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • ShareAlike — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.
", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::community-perceptions-of-water-in-melbourne-in-2019-1" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=74bb2fffc57b4208b830843f609e5639&sublayer=1", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::waterways-centreline", + "title": "Waterways Centreline", + "description": "
Layer containing line objects delineating hydrological features, representing waterways managed by Melbourne Water (i.e. catchment size is greater than 60 hectares) that have not been significantly modified by human activity. Captured by digitizing a line along the centre of a linear geographic feature. Includes the waterway name, a unique asset identifier, EPMS/asset section number (to link the object to associated drawings) and key attributes to assist with its intended purpose. 

When used in conjunction with the constructed waterways centreline and waterway connector centreline layers, this layer completes the waterway/hydrology linear network (complete centreline) for Melbourne Water’s non-underground drainage assets. 

Data set is used to indicate the location and types of natural waterways for asset management and maintenance works, to assess buildover or planning applications, for waterway rehabilitation works and flow management (helping maintain the flow of water and reduce the impacts of floods), ongoing condition monitoring and hydrologic modelling and analysis and to assist with the planning and design, construction of new waterway corridors, stormwater management (WSUD) options.

Waterway (Reach) layer created from original FIS 1:50K (Vicmap Hydro) streams data set which included only those waterways within catchments of greater than 60ha. Waterways (Reach) Rectification project undertaken 2001 to 2003 to review and correct the extent of the waterways reach network to ensure a complete data set exists (using the Drainage Metropolis Boundary, 50K data, 1:2500 Drainage Record Plans, Drainage Limits data, orthophotos, as constructed and/or design drawings, contour data and Melway Street Directory). Waterway (Reach) extents defined and attributes populated in GIS and AMIS for all records including assigning nodes and node numbers (for start / end points) and removing any reaches less than 100 metres in length that are predominantly channel assets. Waterways in extended area incorporated in 2005 using Vicmap Hydro data and aerial imagery, then updated in 2009/10 using Lidar survey data (contours). Data is maintained using Lidar survey data (contours) and 60 ha limits. Please refer to metadata for each record in dataset for specific source / accuracy information.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "melbourne water", + "drainage", + "waterways", + "centreline", + "natural assets", + "land", + "rivers", + "streams" + ], + "issued": "2019-10-07T04:44:26.000Z", + "modified": "2020-08-14T02:26:08.248Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.0834,-38.4993,146.1648,-37.2301", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::waterways-centreline" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Centreline_of_the_Waterway/FeatureServer/1" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::waterways-centreline.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::waterways-centreline.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::waterways-centreline.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::waterways-centreline.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + }, + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=327d0d7f2403444e81a90be764fa9092&sublayer=1", + "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::waterway-structures", + "title": "Waterway Structures", + "description": "
Polygons representing natural waterway or channel structure locations (such as sediment ponds, litter traps, weirs, spillways, drop structures) and associated details. Includes description, asset section (for As Constructed drawings) and key attributes. This layer is intended to help identify the location of Melbourne Water's drainage assets for asset management and maintenance purposes.

Waterway (Reach) layer created from original FIS 1:50K (Vicmap Hydro) streams data set which included only those waterways within catchments of greater than 60ha. Waterways (Reach) Rectification project undertaken 2001 to 2003 to review and correct the extent of the waterways reach network to ensure a complete data set exists (using the Drainage Metropolis Boundary, 50K data, 1:2500 Drainage Record Plans, Drainage Limits data, orthophotos, as constructed and/or design drawings, contour data and Melway Street Directory). Waterway (Reach) extents defined and attributes populated in GIS and Hansen (AMIS) for all records including assigning nodes and node numbers (for start / end points) and removing any reaches less than 100 metres in length that are predominantly channel assets. Waterways in extended area incorporated in 2005 using Vicmap Hydro data and aerial imagery, then updated in 2009/10 using Lidar survey data (contours). Data is maintained using Lidar survey data (contours) and 60 ha limits. Please refer to metadata for each record in dataset for specific source / accuracy information.

NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", + "keyword": [ + "infrastructure assets", + "waterway", + "channel", + "sediment ponds", + "traps", + "weirs", + "spillways", + "melbourne", + "drainage", + "jetty" + ], + "issued": "2019-10-07T04:48:22.000Z", + "modified": "2019-10-08T02:12:36.428Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation" + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact" + }, + "accessLevel": "public", + "spatial": "144.2171,-38.4767,145.8851,-37.3729", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::waterway-structures" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Waterway_Structures_OpenData/FeatureServer/1" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::waterway-structures.geojson?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::waterway-structures.csv?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::waterway-structures.kml?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::waterway-structures.zip?outSR=%7B%22latestWkid%22%3A28355%2C%22wkid%22%3A28355%7D" + } + ], + "theme": [ + "geospatial" + ] + } + ] +} \ No newline at end of file diff --git a/ckanext/datavic_harvester/harvesters/base.py b/ckanext/datavic_harvester/harvesters/base.py index a631dba..9fc5924 100644 --- a/ckanext/datavic_harvester/harvesters/base.py +++ b/ckanext/datavic_harvester/harvesters/base.py @@ -8,11 +8,9 @@ from ckan import model from ckan.plugins import toolkit as tk from ckan.lib.helpers import json -from ckan.model import Package from ckanext.harvest.model import HarvestObject from ckanext.harvest.harvesters import HarvesterBase -from ckanext.harvest.harvesters.ckanharvester import ContentFetchError log = logging.getLogger(__name__) @@ -30,7 +28,7 @@ def _set_config(self, config_str: str) -> None: else: self.config = {} - def validate_config(self, config: Optional[str]) -> dict[str, Any]: + def validate_config(self, config: Optional[str]) -> str: """ Harvesters can provide this method to validate the configuration entered in the form. It should return a single string, which will be @@ -47,10 +45,17 @@ def validate_config(self, config: Optional[str]) -> dict[str, Any]: config_obj = json.loads(config) - if "default_groups" not in config_obj: + self._validate_default_groups(config_obj) + self._set_default_groups_data(config_obj) + self._validate_default_license(config_obj) + + return json.dumps(config_obj, indent=4) + + def _validate_default_groups(self, config: dict[str, Any]) -> None: + if "default_groups" not in config: raise ValueError("default_groups must be set") - default_groups = config_obj["default_groups"] + default_groups: list[str] = config["default_groups"] if not isinstance(default_groups, list): raise ValueError("default_groups must be a *list* of group names/ids") @@ -60,28 +65,22 @@ def validate_config(self, config: Optional[str]) -> dict[str, Any]: "default_groups must be a list of group " "names/ids (i.e. strings)" ) - config_obj["default_group_dicts"] = self._get_default_groups_data( - default_groups - ) + def _validate_default_license(self, config: dict[str, Any]) -> None: + default_license: dict[str, Any] = config.get("default_license", {}) - if "full_metadata_url_prefix" not in config_obj: - raise ValueError("full_metadata_url_prefix must be set") + if not default_license: + return - if "{UUID}" not in config_obj.get("full_metadata_url_prefix", ""): - raise ValueError( - "full_metadata_url_prefix must have the {UUID} identifier in the URL" - ) + if not isinstance(default_license, dict): + raise ValueError("default_license field must be a dictionary") - if "resource_url_prefix" not in config_obj: - raise ValueError("resource_url_prefix must be set") + if "id" not in default_license or "title" not in default_license: + raise ValueError("default_license must contain `id` and `title` fields") - if "license_id" not in config_obj: - raise ValueError("license_id must be set") + def _set_default_groups_data(self, config: dict[str, Any]) -> None: + default_groups: list[str] = config["default_groups"] - if "resource_attribution" not in config_obj: - raise ValueError("resource_attribution must be set") - - return config_obj + config["default_group_dicts"] = self._get_default_groups_data(default_groups) def _get_default_groups_data(self, group_ids: list[str]) -> list[dict[str, Any]]: group_dicts: list[dict[str, Any]] = [] @@ -107,22 +106,13 @@ def _get_object_extra( return extra.value return None - def _get_package_name(self, harvest_object: HarvestObject, title: str) -> str: - """Generate package name from title""" - package: Package = harvest_object.package - - if package is None or package.title != title: - name = self._gen_new_name(title) - - if not name: - raise Exception( - "Could not generate a unique name from the title or the " - "GUID. Please choose a more unique title." - ) - else: - name = package.name + def _get_extra(self, data_dict: dict[str, Any], key: str) -> Optional[Any]: + """Retrieving the value from a data_dict extra by a given key""" + for extra in data_dict.get("extras", []): + if extra.get("key") == key: + return extra.get("value") - return name + return None def _make_request( self, url: str, headers: Optional[dict[str, Any]] = None @@ -155,14 +145,3 @@ def _make_context(self) -> dict[str, Any]: "model": model, "session": model.Session, } - - def _get_guids_to_package_ids(self, source_id: str) -> dict[str, str]: - query = ( - model.Session.query(HarvestObject.guid, HarvestObject.package_id) - .filter(HarvestObject.current == True) - .filter(HarvestObject.harvest_source_id == source_id) - ) - - return { - harvest_object.guid: harvest_object.package_id for harvest_object in query - } diff --git a/ckanext/datavic_harvester/harvesters/dcat_json.py b/ckanext/datavic_harvester/harvesters/dcat_json.py index eb48bc9..665aa87 100644 --- a/ckanext/datavic_harvester/harvesters/dcat_json.py +++ b/ckanext/datavic_harvester/harvesters/dcat_json.py @@ -2,102 +2,74 @@ import json import logging -from typing import Optional +from os import path +from typing import Optional, Any from bs4 import BeautifulSoup -from ckan import model from ckan.plugins import toolkit as tk from ckanext.dcat import converters from ckanext.dcat.harvesters._json import DCATJSONHarvester -from ckanext.harvest.model import HarvestSource +from ckanext.harvest.model import HarvestObject from ckanext.datavic_harvester import helpers +from ckanext.datavic_harvester.harvesters.base import DataVicBaseHarvester log = logging.getLogger(__name__) -class DataVicDCATJSONHarvester(DCATJSONHarvester): +class DataVicDCATJSONHarvester(DCATJSONHarvester, DataVicBaseHarvester): def info(self): return { "name": "datavic_dcat_json", "title": "DataVic DCAT JSON Harvester", - "description": "DataVic Harvester for DCAT dataset descriptions " - + "serialized as JSON", + "description": "DataVic Harvester for DCAT dataset descriptions serialized as JSON", } - def validate_config(self, config): - """ - Harvesters can provide this method to validate the configuration - entered in the form. It should return a single string, which will be - stored in the database. Exceptions raised will be shown in the form's - error messages. + def gather_stage(self, harvest_job): + self._set_config(harvest_job.source.config) + return super().gather_stage(harvest_job) - Validates the default_group entered exists and creates default_group_dicts + def import_stage(self, harvest_object): + self._set_config(harvest_object.source.config) + return super().import_stage(harvest_object) - :param harvest_object_id: Config string coming from the form - :returns: A string with the validated configuration options - """ - if not config: - return config + def _get_package_dict( + self, harvest_object: HarvestObject + ) -> tuple[dict[str, Any], dict[str, Any]]: + """Converts a DCAT dataset into a CKAN dataset. Performs specific DataVic + conversions of the data""" + + dcat_dict: dict[str, Any] = json.loads(harvest_object.content) + pkg_dict = converters.dcat_to_ckan(dcat_dict) + + soup: BeautifulSoup = BeautifulSoup(pkg_dict["notes"], "html.parser") + + self._set_description_and_extract(pkg_dict, soup) + self._set_full_metadata_url_and_update_frequency(pkg_dict, soup) + self._mutate_tags(pkg_dict) + self._set_default_group(pkg_dict) + self._set_required_fields_defaults(dcat_dict, pkg_dict) + + return pkg_dict, dcat_dict + + def _set_description_and_extract(self, pkg_dict: dict[str, Any], soup) -> None: + if "default.description" in pkg_dict["notes"]: + pkg_dict["notes"] = "No description has been entered for this dataset." + pkg_dict["extract"] = "No abstract has been entered for this dataset." + else: + allowed_tags: list[str] = ["a", "br"] + pkg_dict["notes"] = helpers.unwrap_all_except( + helpers.remove_all_attrs_except_for(soup, allowed_tags), + allowed_tags, + ) + pkg_dict["extract"] = self._generate_extract(soup) + + def _generate_extract(self, soup: BeautifulSoup) -> str: + """Extract is the first sentence of the description/notes""" - try: - config_obj = json.loads(config) - - if "default_groups" in config_obj: - if not isinstance(config_obj["default_groups"], list): - raise ValueError( - "default_groups must be a *list* of group" " names/ids" - ) - if config_obj["default_groups"] and not isinstance( - config_obj["default_groups"][0], str - ): - raise ValueError( - "default_groups must be a list of group " - "names/ids (i.e. strings)" - ) - - # Check if default groups exist - context = {"model": model, "user": tk.g.user} - config_obj["default_group_dicts"] = [] - for group_name_or_id in config_obj["default_groups"]: - try: - group = tk.get_action("group_show")( - context, {"id": group_name_or_id} - ) - # save the dict to the config object, as we'll need it - # in the set_default_group of every dataset - config_obj["default_group_dicts"].append( - {"id": group["id"], "name": group["name"]} - ) - except tk.ObjectNotFound as e: - raise ValueError("Default group not found") - config = json.dumps(config_obj, indent=1) - - except ValueError as e: - raise e - - return config - - def fix_erroneous_tags(self, package_dict): - """ - Replace ampersands with "and" in tags - :param package_dict: - :return: - """ - if package_dict["tags"]: - for tag in package_dict["tags"]: - if "name" in tag and "&" in tag["name"]: - tag["name"] = tag["name"].replace("&", "and") - - def generate_extract(self, soup): - """ - Extract is just the first sentence of the text-only description/notes for our purposes at this stage. - :param soup: - :return: - """ try: notes = soup.get_text() index = notes.index(".") @@ -107,225 +79,160 @@ def generate_extract(self, soup): log.error(str(ex)) return notes - def set_description_and_extract(self, package_dict, soup): - if "default.description" in package_dict["notes"]: - package_dict["notes"] = "No description has been entered for this dataset." - package_dict["extract"] = "No abstract has been entered for this dataset." - else: - allowed_tags: list[str] = ["a", "br"] - package_dict["notes"] = helpers.unwrap_all_except( - helpers.remove_all_attrs_except_for(soup, allowed_tags), - allowed_tags, - ) - package_dict["extract"] = self.generate_extract(soup) - - def set_full_metadata_url_and_update_frequency( - self, harvest_config, package_dict, soup: BeautifulSoup - ): - """ - Try and extract the full metadata URL from the dataset description and then the update frequency from the - full metadata URL. - If full metadata URL not found, or update frequency not determined, it will default to 'unknown' either - through the `_fetch_update_frequency` function or the IPackageController `create` function in - ckanext.datavicmain.plugins.py - :param package_dict: - :param soup: - :return: - """ - # - full_metadata_url = [ - extra - for extra in package_dict["extras"] - if extra["key"] == "full_metadata_url" - ] - if not full_metadata_url: - # Set the default if it has been added to the harvest source config - if "default_full_metadata_url" in harvest_config: - full_metadata_url = harvest_config["default_full_metadata_url"] - # Try and extract a full metadata url from the description based on - # a pattern defined in the harvest source config - if "full_metadata_url_pattern" in harvest_config: - desciption_full_metadata_url: Optional[ - str - ] = helpers.extract_metadata_url( - soup, harvest_config["full_metadata_url_pattern"] - ) - if desciption_full_metadata_url: - full_metadata_url = desciption_full_metadata_url - # Attempt to extract the update frequency from the full metadata page - package_dict["update_frequency"] = helpers.fetch_update_frequency( - full_metadata_url - ) - if full_metadata_url: - package_dict["full_metadata_url"] = full_metadata_url - - def set_default_group(self, harvest_config, package_dict): - """ - Set the default group from config - :param harvest_config: - :param package_dict: - :return: - """ - # Set default groups if needed - default_group_dicts = harvest_config.get("default_group_dicts", []) - if default_group_dicts and isinstance(default_group_dicts, list): - category = default_group_dicts[0] if default_group_dicts else None - if category: - package_dict["category"] = category.get("id") + def _set_full_metadata_url_and_update_frequency( + self, pkg_dict: dict[str, Any], soup: BeautifulSoup + ) -> None: + metadata_url: Optional[str] = self._get_extra(pkg_dict, "full_metadata_url") - if not "groups" in package_dict: - package_dict["groups"] = [] - existing_group_ids = [g["id"] for g in package_dict["groups"]] - package_dict["groups"].extend( - [g for g in default_group_dicts if g["id"] not in existing_group_ids] - ) + if not metadata_url and "default_full_metadata_url" in self.config: + metadata_url = self.config["default_full_metadata_url"] - def set_required_fields_defaults(self, harvest_config, dcat_dict, package_dict): - personal_information = [ - extra - for extra in package_dict["extras"] - if extra["key"] == "personal_information" - ] - if not personal_information: - package_dict["personal_information"] = "no" - - access = [extra for extra in package_dict["extras"] if extra["key"] == "access"] - if not access: - package_dict["access"] = "yes" - - protective_marking = [ - extra - for extra in package_dict["extras"] - if extra["key"] == "protective_marking" - ] - if not protective_marking: - package_dict["protective_marking"] = "official" - - update_frequency = [ - extra - for extra in package_dict["extras"] - if extra["key"] == "update_frequency" - ] - if not update_frequency: - package_dict["update_frequency"] = "unknown" - - organization_visibility = [ - extra - for extra in package_dict["extras"] - if extra["key"] == "organization_visibility" - ] - if not organization_visibility: - package_dict["organization_visibility"] = "current" - - workflow_status = [ - extra - for extra in package_dict["extras"] - if extra["key"] == "workflow_status" - ] - if not workflow_status: - package_dict["workflow_status"] = "draft" - - issued = dcat_dict.get("issued") - date_created_data_asset = [ - extra - for extra in package_dict["extras"] - if extra["key"] == "date_created_data_asset" - ] - if issued and not date_created_data_asset: - package_dict[ - "date_created_data_asset" - ] = helpers.convert_date_to_isoformat( - issued, "issued", package_dict["title"] + if not metadata_url and "full_metadata_url_pattern" in self.config: + desc_metadata_url: Optional[str] = helpers.extract_metadata_url( + soup, self.config["full_metadata_url_pattern"] ) - modified = dcat_dict.get("modified") - - date_modified_data_asset = [ - extra - for extra in package_dict["extras"] - if extra["key"] == "date_modified_data_asset" - ] - if modified and not date_modified_data_asset: - package_dict[ - "date_modified_data_asset" - ] = helpers.convert_date_to_isoformat( - modified, "modified", package_dict["title"] - ) + if desc_metadata_url: + metadata_url = desc_metadata_url - landing_page = dcat_dict.get("landingPage") - full_metadata_url = [ - extra - for extra in package_dict["extras"] - if extra["key"] == "full_metadata_url" - ] - if landing_page and not full_metadata_url: - package_dict["full_metadata_url"] = landing_page - - license_id = package_dict.get("license_id", None) - if not license_id and "default_license" in harvest_config: - default_license = harvest_config.get("default_license") - if default_license: - default_license_id = default_license.get("id") - default_license_title = default_license.get("title") - if default_license_id: - package_dict["license_id"] = default_license_id - if default_license_title: - package_dict["custom_licence_text"] = default_license_title - - keywords = dcat_dict.get("keyword") - package_dict["tag_string"] = keywords if keywords else [] - - def _get_package_dict(self, harvest_object): - """ - Converts a DCAT dataset into a CKAN dataset - and performs some Data.Vic specific conversion of the data - :param harvest_object: - :return: - """ - - content = harvest_object.content - - dcat_dict = json.loads(content) - - package_dict = converters.dcat_to_ckan(dcat_dict) + if metadata_url: + pkg_dict["update_frequency"] = self._fetch_update_frequency(metadata_url) + pkg_dict["full_metadata_url"] = metadata_url - try: - # Get the harvest source configuration settings via the `harvest_source_id` property of the harvest object - harvest_source = HarvestSource.get(harvest_object.harvest_source_id) - harvest_config = json.loads(harvest_source.config) - except Exception: - harvest_config = None + def _fetch_update_frequency(self, full_metadata_url: str) -> str: + """Fetch an update_frequency by full_metadata_url""" + + default_udp_frequency: str = "unknown" - soup: BeautifulSoup = BeautifulSoup(package_dict["notes"], "html.parser") + resp_text: Optional[str] = self._make_request(full_metadata_url) - self.set_description_and_extract(package_dict, soup) + if not resp_text: + log.error(f"Request error occured during fetching update_frequency") + return default_udp_frequency + + soup: BeautifulSoup = BeautifulSoup(resp_text, "html.parser") + + frequency_mapping: dict[str, str] = { + "deemed": "asNeeded", + "week": "weekly", + "twice": "biannually", + "year": "annually", + "month": "monthly", + "quarter": "quarterly", + } - self.set_full_metadata_url_and_update_frequency( - harvest_config, package_dict, soup + for tag in soup( + "script", attrs={"id": "tpx_ExternalView_Frequency_of_Updates"} + ): + tag_text: str = tag.get_text() + + for k, v in frequency_mapping.items(): + if k in tag_text: + return v + + return default_udp_frequency + + def _mutate_tags(self, pkg_dict: dict[str, Any]) -> None: + """Replace ampersands with "and" in tags""" + + if not pkg_dict["tags"]: + return + + for tag in pkg_dict["tags"]: + if "name" in tag and "&" in tag["name"]: + tag["name"] = tag["name"].replace("&", "and") + + def _set_default_group(self, pkg_dict: dict[str, Any]) -> None: + default_groups: list[dict[str, Any]] = self.config.get( + "default_group_dicts", [] ) - self.fix_erroneous_tags(package_dict) + if not "groups" in pkg_dict: + pkg_dict["groups"] = [] + + if default_groups and isinstance(default_groups, list): + category = default_groups[0] if default_groups else None + + if category: + pkg_dict["category"] = category.get("id") + + existing_group_ids: list[str] = [ + group["id"] for group in pkg_dict["groups"] + ] + + pkg_dict["groups"].extend( + [ + group + for group in default_groups + if group["id"] not in existing_group_ids + ] + ) + + def _set_required_fields_defaults( + self, dcat_dict: dict[str, Any], pkg_dict: dict[str, Any] + ) -> None: + """Set required fields""" + if not self._get_extra(pkg_dict, "personal_information"): + pkg_dict["personal_information"] = "no" + + if not self._get_extra(pkg_dict, "access"): + pkg_dict["access"] = "yes" - # Groups (Categories) - # Default group is set in the harvest source configuration, "default_groups" property. - self.set_default_group(harvest_config, package_dict) + if not self._get_extra(pkg_dict, "protective_marking"): + pkg_dict["protective_marking"] = "official" - self.set_required_fields_defaults(harvest_config, dcat_dict, package_dict) + if not self._get_extra(pkg_dict, "update_frequency"): + pkg_dict["update_frequency"] = "unknown" - return package_dict, dcat_dict + if not self._get_extra(pkg_dict, "organization_visibility"): + pkg_dict["organization_visibility"] = "current" - def _get_existing_dataset(self, guid): - """ - Checks if a dataset with a certain guid extra already exists + if not self._get_extra(pkg_dict, "workflow_status"): + pkg_dict["workflow_status"] = "draft" - Returns a dict as the ones returned by package_show - """ + issued: Optional[str] = dcat_dict.get("issued") + if issued and not self._get_extra(pkg_dict, "date_created_data_asset"): + pkg_dict["date_created_data_asset"] = helpers.convert_date_to_isoformat( + issued, "issued", pkg_dict["title"], strip_tz=False + ) + + modified: Optional[str] = dcat_dict.get("modified") + if modified and not self._get_extra(pkg_dict, "date_modified_data_asset"): + pkg_dict["date_modified_data_asset"] = helpers.convert_date_to_isoformat( + modified, "modified", pkg_dict["title"], strip_tz=False + ) + + landing_page: Optional[str] = dcat_dict.get("landingPage") + if landing_page and not self._get_extra(pkg_dict, "full_metadata_url"): + pkg_dict["full_metadata_url"] = landing_page + + if not pkg_dict.get("license_id") and "default_license" in self.config: + pkg_dict["license_id"] = self.config["default_license"]["id"] + pkg_dict["custom_licence_text"] = self.config["default_license"]["title"] + + pkg_dict["tag_string"] = dcat_dict.get("keyword", []) - datasets = self._read_datasets_from_db(guid) + def _get_existing_dataset(self, guid: str) -> Optional[dict[str, Any]]: + """Return a package with specific guid extra if exists""" + + datasets: list[tuple[str]] = self._read_datasets_from_db(guid) if not datasets: - return None - elif len(datasets) > 1: + return + + if len(datasets) > 1: log.error(f"Found more than one dataset with the same guid: {guid}") - context = {"user": self._get_user_name(), "ignore_auth": True} - return tk.get_action("package_show")(context, {"id": datasets[0][0]}) + + return tk.get_action("package_show")( + {"user": self._get_user_name(), "ignore_auth": True}, + {"id": datasets[0][0]}, + ) + + def __get_content_and_type(self, url, harvest_job, page=1, content_type=None): + """Mock data, use it instead of actual request for develop process""" + return self._get_mocked_content(), "" + + def _get_mocked_content(self) -> str: + here: str = path.abspath(path.dirname(__file__)) + with open(path.join(here, "../data/dcat_json_datasets.txt")) as f: + return f.read() diff --git a/ckanext/datavic_harvester/harvesters/delwp.py b/ckanext/datavic_harvester/harvesters/delwp.py index cf4867d..0c6aad1 100644 --- a/ckanext/datavic_harvester/harvesters/delwp.py +++ b/ckanext/datavic_harvester/harvesters/delwp.py @@ -33,8 +33,7 @@ def info(self): } def validate_config(self, config: Optional[str]) -> str: - config: str = super().validate_config(config) - config_obj = json.loads(config) + config_obj = json.loads(super().validate_config(config)) if "full_metadata_url_prefix" not in config_obj: raise ValueError("full_metadata_url_prefix must be set") @@ -104,9 +103,7 @@ def gather_stage(self, harvest_job): guid_to_package_id: dict[str, str] = self._get_guids_to_package_ids( harvest_job.source.id ) - guids_in_db: list[str] = [ - harvest_object.guid for harvest_object in guid_to_package_id - ] + guids_in_db: list[str] = list(guid_to_package_id.keys()) guids_in_source: list[str] = [] previous_guids: list[str] = [] @@ -115,6 +112,7 @@ def gather_stage(self, harvest_job): harvest_source_url: str = harvest_job.source.url.rstrip("?") while True: + log.debug(f"{self.HARVESTER} fetching records by url: {harvest_source_url}, page: {page}") records = self._fetch_records(harvest_source_url, page, records_per_page) batch_guids = [] @@ -174,6 +172,17 @@ def gather_stage(self, harvest_job): return ids + def _get_guids_to_package_ids(self, source_id: str) -> dict[str, str]: + query = ( + model.Session.query(HarvestObject.guid, HarvestObject.package_id) + .filter(HarvestObject.current == True) + .filter(HarvestObject.harvest_source_id == source_id) + ) + + return { + harvest_object.guid: harvest_object.package_id for harvest_object in query + } + def _fetch_records( self, url: str, page: int, records_per_page: int = 100 ) -> Optional[list[dict[str, Any]]]: @@ -372,18 +381,27 @@ def _get_pkg_dict(self, harvest_object): return pkg_dict + def _create_custom_package_create_schema(self) -> dict[str, Any]: + package_schema: dict[str, Any] = default_create_package_schema() # type: ignore + package_schema["id"] = [str] + + return package_schema + def _get_organisation( self, - organisation_mapping: list[dict[str, str]], + organisation_mapping: Optional[list[dict[str, str]]], resowner: str, harvest_object: HarvestObject, ) -> Optional[str]: """Get existing organization from the config `organization_mapping` field or create a new one""" - owner_org: Optional[str] = self._get_existing_organization( - organisation_mapping, resowner - ) + owner_org = None + + if organisation_mapping: + owner_org: Optional[str] = self._get_existing_organization( + organisation_mapping, resowner + ) return owner_org or self._create_organization(resowner, harvest_object) @@ -456,11 +474,22 @@ def _create_organization(self, resowner: str, harvest_object: HarvestObject) -> return org_id - def _create_custom_package_create_schema(self) -> dict[str, Any]: - package_schema: dict[str, Any] = default_create_package_schema() # type: ignore - package_schema["id"] = [str] + def _get_package_name(self, harvest_object: HarvestObject, title: str) -> str: + """Generate package name from title""" + package: model.Package = harvest_object.package - return package_schema + if package is None or package.title != title: + name = self._gen_new_name(title) + + if not name: + raise Exception( + "Could not generate a unique name from the title or the " + "GUID. Please choose a more unique title." + ) + else: + name = package.name + + return name def _fetch_resources(self, metashare_dict: dict[str, Any]) -> list[dict[str, Any]]: """Fetch resources data from a metashare_dict""" diff --git a/ckanext/datavic_harvester/helpers.py b/ckanext/datavic_harvester/helpers.py index 6ddcff0..c6066c7 100644 --- a/ckanext/datavic_harvester/helpers.py +++ b/ckanext/datavic_harvester/helpers.py @@ -4,7 +4,6 @@ import logging from typing import Optional -import requests from bs4 import BeautifulSoup import ckan.plugins.toolkit as tk @@ -19,15 +18,7 @@ def remove_all_attrs_except_for( soup: BeautifulSoup, allowed_tags: list[str] = ["a", "br"] ) -> BeautifulSoup: """Remove all attributes from tags inside soup except for the listed ones - Leave only "target" and "href" attributes for allowed ones. - - Args: - soup (BeautifulSoup): Instance of BeautifulSoup - allowed_tags (list[str], optional): list of allowed tags. Defaults to ["a", "br"]. - - Returns: - BeautifulSoup: Instance of BeautifulSoup - """ + Leave only "target" and "href" attributes for allowed ones.""" for tag in soup.find_all(True): if tag.name not in allowed_tags: @@ -43,15 +34,7 @@ def remove_all_attrs_except_for( def unwrap_all_except( soup: BeautifulSoup, allowed_tags: list[str] = ["a", "br"] ) -> str: - """Removes all tags from soup obj except for allowed ones - - Args: - soup (BeautifulSoup): Instance of BeautifulSoup - allowed_tags (list[str], optional): list of allowed tags. Defaults to ["a", "br"]. - - Returns: - str: stringified version of BeautifulSoup instance - """ + """Removes all tags from soup obj except for allowed ones""" for tag in soup.find_all(True): if tag.name not in allowed_tags: tag.unwrap() @@ -60,73 +43,17 @@ def unwrap_all_except( def extract_metadata_url(soup: BeautifulSoup, base_url: str) -> Optional[str]: - """Extract a metadata URL from a soup obj - - Args: - soup (BeautifulSoup): Instance of BeautifulSoup - base_url (str): full metadata url pattern - - Returns: - str: metadata URL - """ + """Extract a metadata URL from a soup obj""" for tag in soup.find_all("a"): if "href" in tag.attrs and base_url in tag["href"]: return tag["href"] -def fetch_update_frequency(full_metadata_url: str) -> str: - """Fetch an update_frequency from full_metadata_url - - Args: - full_metadata_url (str): full metadata URL - - Returns: - str: update_frequency value - """ - - update_frequency: str = "unknown" - - try: - response: requests.Response = requests.get(full_metadata_url) - except requests.RequestException as e: - log.error(f"Request error occured during fetching update_frequency: {e}") - return update_frequency - - soup: BeautifulSoup = BeautifulSoup(response.content, "html.parser") - - frequency_mapping: dict[str, str] = { - "deemed": "asNeeded", - "week": "weekly", - "twice": "biannually", - "year": "annually", - "month": "monthly", - "quarter": "quarterly", - } - - for tag in soup("script", attrs={"id": "tpx_ExternalView_Frequency_of_Updates"}): - tag_text: str = tag.get_text() - - for k, v in frequency_mapping.items(): - if k in tag_text: - return v - - return update_frequency - - def convert_date_to_isoformat( value: Optional[str], key: str, dataset_name: Optional[str], strip_tz=True ) -> Optional[str]: - """Convert a date string to isoformat - - Args: - value (str): date - key (str): metadata field key - dataset_name (str): dataset name - - Returns: - Optional[str]: isoformat date - """ + """Convert a date string to isoformat""" date = None if not value: @@ -144,15 +71,7 @@ def convert_date_to_isoformat( def get_from_to(page: int, datasets_per_page: int) -> tuple[int, int]: - """Calculate offset to make request with pagination by N records - - Args: - page (int): page number - datasets_per_page (int): limit of datasets per pae - - Returns: - tuple[int, int]: start and end - """ + """Calculate offset to make request with pagination by N records""" if page == 1: _from: int = 1 @@ -165,14 +84,7 @@ def get_from_to(page: int, datasets_per_page: int) -> tuple[int, int]: def munge_title_to_name(value: str) -> str: - """Munge a title into a name - - Args: - value (str): title - - Returns: - str: name - """ + """Munge a title into a name""" name = re.sub("[ .:/,]", "-", value) name = re.sub("[^a-zA-Z0-9-_]", "", name).lower() name = re.sub("[-]+", "-", name) From f56a5006a7bbcec276b043f5d09fd6f82fb2abfe Mon Sep 17 00:00:00 2001 From: mutantsan Date: Thu, 2 Feb 2023 17:52:32 +0200 Subject: [PATCH 18/21] SXDEDPCXZIC-109 / writing tests for base and delwp harvester --- .../datavic_harvester/data/delwp_records.txt | 2 +- ckanext/datavic_harvester/harvesters/base.py | 16 +- ckanext/datavic_harvester/harvesters/delwp.py | 46 ++-- ckanext/datavic_harvester/helpers.py | 7 +- ckanext/datavic_harvester/tests/conftest.py | 136 +++++++++++ .../tests/harvesters/__init__.py | 0 .../tests/harvesters/base/test_base.py | 48 ++++ .../tests/harvesters/base/test_base_config.py | 98 ++++++++ .../harvesters/dcat_json/test_dcat_json.py | 0 .../dcat_json/test_dcat_json_config.py | 0 .../tests/harvesters/delwp/test_delwp.py | 227 ++++++++++++++++++ .../harvesters/delwp/test_delwp_config.py | 91 +++++++ .../tests/harvesters/ods/test_ods.py | 15 ++ .../datavic_harvester/tests/test_helpers.py | 0 dev-requirements.txt | 5 + test.ini | 15 +- 16 files changed, 662 insertions(+), 44 deletions(-) create mode 100644 ckanext/datavic_harvester/tests/conftest.py create mode 100644 ckanext/datavic_harvester/tests/harvesters/__init__.py create mode 100644 ckanext/datavic_harvester/tests/harvesters/base/test_base.py create mode 100644 ckanext/datavic_harvester/tests/harvesters/base/test_base_config.py create mode 100644 ckanext/datavic_harvester/tests/harvesters/dcat_json/test_dcat_json.py create mode 100644 ckanext/datavic_harvester/tests/harvesters/dcat_json/test_dcat_json_config.py create mode 100644 ckanext/datavic_harvester/tests/harvesters/delwp/test_delwp.py create mode 100644 ckanext/datavic_harvester/tests/harvesters/delwp/test_delwp_config.py create mode 100644 ckanext/datavic_harvester/tests/harvesters/ods/test_ods.py create mode 100644 ckanext/datavic_harvester/tests/test_helpers.py diff --git a/ckanext/datavic_harvester/data/delwp_records.txt b/ckanext/datavic_harvester/data/delwp_records.txt index 8e91574..2adc488 100644 --- a/ckanext/datavic_harvester/data/delwp_records.txt +++ b/ckanext/datavic_harvester/data/delwp_records.txt @@ -1 +1 @@ -{"nhits": 1676, "parameters": {"dataset": "datashare-metadata", "rows": 500, "start": 1, "format": "json", "timezone": "UTC"}, "records": [{"datasetid": "datashare-metadata", "recordid": "a0a381abc1d5bdd495a5362ec2e301947ce557e8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "15c008e0-5d2f-574c-bb21-3241b4d94214", "publicationdate": "2019-11-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "MapInfo, ESRI Shape", "type": "dataset", "title": "Urban Development Program - Proposed Industrial Areas 2018", "alttitle": "IND2018_PROPOSED_AREAS", "tempextentbegin": "2018-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35627\", \"uuid\": \"15c008e0-5d2f-574c-bb21-3241b4d94214\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-10-22\", \"changeDate\": \"2022-08-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Urban Development Program - Proposed Industrial Areas 2018", "abstract": "Land identified as future industrial areas. Used in conjunction with Industrial land dataset.\nUrban Development Program (UDP).", "anzlicid": "ANZVI0803008565", "geonet_info_createdate": "2019-10-22", "revisiondate": "2022-08-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "06ec758f53ad644bbb0123336d8d00ea58afa6cc", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "81726131-7c8d-52b9-a243-d6a8429966e2", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Victorian Land Cover Time Series", "alttitle": "VIC_LANDCOVER_TS", "tempextentbegin": "1986-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41525\", \"uuid\": \"81726131-7c8d-52b9-a243-d6a8429966e2\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-07-22\", \"changeDate\": \"2021-07-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Land Cover Time Series", "abstract": "The Victorian Land Cover Time Series provides a consistent through time, whole-of-state, spatial land cover data set for 7 epochs (1987-1990, 1990-1995, 1995-2000, 2000-2005, 2005-2010, 2010-2015 and 2015-19). The dataset uses Landsat satellite imagery and local calibration (or training) data. The most likely layers (one for each epoch) classify each pixel in to one of 19 land cover classes. The dataset provides additional evidence for use alongside other South Australian mapping products to measure and map native and non-native land cover types (although land cover types delineated are different between States).", "anzlicid": "ANZVI0803005976", "geonet_info_createdate": "2020-07-22", "revisiondate": "2021-07-14", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b1dc1e6ca03634955a7cdf5b3b1b5bc5fe6ac56a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "76663b0e-369f-5369-aed7-c6dc52482850", "publicationdate": "2020-08-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-08-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats available:", "type": "dataset", "title": "Melbourne Industrial and Commercial Land Use Plan - Industrial Aug2020", "alttitle": "MICLUP_INDUSTRIAL_AUG2020", "tempextentbegin": "2020-08-02T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:01:58+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41526\", \"uuid\": \"76663b0e-369f-5369-aed7-c6dc52482850\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-08-05\", \"changeDate\": \"2020-08-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Melbourne Industrial and Commercial Land Use Plan - Industrial Aug2020", "abstract": "This data has been developed as a part of the Melbourne Industrial and Commercial Land Use Plan (MICLUP) and represents the spatial extent of industrial and commercial land identified in that plan for metropolitan Melbourne.\n\nThis dataset represents the spatial extent of existing and future industrial land in metropolitan Melbourne. The layer stores details of the precinct name (where known), metropolitan region, local government area, status (existing or future) and classification as identified in MICLUP.\n\nDatasets in the series are listed below. See their metadata entries for more detailed metadata. There are three separate dataset layers as follows: \nCommercial land - existing; \nCommercial land - future; \nIndustrial land - future and existing.\n\nThe layers store details of Metropolitan Region, Local Government Area, MICLUP classification and, depending on the layer, a range of other information relating to land area or floorspace area for each precinct identified in the MICLUP may also be included.\n\nNOTE: The industrial dataset was updated in August 2020 to correct an error in relation to state-significant industrial precincts in the vicinity of Beveridge and Officer-Pakenham.", "anzlicid": "ANZVI0803008677", "geonet_info_createdate": "2020-08-05", "revisiondate": "2020-08-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bdec5c9e7255c74c6ae069baedb7fca12a4d304a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "346c9317-f727-568f-94af-da47ba6826bf", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2011-09-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "Township Protection Plan Extents", "alttitle": "TPP_EXTENTS", "tempextentbegin": "2023-01-24T00:01:59+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:01:59+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35635\", \"uuid\": \"346c9317-f727-568f-94af-da47ba6826bf\", \"schema\": \"iso19115-3\", \"createDate\": \"2011-09-06\", \"changeDate\": \"2011-09-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Township Protection Plan Extents", "abstract": "This dataset defines the extent of Township Protection Plans prepared by the Country Fire Authority.", "anzlicid": "ANZVI0803004110", "geonet_info_createdate": "2011-09-06", "revisiondate": "2011-09-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d0378b89d4203bd2b26504e5cc060293ccd98a0a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "a9c95992-c656-5d96-9b6c-c8a58b2b9466", "publicationdate": "2020-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-01-15", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Emergency Water Supply Points", "alttitle": "EWSP", "tempextentbegin": "2000-09-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:02+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41539\", \"uuid\": \"a9c95992-c656-5d96-9b6c-c8a58b2b9466\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-01-15\", \"changeDate\": \"2020-01-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Emergency Water Supply Points", "abstract": "Victoria has a network of about 300 emergency water supply points (EWSPs). The EWSPs provide water carting for emergency stock and domestic purposes, during severe dry seasonal conditions and surface water scarcity. Some sites are also equipped to supply water to firefighting vehicles. \n\nThe Department of Environment, Land, Water and Planning (DELWP) oversees the network of emergency water supply points.\n\nThe EWSPs are managed by various state agencies, including local councils and urban and rural water corporations. These state agencies are referred to as the EWSP Manager for maintenance, access and use issues, and for further information.\n\nThere are three main types of EWSPs accessible to the public for water carting:\n- Council bores - access groundwater.\n- Urban standpipes - are connected to reticulated potable water systems. These are managed by urban water corporations and access is subject to water availability. A permit may be needed and costs may apply as they are considered a commercial use.\n- Rural standpipes - access channels or reservoirs. These are managed by rural water corporations", "anzlicid": "ANZVI0803005775", "geonet_info_createdate": "2020-01-15", "revisiondate": "2020-01-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e2de8f880fcece8072b3a92454ae1eff80513992", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "084a5409-0bcf-5929-be8d-28197f8169ad", "publicationdate": "2022-12-06", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-04-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Apiary Buffer Zones", "alttitle": "APIARY_BUFF", "tempextentbegin": "2009-11-03T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:01:53+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35613\", \"uuid\": \"084a5409-0bcf-5929-be8d-28197f8169ad\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-06-15\", \"changeDate\": \"2022-04-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Apiary Buffer Zones", "abstract": "This layer is derived from the APIARY layer and defines the buffer zones around CLM Apiary sites in Victoria, based on whether the site is permanent or temporary. There is one zone for each apiary site.", "anzlicid": "ANZVI0803003718", "geonet_info_createdate": "2020-06-15", "revisiondate": "2022-04-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1dc4bb14ba21d1b0390e345fead6d4e545271950", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "b12b43d2-7b1a-52b3-ba63-59fdaaefaf22", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Feature Type Table - Land Administration Themes (Lat)", "alttitle": "FEATURE_TYPE_LAT", "tempextentbegin": "2023-01-24T00:02:05+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:05+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35651\", \"uuid\": \"b12b43d2-7b1a-52b3-ba63-59fdaaefaf22\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Feature Type Table - Land Administration Themes (Lat)", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003224", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "faa86d1a1927fbacc1c7751024c4951a638eb863", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "11208266-a050-5905-8ac6-86da0fd82f7c", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-11-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital: ArcView, ArcInfo & MapInfo", "type": "dataset", "title": "Victorian Coal Sub Crop Regions", "alttitle": "COALINVSCROP", "tempextentbegin": "2007-02-06T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2023-01-24T00:02:05+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35652\", \"uuid\": \"11208266-a050-5905-8ac6-86da0fd82f7c\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-09\", \"changeDate\": \"2015-11-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Coal Sub Crop Regions", "abstract": "Details the location and attributes of coal subcrops in Victoria.\nSpatial accuracy defined as attribute \"Loc_Acc\"\n\nData is from the \"Victorian Coal - A 2006 Inventory of Resources\"\nAvailable via the online store\nOn Line store", "anzlicid": "ANZVI0803003499", "geonet_info_createdate": "2015-11-09", "revisiondate": "2015-11-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b933054fa170750e00b74d8b600975f11909783a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "aa060c26-645a-5ca9-899f-e2ca8fb1e694", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-01-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - Fire Rescue Victoria (FRV) Region Polygon", "alttitle": "FRV_REGION", "tempextentbegin": "2020-06-30T14:00:00+00:00", "resowner": "Fire Rescue Victoria;Fire Rescue Victoria", "tempextentend": "2023-01-24T00:02:06+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41697\", \"uuid\": \"aa060c26-645a-5ca9-899f-e2ca8fb1e694\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-09-11\", \"changeDate\": \"2022-01-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - Fire Rescue Victoria (FRV) Region Polygon", "abstract": "Part of the Vicmap Admin dataset series. This layer contains polygon features delineating the current Fire Rescue Victoria Region Boundaries.\n\nPolygon features demonstrating FRV's two administrative regions. FRV Regions are a parent-group to FRV Districts.\n\nThis data is current as of 1 Dec 2021.", "anzlicid": "ANZVI0803008686", "geonet_info_createdate": "2020-09-11", "revisiondate": "2022-01-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1aa7833a7de0d3a1feb4b041e666f4c7bb38eb7f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7b4e8b68-7803-5844-8b12-4edda539cb4d", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Geotiff", "type": "dataset", "title": "Fire severity map of the major fires in Gippsland and north east Victoria in 2019/20 (version 1.0)", "alttitle": "BUSHFIRE_SEVERITY_EAST_AND_NORTHEAST_VICTORIA_2019-20", "tempextentbegin": "2019-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2019-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota;farming;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41497\", \"uuid\": \"7b4e8b68-7803-5844-8b12-4edda539cb4d\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-04-27\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Fire severity map of the major fires in Gippsland and north east Victoria in 2019/20 (version 1.0)", "abstract": "Fire severity classification of bushfires (wildfires) impacting ~1.5 million hectares of predominantly forested public land in eastern and north-eastern Victoria (and ~300,000 ha of southern NSW), between November 2019 and March 2020. Fire severity mapping was derived using machine learning classification (Random forests) of eight Spectral Indices (SI) from pre and post fire Sentinel 2 satellite imagery. The fire severity classification model was trained using high resolution (<35 cm) post-fire near-infrared aerial imagery from 12 bushfires which occurred during the 2018/2019 fire season across areas of Central and Eastern Victoria. A detailed description of the classification methodology can be found in Collins et al. (2018). The classification covers woody vegetation landcover types (including native and non-native forest, woodland and shrubland).\nThe primary purpose of this data to provide rapid and comprehensive landscape-scale spatial information about bushfire severity to inform initial risk assessments on the public land in the actual and potential impact zone. This assists with the transition from response to emergency stabilisation and initial recovery in accordance with the Code of Practice for Bushfire Management on Public Land (2012).\nFire severity classes are i) Canopy burnt (Class 6)- CB (> 20% canopy foliage consumed); ii) High canopy scorch (5) - HCS (>80% of canopy foliage is scorched); Medium canopy scorch (4) - MCS (Canopy is a mosaic of both unburnt and scorched foliage, 20 - 80%); iii) Low canopy scorch (3) - LCS (Canopy foliage is largely unaffected (<20% scorched), but the understorey has been burnt); iv) Unburnt (2) - UB (Canopy and understorey foliage are largely (>90%) unburnt). Additional classes: v) No Data (0) (e.g. due to obscuration by cloud, cloud-shadow and/or smoke and haze) and vi) Non-woody vegetation (unclassified) (1). \nAn independent cross-validation of the classification model was used to estimate global and per-class model accuracy. Overall accuracy is estimated to be 85% (0.81 Kappa), with producer per-class accuracy ranging from 97% (CB), 91% (HCS), 88% (UB), 75% (LCS) and 61% (MCS). A ground-based validation of the classification has not been undertaken. \nData is provided on the basis that users undertake responsibility for assessing the relevance and accuracy of its content. The Department of Environment, Land, Water and Planning, on behalf of the Victorian Government, makes no representations, either expressed or implied, as to the suitability of this data for any particular purpose.\nWe do not accept any liability to any person:\n- for the information, data or advice (or the use of such information, data or advice) which is provided or incorporated into it by reference\n- for any interference with or damage to a user's computer, software or data occurring in connection with or relating to this data or its use\nRelated research can be found in L. Collins, P. Griffioen, G. Newell, A. Mellor (2018), The utility of Random Forests for wildfire severity mapping, Remote Sensing of Environment, 216, 374-384", "anzlicid": "ANZVI0803008638", "geonet_info_createdate": "2020-04-27", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bcae6faf4246195675d4b5a40b5a233c9551c179", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6ff1225f-28e6-5c9f-ad68-30110c645a6f", "publicationdate": "2019-12-07", "publishedforgroup": "12264;0", "geonet_info_changedate": "2020-02-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital format", "type": "dataset", "title": "Immediate Protection Areas IPA", "alttitle": "IMMEDIATE_PROTECTION_AREAS", "tempextentbegin": "2019-11-20T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2019-11-20T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41500\", \"uuid\": \"6ff1225f-28e6-5c9f-ad68-30110c645a6f\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-13\", \"changeDate\": \"2020-02-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Immediate Protection Areas IPA", "abstract": "This layer represents polygon coverage of immediate protection areas announced under the Victorian Forestry Plan and updated on 21 November 2019. The Immediate Protection Area (IPA) responds to a new conservation measure described within the Flora and Fauna Guarantee (FFG) Action Statement for the Greater Glider and indicates areas of State Forest (including existing Special Protection Zone, Special Management Zone and General Management Zone) and other public land areas where timber harvesting operations are to be excluded.", "anzlicid": "ANZVI0803008620", "geonet_info_createdate": "2020-02-13", "revisiondate": "2020-02-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2190f356007701828487d79ac6219ef1df34ffae", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8867727d-36e5-5529-9807-3e93c58d4c48", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-06-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Chloride Sampled GMS Bore Locations", "alttitle": "GW_BORES_CL", "tempextentbegin": "2011-08-01T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-03-02T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33622\", \"uuid\": \"8867727d-36e5-5529-9807-3e93c58d4c48\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-06-21\", \"changeDate\": \"2013-06-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Chloride Sampled GMS Bore Locations", "abstract": "This dataset contains information for boreholes that record groundwater chloride concentration levels sourced from the Victorian Groundwater Management System (GMS). It could be used in conjuction with the chloride deposition in rainfall dataset (developed by the CSIRO) to undertake a mass balance analysis to derive groundwater recharge.", "anzlicid": "ANZVI0803004933", "geonet_info_createdate": "2013-06-21", "revisiondate": "2013-06-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d5d84fd0ff30034a7e826d9757a0d6934c3eb3fb", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e5456012-837b-5982-8f04-b05e01f7c08b", "publicationdate": "2018-01-23", "publishedforgroup": "12264;0", "geonet_info_changedate": "2015-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL: Standard GIS Vector layers", "type": "dataset", "title": "Port Phillip Bay seagrass mapping at nine aerial assessment regions in April 2008", "alttitle": "SEAGRASS_PPB_9REGIONS_APRIL08", "tempextentbegin": "2008-04-19T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2008-08-11T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;farming;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33624\", \"uuid\": \"e5456012-837b-5982-8f04-b05e01f7c08b\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-25\", \"changeDate\": \"2015-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Port Phillip Bay seagrass mapping at nine aerial assessment regions in April 2008", "abstract": "This polygon layer represents seagrass habitat at nine regions in Port Phillip Bay in April 2008 mapped from aerial photography. The mapping was undertaken for the Baywide Seagrass Monitoring Program (CDP_ENV_MD_022 Rev5 - Port of Melbourne Corporation, 2010). The program is being undertaken for the Port of Melbourne Corporation as part of Baywide Monitoring to support the Channel Deepening Project.", "anzlicid": "ANZVI0803004651", "geonet_info_createdate": "2015-11-25", "revisiondate": "2015-11-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2da69894823c13b2c741cf276ce7d8585f72ed0f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "957d76d0-8637-59c8-9b30-ea5bd0df272f", "publicationdate": "2018-10-30", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-31", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Designated Water Supply Catchments", "alttitle": "PWSC100", "tempextentbegin": "1991-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:37+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33715\", \"uuid\": \"957d76d0-8637-59c8-9b30-ea5bd0df272f\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-14\", \"changeDate\": \"2021-08-31\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Designated Water Supply Catchments", "abstract": "Formerly Proclaimed Water Supply Catchments.\nDomestic Water Supply Catchments as proclaimed under the Soil Conservation and Land Utilization Act, 1958 in conjunction with the Land Conservation Act, 1970. This layer identifies domestic Water Supply Catchments that are subject to a Land Use Determination or a Land Use Notice.", "anzlicid": "ANZVI0803001039", "geonet_info_createdate": "2017-03-14", "revisiondate": "2021-08-31", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "df2e8be448d6a60df84cc424fca5fcb1cf09a2ef", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0738854a-a44b-5ace-9e83-61cf4e51996e", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-02-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, MapInfo, Non digital - plotted maps", "type": "dataset", "title": "Geophysical Miscellaneous lines (1:100,000), Geophysical Interpretation of other linear geological features", "alttitle": "GPMISCL100", "tempextentbegin": "1994-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33720\", \"uuid\": \"0738854a-a44b-5ace-9e83-61cf4e51996e\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-09\", \"changeDate\": \"2016-02-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geophysical Miscellaneous lines (1:100,000), Geophysical Interpretation of other linear geological features", "abstract": "This dataset displays miscellaneous geological line data not covered by the other geophysical datasets.\n\nAt scales larger than 1:120,000 the display is a combination of both 1:100,000 and 1:250,000 geophysical mapping. Recent 1:250,000 geophysical mapping has been of such quality and detail it has been used to supersede older coincident 1:100,000 mapping. This occurs in the following areas: St Arnaud 7524, Dunolly 7624, Charlton 7525, Wedderburn 7625 and part of Ararat 7423 are superseded by St Arnaud SJ54-4. Bendigo 7724, Heathcote 7824 and Nagambie 7924 are superseded by Bendigo SJ55-1. \n\nBalmoral 7223, Ararat 7423, Horsham SJ54-3 and St Arnaud SJ54-4 supersede Grampians 7323 where there is overlap.\n\nThis data has been collected by the Geological Survey of Victoria. This dataset is accompanied by other datasets representing geological polygons and boundaries, sub-surface geological polygons, structural lines and metamorphism.", "anzlicid": "ANZVI0803002669", "geonet_info_createdate": "2016-02-09", "revisiondate": "2016-02-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2efd1673d2e085ee2d14655c611d9f11c2d09e2b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a42f0610-229d-5642-ae05-a6f2006e12f7", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - Victorian Government Region Polygon Aligned to Property", "alttitle": "VICGOV_REGION", "tempextentbegin": "2005-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:39+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35763\", \"uuid\": \"a42f0610-229d-5642-ae05-a6f2006e12f7\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - Victorian Government Region Polygon Aligned to Property", "abstract": "Part of the Vicmap Admin dataset series. \n\nThis dataset contains the Victorian Government Regional Departmental Boundaries as defined by Local Government Victoria, Dept. of Planning & Community Development (DPCD). There are eight regions.\n\nAligned to Vicmap Property.", "anzlicid": "ANZVI0803003034", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "527a19891d8ca35b68d49e6ade392184da07d2ce", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d6f410a9-57a4-5414-9c22-0360328a02ef", "publicationdate": "2018-04-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-11-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - Shapefile", "type": "dataset", "title": "Geological units represented as two dimensional polygons (1:250,000)", "alttitle": "SG_GEOLOGICAL_UNIT_250K", "tempextentbegin": "2005-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2014-08-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33676\", \"uuid\": \"d6f410a9-57a4-5414-9c22-0360328a02ef\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-11-05\", \"changeDate\": \"2014-11-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological units represented as two dimensional polygons (1:250,000)", "abstract": "This dataset contains primary geological data, namely outcropping/sub-cropping geological rock units and boundary types separating rock units. Other geological features (e.g. fault or dyke) are included where the feature forms a boundary to rock units. The polygon edges are constructed from the corresponding geological contacts and faults layer\n\nThe data have been collected by the GeoScience Victoria.", "anzlicid": "ANZVI0803004691", "geonet_info_createdate": "2014-11-05", "revisiondate": "2014-11-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f295e619b0f4b678399caf846851077cf6ee54ae", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "df71f7c1-e697-5527-b370-88a8f8f323ab", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-11", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Spatial Vision Mapbook Index 1:20,000 Edition 6", "alttitle": "MAPBOOK_MAPINDEX_20_ED6", "tempextentbegin": "2018-11-26T13:00:00+00:00", "resowner": "Spatial Vision Pty Ltd", "tempextentend": "2018-11-26T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Biannually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35717\", \"uuid\": \"df71f7c1-e697-5527-b370-88a8f8f323ab\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-05-20\", \"changeDate\": \"2021-11-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Spatial Vision Mapbook Index 1:20,000 Edition 6", "abstract": "This dataset is derived from the Mapbook directory and contains the map index for the 1:20 000 town maps.", "anzlicid": "ANZVI0803004603", "geonet_info_createdate": "2013-05-20", "revisiondate": "2021-11-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "19b5caf32384cbce8611f8f73ca16aa1408a0199", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f4173d98-ef98-5690-b9d5-70808fcc3403", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-11-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Bass Strait Depth Zone Polygons at 1:250,000", "alttitle": "BATHYMETRY_BASS_STRAIT_POLY", "tempextentbegin": "1995-01-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "1995-03-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33657\", \"uuid\": \"f4173d98-ef98-5690-b9d5-70808fcc3403\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-11-13\", \"changeDate\": \"2014-11-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Bass Strait Depth Zone Polygons at 1:250,000", "abstract": "This layer contains polygon features which represent depth zones in Bass Strait.", "anzlicid": "ANZVI0803004017", "geonet_info_createdate": "2014-11-13", "revisiondate": "2014-11-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ed2cc7ca74d61dd0283f4a08a30ed4b43af2c486", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "8a7b3226-4721-57a8-bc95-035c7478acc0", "publicationdate": "2022-03-16", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "Aircraft Predetermined Dispatch Boundaries", "alttitle": "CFA_PDD", "tempextentbegin": "2014-09-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2015-09-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;planned", "topiccat": "boundaries;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35695\", \"uuid\": \"8a7b3226-4721-57a8-bc95-035c7478acc0\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-10-26\", \"changeDate\": \"2022-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "limitedDistribution", "defaulttitle": "Aircraft Predetermined Dispatch Boundaries", "abstract": "Boundaries indicating the Predetermined Dispatch Boundaries for Aircraft. This dataset has been updated to represent the boundaries for the 2022 season. \n\nThe CFA_PDD_HARVEST and CFA_PDD_POST_HARVEST datasets have been replaced by this one.", "anzlicid": "ANZVI0803005351", "geonet_info_createdate": "2017-10-26", "revisiondate": "2022-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fb6e29930033b3da606c083436f3b859e34f759f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5528c2ea-cdb1-56ca-aa3f-fff9d8277b99", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats.", "type": "product", "title": "Vicmap Property", "alttitle": "VICMAP_PROPERTY", "tempextentbegin": "2023-01-24T00:02:19+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:19+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35696\", \"uuid\": \"5528c2ea-cdb1-56ca-aa3f-fff9d8277b99\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-07\", \"changeDate\": \"2022-07-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Property", "abstract": "Vicmap Property consists of data representing Victoria's land parcels and properties and is used extensively in Geographic Information Systems (GIS) by the public and private sectors. \n\nVicmap Property Content includes\n \u00b7 Parcel and Property Polygon views;\n \u00b7 Parcel and Property Identifiers - parcel descriptors (including Standard Parcel Identifiers (SPI)), \n Council reference numbers;\n \u00b7 Registered and proposed (All proposals entered prior to July 2002 are non-polygonal and all \n entered post July 2002 are polygonised) parcels;\n \u00b7 Crown and Freehold land differentiation;\n \u00b7 Cadastral Road Casements;\n \u00b7 Easements (Note: all new easements are being captured for the whole State. Previously, only \n easements in the metropolitan area were captured. There is no current program to review and \n capture missing easements);\n \u00b7 Unique Feature Identifiers, date stamps and data quality information.\nSpatial Datasets comprising Vicmap Property are listed below. See their metadata entries for more detailed metadata.\nAnnotation Text - Vicmap Property (ANNOTATION_TEXT);\nCadastral Area Boundary - Vicmap Property (CAD_AREA_BDY);\nEasement - Vicmap Property (EASEMENT)\nCentroid - Vicmap Property (CENTROID);\nParcel View - Vicmap Property (PARCEL_VIEW);\nProperty View - Vicmap Property (PROPERTY_VIEW);\nRoad Casement - Vicmap Property (ROAD_CASEMENT_POLYGON );\nUnconnected Centroid - Vicmap Property (UNCONNECTED_CENTROID);", "anzlicid": "ANZVI0803002683", "geonet_info_createdate": "2017-03-07", "revisiondate": "2022-07-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b49598ed7d59682bf0c7b9328836160b5f29baf4", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f8bb9033-7c7e-506c-b685-35511abae8c5", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Framework State Table", "alttitle": "FR_STATE", "tempextentbegin": "2023-01-24T00:02:19+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:19+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33661\", \"uuid\": \"f8bb9033-7c7e-506c-b685-35511abae8c5\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Framework State Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003229", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a61b9ecae8dd77f62f88e120ffac9bd53656349b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7b4879b2-8614-513d-97b9-b736786f872e", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Flood height point data 2012", "alttitle": "HISTORIC_HEIGHT_PT", "tempextentbegin": "1869-12-31T14:20:08+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2012-08-20T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35698\", \"uuid\": \"7b4879b2-8614-513d-97b9-b736786f872e\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-12-12\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Flood height point data 2012", "abstract": "Point features delineating observed and interpreted flood heights, derived from observations during flood events as well as flood mapping projects. The height captured is the height in metres above the AHD of flood levels reached. \nIt shows recorded flood heights from 1870 to 2012. \nIt is used in conjunction with historic flood extents and contours.\n\nThe data is coded with date of observation (actual flood time and date) as much as possible.\n\nNote: \n- This data does NOT represent flood water depth.\n- The Flood Height Points dataset accommodate all available flood height point data, including observed flood heights until 2012. \n- All historical data is included with observed, interpreted and modelled flood height data for each event within the one layer.\n\nA reliability and interpretation methodology can apply to each point.", "anzlicid": "ANZVI0803003625", "geonet_info_createdate": "2018-12-12", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d64bd2f83a84a550d3423d8aa023f2bda3531eca", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0f31e046-c713-5fe8-aa75-5e180b2ae148", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Road Type Table", "alttitle": "ROAD_TYPE", "tempextentbegin": "2023-01-24T00:02:21+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:21+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33667\", \"uuid\": \"0f31e046-c713-5fe8-aa75-5e180b2ae148\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Road Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003160", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4a881a11afb7e1b99e3e30107d1346499cbf7b9e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "50438d3f-636a-5a13-abcf-c67e3d7fad53", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - State Council Polygon 2013", "alttitle": "STATE_COUNCIL_2013", "tempextentbegin": "2005-10-29T14:00:00+00:00", "resowner": "Victorian Electoral Commission", "tempextentend": "2023-01-24T00:02:21+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33668\", \"uuid\": \"50438d3f-636a-5a13-abcf-c67e3d7fad53\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-08-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - State Council Polygon 2013", "abstract": "Statewide data showing Upper House boundaries and names. These are the Legislative Council Electoral boundaries referred to as the Upper House Boundaries. \n\nThese boundaries are the result of the 2012-2013 State Redivision conducted under requirements of the Electoral Boundaries Commission Act 1982. These boundaries will apply at the Victorian State Election in 2014.", "anzlicid": "ANZVI0803005250", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-08-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fb23647055b12ed0d294add73015dad023e25061", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2a68c769-5237-55bc-8848-e0b12935e732", "publicationdate": "2023-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-10-07", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "type": "dataset", "title": "EPA Victoria Groundwater Quality Restriction Use Zones (GQRUZ) - Location Polygons", "alttitle": "GQRUZ_POLYGON", "tempextentbegin": "1905-11-30T14:00:00+00:00", "resowner": "Environment Protection Authority Victoria", "tempextentend": "2020-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Daily", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;society;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33645\", \"uuid\": \"2a68c769-5237-55bc-8848-e0b12935e732\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-08-15\", \"changeDate\": \"2020-10-07\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "EPA Victoria Groundwater Quality Restriction Use Zones (GQRUZ) - Location Polygons", "abstract": "Groundwater Quality Restricted Use Zones (GQRUZ) are areas where there has been historic groundwater pollution as a result of previous industrial or other activities. These zones have been subject to clean up in line with the relevant environmental standards. However, restrictions remain on what the water can be used for if it is extracted via a groundwater bore.\n\nA GQRUZ remains when attempts have been made to clean up the groundwater at the affected site, but full clean-up was not possible - as it is often difficult to remove 100 per cent of groundwater pollution. It also may be impractical to clean up groundwater to the level needed to restore it to its original condition. EPA then identifies restrictions that should remain on how the water can be used without further treatment.\n\nGQRUZ do not represent a comprehensive list of all sites where groundwater quality may not be suitable for use. Rather, they represent locations where EPA has formally recognised that groundwater is polluted, following site investigations under EPA's environmental audit program. Other sources of information on groundwater quality include EPA's Priority Sites Register, which lists sites which are currently undergoing clean-up under EPA's compliance and enforcement activities.\n\nThis dataset mirrors the GQRUZ data available on EPA's website interaction portal, but may not be up to date due to data transfer processes. For the most up to date data, go to EPA's website interaction portal.", "anzlicid": "ANZVI0803005873", "geonet_info_createdate": "2019-08-15", "revisiondate": "2020-10-07", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8834224fa29769c94a4a73981c1d72bf74e1426c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "9de96197-aacd-5dc7-b952-ca759b8a3e43", "publicationdate": "2017-11-09", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-12-02", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "ESRI Shapefile", "type": "dataset", "title": "Electricity Distribution Boundaries", "alttitle": "ELECTRICITY_DISTRIBUTOR", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35729\", \"uuid\": \"9de96197-aacd-5dc7-b952-ca759b8a3e43\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-11-22\", \"changeDate\": \"2022-12-02\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Electricity Distribution Boundaries", "abstract": "The data outlines the boundaries, on a map, of the five electricity distributors in Victoria. http://www.esc.vic.gov.au/", "anzlicid": "ANZVI0803005805", "geonet_info_createdate": "2017-11-22", "revisiondate": "2022-12-02", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1cd3ec52f53414c272661b3b10670d3ff02b8dab", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "60862af2-e3f7-5372-9e06-2bdc85142f67", "publicationdate": "2021-08-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "PTV Regional Bus Routes", "alttitle": "PTV_REGIONAL_BUS_ROUTE", "tempextentbegin": "2018-02-28T13:00:00+00:00", "resowner": "Department of Transport", "tempextentend": "2023-01-24T00:02:30+00:00", "maintenanceandupdatefrequency_text": "Quarterly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33693\", \"uuid\": \"60862af2-e3f7-5372-9e06-2bdc85142f67\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-02\", \"changeDate\": \"2022-02-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "PTV Regional Bus Routes", "abstract": "This layer depicts a spatial object (polyline) representing regional bus routes. Each polylines represents a unique route variation. Each bus route has attributes that describe route, trip headsign (direction), route length, first/last stop, number of stops and operator name. The data has been generated from the PTV GTFS data with extra attributes from PTV's TransNet database. \nThis dataset does not include V/Line Coach Routes. V/Line Coach routes are included in the dataset PTV_REGIONAL_COACH_ROUTE.\nThis dataset supersedes \"PTV_BUS_ROUTE_REGIONAL\" (which included both regional bus and regional coach routes).\nThis dataset was first loaded into the VSDL in March 2018 and will be updated approximately quarterly.", "anzlicid": "ANZVI0803005845", "geonet_info_createdate": "2018-03-02", "revisiondate": "2022-02-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0da8c6086f447e67325430801d0a2b4d552fb84e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8593a7c5-5977-5ea9-a824-9541536804ad", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-12-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Catch and Effort Cells for the Gippsland Lakes fisheries", "alttitle": "CE_GIPPSLAND_LAKES_1998", "tempextentbegin": "2004-02-03T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2004-02-03T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35733\", \"uuid\": \"8593a7c5-5977-5ea9-a824-9541536804ad\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-12-05\", \"changeDate\": \"2016-12-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Catch and Effort Cells for the Gippsland Lakes fisheries", "abstract": "This layer features the area cells used to record Catch and Effort data for the Gippsland Lakes commercial fisheries since April 1998. This layer is also used by the Gippsland Lakes and Gippsland Lakes (Mussel Dive) fisheries.", "anzlicid": "ANZVI0803002811", "geonet_info_createdate": "2016-12-05", "revisiondate": "2016-12-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "67e3a7bd1e5498731aa5d117ec205cadf172f38e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "82794bd0-771f-5e44-b0ac-e736fce55286", "publicationdate": "2022-07-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-20", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "shapefile ArcSDE", "type": "dataset", "title": "Water Corporations", "alttitle": "WATER_CORP", "tempextentbegin": "2007-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33695\", \"uuid\": \"82794bd0-771f-5e44-b0ac-e736fce55286\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-04-13\", \"changeDate\": \"2022-07-20\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Water Corporations", "abstract": "Boundaries defining the approximate jurisdiction of the Urban Water Corporations.\nOn 1 July 2021, Greater Western Water was formed by merging Western Water and City West Water.", "anzlicid": "ANZVI0803005824", "geonet_info_createdate": "2018-04-13", "revisiondate": "2022-07-20", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f496cc339b93c2b16f0e42990333c0a1209245d2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0058eda4-7b1e-5681-9758-7adbda8481b1", "publicationdate": "2021-08-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "PTV Metro Tram Stops", "alttitle": "PTV_METRO_TRAM_STOP", "tempextentbegin": "2018-02-28T13:00:00+00:00", "resowner": "Department of Transport", "tempextentend": "2023-01-24T00:02:32+00:00", "maintenanceandupdatefrequency_text": "Quarterly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35739\", \"uuid\": \"0058eda4-7b1e-5681-9758-7adbda8481b1\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-02\", \"changeDate\": \"2022-02-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "PTV Metro Tram Stops", "abstract": "This layer depicts spatial objects (points) representing metropolitan tram stops. Each tram stop has attributes that describe StopID, StopName, Lat/Long, Ticket Zone and Routes Using Stop. The data has been generated from the PTV GTFS data with extra attributes from PTV's TransNet database. \nThis dataset supersedes \"PTV_TRAM_STOP\" (which included metro and regional stops).\nThis dataset was first loaded into the VSDL in March 2018 and will be updated approximately quarterly.", "anzlicid": "ANZVI0803005856", "geonet_info_createdate": "2018-03-02", "revisiondate": "2022-02-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "407a5de6db5353350b91e451c91f4aebae072a9a", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1d1b5a75-39f8-5f7b-841e-b3b416066943", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-04-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Property - Parcel Polygon associated Display View Polygon Table", "alttitle": "PARCEL_VIEW_DVP", "tempextentbegin": "2023-01-24T00:02:33+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:33+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35743\", \"uuid\": \"1d1b5a75-39f8-5f7b-841e-b3b416066943\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-04-08\", \"changeDate\": \"2014-04-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Property - Parcel Polygon associated Display View Polygon Table", "abstract": "Part of VMPROP, PARCEL_VIEW_DVP is an Aspatial table. \n\nIt is created by comparing the polygons in the PARCEL_VIEW table with the polygons in the DISPLAY_VIEW_POLYGON table. It holds a record for each PFI in the PARCEL_VIEW table, and the DISPLAY column has a value indicating whether the polygon is Inside, Outside, or Both (partly inside and partly outside) a DISPLAY_VIEW_POLYGON polygon.\n\nThis dataset provides a way of limiting the display of parcel_view polygons so maps can be drawn efficiently. Polygons with a DISPLAY value of I (inside) can be drawn at larger scales (eg 1:5000), while those with O (outside) can be drawn at smaller scales (eg. 1:50,000). This means rural areas can be displayed at a suitable scale, without the burden of displaying polygons in a town. A DISPLAY value of B (both) is used for some polygons which can be displayed at both scales. These can be rivers, or multi-part polygons with parts inside and outside the DVP. \n\nTo use this flag for drawing a join is needed - parcel_view.pfi = parcel_view_dvp.parcel_view_pfi", "anzlicid": "ANZVI0803005223", "geonet_info_createdate": "2014-04-08", "revisiondate": "2014-04-08", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e97d60841b1cd35615898083313f5e1ca35d3a0a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "82b46b59-9ce5-5baa-a0cf-2a227d1861ac", "publicationdate": "2018-10-25", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-11-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "2016 Bellarine Peninsula 1% AEP Coastal Inundation Dynamic Model with 0.8m Sea Level Rise", "alttitle": "BP_DYNAMIC_1AEP_080SLR", "tempextentbegin": "2014-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;geoscientific information;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33704\", \"uuid\": \"82b46b59-9ce5-5baa-a0cf-2a227d1861ac\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-10-19\", \"changeDate\": \"2022-11-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2016 Bellarine Peninsula 1% AEP Coastal Inundation Dynamic Model with 0.8m Sea Level Rise", "abstract": "The Bellarine-Corio Bay Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Bellarine-Corio Bay coastal environment.\n\nDynamic inundation modelling was carried out to create this data layer for 1% Annual Exceedance Probability (AEP) coastal inundation under the assumption of 0.8 m Sea Level Rise in 2016, for the following study areas along the coast of the Bellarine Peninsula and Greater Geelong area: Barwon Heads / Lake Connewarre; Breamlea; Newcomb; and Queenscliff / Lakers Cutting.\n\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.\n\nAttribute Information: \nMax_d - Maximum depth (m); \nmax_s - Maximum velocity (m/s); \nmax_vxd - Velocity*Depth Criteria; \nmax_wse - Maximuum water surface elevation (mAHD).", "anzlicid": "ANZVI0803005924", "geonet_info_createdate": "2018-10-19", "revisiondate": "2022-11-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "85a2d9bc1bd14404582d219e56716dafc23f2f8e", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ce04d9e3-22e8-5266-814b-ddde962f724b", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Fragmentation Reach Summary Table", "alttitle": "ISC2010_FRAGMENTATION_R", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33706\", \"uuid\": \"ce04d9e3-22e8-5266-814b-ddde962f724b\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Fragmentation Reach Summary Table", "abstract": "The ISC2010_FRAGMENTATION_R table is the Statistical Summary table for the Fragmentation Metric at the Reach level.\n\nThe ISC2010_FRAGMENTATION_R table is designed to JOIN to the ISC2010_RIVER_CENTRELINES_R feature class.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005129", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "769ce82615de1f5222cf20c8920fc68be7913e1d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "438ecb7f-eb2f-5c44-a625-3a464bbb7f11", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-11-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Regolith Observation Points from field mapping", "alttitle": "REGOLPT", "tempextentbegin": "2001-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2002-03-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35746\", \"uuid\": \"438ecb7f-eb2f-5c44-a625-3a464bbb7f11\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-11-29\", \"changeDate\": \"2013-11-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Regolith Observation Points from field mapping", "abstract": "Regolith information derived from field mapping. Includes information on regolith materials, landforms, bedrock lithology, geomorphological processes and environmental hazards for particular field sites.", "anzlicid": "ANZVI0803002598", "geonet_info_createdate": "2013-11-29", "revisiondate": "2013-11-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "53511ad6023e3c82af26a90ba5b47c7e659a49cd", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "23efc056-dbb6-5b0d-ab3a-78dbaaed84ad", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Infrastructure Mine Substance Exracted Table", "alttitle": "IN_MINE_SUBSTANCE_EXTRACTED", "tempextentbegin": "2023-01-24T00:02:35+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:35+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35750\", \"uuid\": \"23efc056-dbb6-5b0d-ab3a-78dbaaed84ad\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Infrastructure Mine Substance Exracted Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003204", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f0b16a06cc38b5cc8b0b8bf8768898e31c6e61ef", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2cefd40b-c5bb-5989-b9b0-c2843f401958", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - State Council Polygon 2005", "alttitle": "STATE_COUNCIL_2005", "tempextentbegin": "2005-10-29T14:00:00+00:00", "resowner": "Victorian Electoral Commission", "tempextentend": "2023-01-24T00:02:36+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33710\", \"uuid\": \"2cefd40b-c5bb-5989-b9b0-c2843f401958\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - State Council Polygon 2005", "abstract": "State wide data showing Upper House boundaries and names. These are the Legislative Council Electoral Boundaries referred to as the Upper House Boundaries .\nElectoral Boundaries are defined under the requirements of the Electoral Boundaries Commission Act 1982.\nSTATE_COUNCIL_2005 boundaries may contain overlaps and slivers due to maintenance regime. It is the intention that these will be removed over the next 12 months.\n\nSUPERSESED dataset by VMADMIN_STATE_COUNCIL_2013.", "anzlicid": "ANZVI0803003063", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "56dd2ce4db915b82994abb400865a3029d9b6794", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "11cdc5f0-53bd-52bb-af7c-504e2fa2eb8c", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Remote Sensing Reliability Table", "alttitle": "RS_FEATURE_RELIABILITY", "tempextentbegin": "2023-01-24T00:02:36+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:36+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33712\", \"uuid\": \"11cdc5f0-53bd-52bb-af7c-504e2fa2eb8c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Remote Sensing Reliability Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products. VMREFTAB_REFERENCE_TABLE a defintitve list of Reference Tables belonging to Vicmap Reftab.", "anzlicid": "ANZVI0803003157", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "3792d62242f2af6008ae9f92a528df4ff9318a0d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9758b6cc-9d46-59d2-a7e8-9dbcdb00027e", "publicationdate": "2022-12-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-09-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo, MapInfo", "type": "dataset", "title": "Restricted and Unavailable Crown Land for Petroleum Operations", "alttitle": "PLM25_PA", "tempextentbegin": "2011-08-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2011-08-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;boundaries;economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35754\", \"uuid\": \"9758b6cc-9d46-59d2-a7e8-9dbcdb00027e\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-19\", \"changeDate\": \"2013-09-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Restricted and Unavailable Crown Land for Petroleum Operations", "abstract": "Land where special permission must be obtained for Petroleum Opertaions\n\nThis layer was developed for land classification for the \nPetroleum Act 1998\n\nThis layer is derived mostly from selections from Public Land Management PLM25. Other sources of data include PLM100_V_MMT_WILDLIFE_MGMT for wildlife reserves, PLM100_V_MMT_HERITAGE_RIVER for heritage rivers, PLM100_V_MMT_NATRL_CATCHMENT for natural catchemnt area , PLM100_V_MMT_REFERENCE_AREAS for reference areas, PLM100_V_MMT_WILDERNESS_ZONE for wilderness zones and VEACREC25_POLYGON for water authority land.\n\nThe dataset PLM25_PA is an amalgamation of features defined by:\nPetroleum Act 1998- SECT 137\nPetroleum Act 1998- SECT 139\nPetroleum Act 1998- SECT 140 and \nNational Parks Act 1975 SECT 40 Part (2)\n\nThe GeoVic3 layers:\nWilderness and Reference (PA s.137)\nRestricted Crown Land (PA s.139)\nWater Authority Land (PA s.140) and\nNational and State Parks (NPA s. 40(2))\n\nare subsets from the layer PLM25_PA\n\nPLM25_PA has captured the following features:\nregional parks\ncoastal parks, including Gippsland Lakes Reserve\nmarine parks\nwildlife reserves including Wildlife Management Co-operative Areas\nwildlife reserves including Wildlife Management Co-operative Areas\nnatural features and scenic reserves including caves and geological reserves\nbushland reserves\nhistoric areas and reserves\npublic land water frontage reserves\nstreamside reserves including River Murray Reserve\ncoastal reserves\nnational heritage parks\nnature conservation reserves\nhistoric and cultural features reserves\nalpine resorts\nheritage rivers\nnatural catchment areas\ncrown land reserves - natural feature reserves\ncrown land reserves - nature conservation reserves\ncrown land reserves - forest parks\nreference areas\nnational parks\nwilderness areas\nstate parks\nwilderness zones\nwater authority land", "anzlicid": "ANZVI0803004566", "geonet_info_createdate": "2013-09-19", "revisiondate": "2013-09-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6bd9d4ee6fb4f0eb81eb005cb9081d2b10c6baff", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "243306da-ecf3-5761-a9b9-0b404baeb0ce", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-03-03", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Features - Geomark Line", "alttitle": "GEOMARK_LINE", "tempextentbegin": "2014-08-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:44+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;inland waters;location;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35777\", \"uuid\": \"243306da-ecf3-5761-a9b9-0b404baeb0ce\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-03-03\", \"changeDate\": \"2016-03-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Features - Geomark Line", "abstract": "Linear location of named or 'could be' named Victorian topographic features. Inclusions are rivers, water bodies, transport (excluding roads), geographic features and most of the Vicmap Features of Interest linear content. These features all reside within the Vicmap Framework Products. \nFeatures are combined to create one piece of geometry based on name and type. \nLinear features include transmission lines, chairlifts and pipelines", "anzlicid": "ANZVI0803005316", "geonet_info_createdate": "2016-03-03", "revisiondate": "2016-03-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "96b401702f9f6cf50992c9e7b0314eea29984b1b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "c583273a-67f3-5778-a171-ab7878fd9466", "publicationdate": "2020-11-03", "publishedforgroup": "12264;0", "geonet_info_changedate": "2022-08-15", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Fire Management Zones 2017", "alttitle": "FIREFMZ_2017", "tempextentbegin": "2010-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:45+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "obsolete", "topiccat": "environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41932\", \"uuid\": \"c583273a-67f3-5778-a171-ab7878fd9466\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-10-22\", \"changeDate\": \"2022-08-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Obsolete", "mdclassification": "limitedDistribution", "defaulttitle": "Fire Management Zones 2017", "abstract": "This dataset is OBSOLETE and has been replaced by FIREFMZ (approved Oct 2020)\nThis layer represents polygon coverage of fire management zones across all the State, generally on Public Land. The Fire Management Zone is an area of land which provides a framework for future Fire Operation Plans and whether fire is suitable for managing public land to provide asset protection, bushfire moderation, landscape management or planned burn exclusion.\n\nDataset last updated 20 April 2017 with changes from WCBRL (per A Boak).\nDataset updated 30 Jan 2017 with changes from ECBRL (per F Wilson).\nDataset updated 19 August 2016 with changes from MMGBRL (per D Prior).", "anzlicid": "ANZVI0803008697", "geonet_info_createdate": "2020-10-22", "revisiondate": "2022-08-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a389b90144c7eb29de7725a8134d66c96bf3d063", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "4b9d8b66-a17f-5765-a24f-b581cbba33b4", "publicationdate": "2019-03-22", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-11-19", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Licensed groundwater bores", "alttitle": "LICENSED_BORES", "tempextentbegin": "1970-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2017-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33741\", \"uuid\": \"4b9d8b66-a17f-5765-a24f-b581cbba33b4\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2019-11-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Licensed groundwater bores", "abstract": "The Water Act, 1989, requires that anoyone wishing to extract groundwater must apply for a groundwater licence. Groundwater licences are issued to protect the rights of licence holders, ensure that water is shared amongst users and to ensure that environmental requirements are protected.\n\nThis dataset is derived from the Victorian Water Register.", "anzlicid": "ANZVI0803005941", "geonet_info_createdate": "2019-11-19", "revisiondate": "2019-11-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f95f530dcc8a207ff7e6f067a9c69d30a1351a57", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6871cdb0-2525-5ccc-b3e4-d6721eebd550", "publicationdate": "2022-09-12", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-04-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Hunting Area Dataset Permitted Duck Hunting", "alttitle": "HUNT25_DUCK", "tempextentbegin": "2018-06-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:46+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33743\", \"uuid\": \"6871cdb0-2525-5ccc-b3e4-d6721eebd550\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-06\", \"changeDate\": \"2022-04-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Hunting Area Dataset Permitted Duck Hunting", "abstract": "This hunting area dataset depicting areas where Duck hunting is permitted, have boundaries largely derived from the PLM25 dataset which are supplemented with additional boundaries based on legislative restrictions on hunting. Dataset identifies the conditions under which hunting of given Game and Pest animal groups and species is permitted.\nThe rules used to produce this produce were developed by the legislation unit with the Land Management Division of the Department of Environment , Land, Water and Planning in consultation with the Game Management Authority, VicPolice, Parks Victoria and other relevant government authorities. These rules are based on requirements in the Forest Act, National Park Act, Crown land (Reserve) Act, Land Act, Wildlife Act.\nNote : Hunters are personally responsible for acting in accordance with the Firearms Act 1996\n(including informing themselves about any prohibited locations within the areas shown on this map)\nand other relevant laws; obtaining the required hunting licence; and for hunting only within season.\nMore information can be obtained from the Game Management Authority's web site.\n\nVicmap Basemap Services | State Government of Victoria | @DELWP", "anzlicid": "ANZVI0803005883", "geonet_info_createdate": "2019-11-06", "revisiondate": "2022-04-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "183bced947343e62422b90d060c3d4b41bae09e6", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5f653af2-980d-5135-926b-529b624d954e", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-11-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Groundwater Management Area Zones", "alttitle": "GMA_ZONE", "tempextentbegin": "2004-09-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35808\", \"uuid\": \"5f653af2-980d-5135-926b-529b624d954e\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2019-11-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Groundwater Management Area Zones", "abstract": "This layer is used in association with the GMA layer and represents the internal zone boundaries within each GMA (if applicable).", "anzlicid": "ANZVI0803002945", "geonet_info_createdate": "2019-11-19", "revisiondate": "2019-11-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "10eeeef7da91051c135b7553af10f9f46ce63692", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "84ee5909-6d46-5f35-823e-e15b81a56eee", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Road Restrictions Table", "alttitle": "TR_ROAD_RESTRICTIONS", "tempextentbegin": "2023-01-24T00:02:53+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:53+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33768\", \"uuid\": \"84ee5909-6d46-5f35-823e-e15b81a56eee\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Road Restrictions Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003173", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "52fb37506d45be6a3271f3896336ef511f274362", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "b1bb7afc-5ea6-59f1-b780-c20134f1254c", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-02", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "SDE, CGDL", "type": "dataset", "title": "Dryland salinity discharge layer (point and line coverage)", "alttitle": "SOILSAL25_ARC", "tempextentbegin": "1974-12-31T13:00:00+00:00", "resowner": "Department of Primary Industries", "tempextentend": "2004-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Monthly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "farming;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33772\", \"uuid\": \"b1bb7afc-5ea6-59f1-b780-c20134f1254c\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-06-20\", \"changeDate\": \"2022-08-02\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Dryland salinity discharge layer (point and line coverage)", "abstract": "This layer represents a statewide coverage of dryland salinity discharge sites that are either linear or only identified by point locations. Each site has been allocated a dryland salinity rating which indicates the severity of salinity for that site. It is additional to and supplements the SOILSAL25_A layer. The linear discharge sites are often associated with streams.", "anzlicid": "ANZVI0803002206", "geonet_info_createdate": "2014-06-20", "revisiondate": "2022-08-02", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0f9a39ec677b4e4280201e73058f62f8a092c602", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "0d63e274-6074-5ed9-b9ad-17a27d69f99c", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-16", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Simplified Vicmap Transport Road Network", "alttitle": "VM_ROADSIMPLE", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:56+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33778\", \"uuid\": \"0d63e274-6074-5ed9-b9ad-17a27d69f99c\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-03-31\", \"changeDate\": \"2021-08-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Simplified Vicmap Transport Road Network", "abstract": "This is a simplified layer derived from the Vicmap Transport layer - TR_ROAD. The simplification process primarily involves expanding coded attributes and then unsplitting all arcs that have identical attributes. All arcs of the original dataset are retained.\n\nIt is currently situated within the PROVISIONAL schema on Departmental SDE servers.\nRefer to metadata of TR_ROAD for more information.", "anzlicid": "ANZVI0803003100", "geonet_info_createdate": "2016-03-31", "revisiondate": "2021-08-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9ad9779b0fca1b2e2262e4c956a7fdd6e4402973", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "eafba877-3e6c-5e9b-97eb-1f03fb5ed9b8", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Feature Vicmap to Vicnames Feature Type Mapping Table", "alttitle": "FEATURE_VICMAP2VICNAMES", "tempextentbegin": "2023-01-24T00:02:47+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:47+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35787\", \"uuid\": \"eafba877-3e6c-5e9b-97eb-1f03fb5ed9b8\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Feature Vicmap to Vicnames Feature Type Mapping Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003225", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "073448d289f0979f0d5fd0f5f783903e4aa48fa3", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "83768375-c3b9-555b-b98a-4ee9e428322f", "publicationdate": "2018-10-26", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-11-19", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Upper aquifers hydrograph suites", "alttitle": "SUITES_UPPER_GW", "tempextentbegin": "2012-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2017-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33750\", \"uuid\": \"83768375-c3b9-555b-b98a-4ee9e428322f\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2019-11-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Upper aquifers hydrograph suites", "abstract": "Hydrographs from over 2000 state observation bores were reviewed in order to group bores which have a similar water level trend and are screened in the same aquifer. The groupings of observation bores are referred to as 'suites' and are classified according to the Upper, Middle, Lower and Basement aquifers aligning with the Victorian Aquifer Framework. \n\nBy applying a statistical technical, a normalised hydrograph was developed for each suite using the observed water levels from all bores within the suite. This hydrograph is representative of the groundwater trend within the suite.\n\nA spatial boundary has been created for each suite which encompasses all bores within the suite. The boundaries were manually constructed and cover the extent of the mapped aquifers.", "anzlicid": "ANZVI0803005933", "geonet_info_createdate": "2019-11-19", "revisiondate": "2019-11-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "402a5f1fc6fa5ee6f959d8f32e2fb8582d3f0b43", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "24dfb09b-201b-5656-9e44-4c2f6d55ab98", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2018-03-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Sub-surface Geology - Polygons (1:100,000)", "alttitle": "SGEOL1100_POLYGON", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35796\", \"uuid\": \"24dfb09b-201b-5656-9e44-4c2f6d55ab98\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-29\", \"changeDate\": \"2018-03-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Sub-surface Geology - Polygons (1:100,000)", "abstract": "The data contains sub-surface geological rock units. Multiple datasets may exist over some tiles, numbered as SGEOLn.\n\nThe data have been collected by the Geological Survey of Victoria. The dataset is accompanied by other datasets representing geology outcrop and boundaries, structural lines, miscellaneous lines and points, miscellaneous polygons, metamorphism, and placer deposits.", "anzlicid": "ANZVI0803005580", "geonet_info_createdate": "2018-03-29", "revisiondate": "2018-03-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2e88e47a6ec17173fb2f103aa46e80c4b994d97a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9e7590d4-ec98-5aa4-a251-2d957d3da0c7", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Features - Building Point", "alttitle": "BUILDING_POINT", "tempextentbegin": "2013-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:50+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;location;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35797\", \"uuid\": \"9e7590d4-ec98-5aa4-a251-2d957d3da0c7\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Features - Building Point", "abstract": "Part of the Vicmap Features of Interest Product\nPoint/centroid location of undefined buildings across Victoria that are NOT contained within the following polygon datasets VMFEAT_BUILDING_POLYGON, VMFEAT_PL_PLACE_AREA_POLYGON and where they are not repesented as a feature within the VMFEAT_FOI datasets", "anzlicid": "ANZVI0803004976", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8ffded6353036a17287566218adff8b0872ee761", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ce7ba3a2-7f55-5014-b20a-986890daa069", "publicationdate": "2022-10-22", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Crown Land Tenure - Crown Land Management Tenure Line", "alttitle": "CL_CAD_LINE", "tempextentbegin": "1990-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:03+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33798\", \"uuid\": \"ce7ba3a2-7f55-5014-b20a-986890daa069\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Crown Land Tenure - Crown Land Management Tenure Line", "abstract": "Part of the Vicmap Crown Land Tenure dataset series. This is a statewide dataset that plays a key role in the management of Victoria's Crown land. It has been created (June 2003 - Feb 2004) from migrating LCMP layers into the Vicmap structure.", "anzlicid": "ANZVI0803004570", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5fccdea0e03a5db5a4eb3cba089cac4c48845484", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "353a3185-e77d-5947-9b3a-34d74ceba4d6", "publicationdate": "2019-03-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "VAF_EXTENT_111LTA", "alttitle": "VAF_EXTENT_111LTA", "tempextentbegin": "2012-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2013-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33808\", \"uuid\": \"353a3185-e77d-5947-9b3a-34d74ceba4d6\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "VAF_EXTENT_111LTA", "abstract": "This dataset relates to the Victorian Aquifer Framework (VAF) 3D Surface for the Lower Tertiary Aquifer. It represents the mapped extent of the aquifer.\n\nPlease refer to the master metadata record VAF 'Victorian Aquifer Framework (VAF) 3D Surfaces' for detailed information.", "anzlicid": "ANZVI0803008456", "geonet_info_createdate": "2019-11-19", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a1c790907cb159ea2e05b71dd9b43176a310b451", "fields": {"available_formats": "ECW,GeoTIFF,JPEG,JPEG 2000,TIFF", "resclassification": "unclassified", "uuid": "9ac87cd1-db93-5bac-8a22-b141d0c2991e", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL geotiff", "type": "dataset", "title": "Soil Grids of Victorian - Soil pH (water)", "alttitle": "SOIL_pHw", "tempextentbegin": "1957-12-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2016-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33822\", \"uuid\": \"9ac87cd1-db93-5bac-8a22-b141d0c2991e\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-14\", \"changeDate\": \"2021-07-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Soil Grids of Victorian - Soil pH (water)", "abstract": "A set of Digital Soil Maps (mean, 5th and 95th percentile prediction values) of soil pH (of a 1:5 soil water solution) across Victoria in geotiff format. \n\nGrids of key soil properties have been produced for Victoria. These grids, in raster format, provide prediction and confidence interval values for key soil properties at a 90 m grid resolution for six set depths; 0 to 5 cm, 5 to 15 cm, 15 to 30 cm, 30 to 60 cm, 60 to 100 cm and 100 to 200 cm, across Victoria.\n\nThe grids have been designed to meet the specifications created by GlobalSoilMap (www.globalsoilmap.net) to develop and deliver detailed soil information in a consistent form.\n\nThe grids are a spatial interpolation of key soil properties to support modelling and decision making in resource management, agricultural production, land use policy and planning, and in further research such as ecosystem modelling.\n\nThe methodology used to develop the Soil Grids of Victoria has been based on that refined by the Australian Soil and Landscape Grid. Data and knowledge embedded into existing soil related datasets, e.g. soil profile and land mapping collections, have been key inputs. \n\nWhilst the new maps show an immense amount of fine scale detail, and are our best spatially continuous and exhaustive estimates of soil attributes across all of Victoria, they are most appropriately used for assessments of regional to state-wide trends of soil properties and their relationship with their environment and pedogenesis. Care should be taken when using the grids for local assessments and it is recommended that the confidence intervals are included at this scale.", "anzlicid": "ANZVI0803005794", "geonet_info_createdate": "2019-05-14", "revisiondate": "2021-07-14", "spatialrepresentationtype_text": "Grid"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a0c1338c523c1321b81b021f7997aebf910c7e86", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "86b67bc9-f0bb-533e-a4ec-919c03087fb6", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, MapInfo, Non digital - plotted maps", "type": "dataset", "title": "Geological zones of contact metamorphism interpreted from geophysical interpretation (1:250,000) Arc", "alttitle": "GPCONMETA250_ARC", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33825\", \"uuid\": \"86b67bc9-f0bb-533e-a4ec-919c03087fb6\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-29\", \"changeDate\": \"2022-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological zones of contact metamorphism interpreted from geophysical interpretation (1:250,000) Arc", "abstract": "This dataset displays areas of contact and regional metamorphism, and the style of metamorphism, mapped using using combined interpretations of airborne magnetic, radiometric and gravity survey data at 1:250,000.\n\nAt scales larger than 1:120,000 the display is a combination of both 1:100,000 and 1:250,000 geophysical mapping. Recent 1:250,000 geophysical mapping has been of such quality and detail it has been used to supersede older coincident 1:100,000 mapping. This occurs in the following areas: St Arnaud 7524, Dunolly 7624, Charlton 7525, Wedderburn 7625 and part of Ararat 7423 are superseded by St Arnaud SJ54-4. Bendigo 7724, Heathcote 7824 and Nagambie 7924 are superseded by Bendigo SJ55-1. \n\nBalmoral 7223, Ararat 7423, Horsham SJ54-3 and St Arnaud SJ54-4 supersede Grampians 7323 where there is overlap.\n\nThe Ouyen SI54-15 and Horsham SJ54-3 map areas are datasets derived from a combination of Geological Interpretation of Basement Geophysical Features maps and Geological Interpretation of Post-Cratonic Geophysical Features maps performed by Moore, D. H.\n\nThis data has been collected by the Geological Survey of Victoria. This dataset is accompanied by other datasets representing geological polygons and boundaries, sub-surface geological polygons, structural lines and miscellaneous lines.", "anzlicid": "ANZVI0803003419", "geonet_info_createdate": "2018-03-29", "revisiondate": "2022-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9dc7e93f488f05c20904843444b7360c15fe87cf", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "3269ab1b-2027-5c97-9048-2bb83341d898", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2012-09-26", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "DPI Wood Utilisation Plan (WUP) and DSE District Action Plan (DAP)", "alttitle": "WUP_CURRENT_FINAL_2012", "tempextentbegin": "2012-06-30T14:00:00+00:00", "resowner": "Department of Primary Industries", "tempextentend": "2023-01-24T00:03:15+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;planned", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33830\", \"uuid\": \"3269ab1b-2027-5c97-9048-2bb83341d898\", \"schema\": \"iso19115-3\", \"createDate\": \"2012-09-26\", \"changeDate\": \"2012-09-26\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "limitedDistribution", "defaulttitle": "DPI Wood Utilisation Plan (WUP) and DSE District Action Plan (DAP)", "abstract": "Wood Utilisation Plan for years 2012/13 to 2013/14 (and 2014/15 in some areas)\n\nWUPs incorporate all commercial timber harvesting activities, domestic firewood and minor produce operations where tree felling is required, associated access roading, and significant stand management operations (including thinning, reforestation and treatment of unmerchantable trees) managed or undertaken by DPI and DSE.\n\nDAPs incorporate forest operations that are classified as Level 1 or Level 2 in accordance with the District Action Planning Guidelines. \n\nWUPs and DAPs may incorporate other operations which involve vegetation disturbance and soil removal as determined by the Level 1 Manager.", "anzlicid": "ANZVI0803004739", "geonet_info_createdate": "2012-09-26", "revisiondate": "2012-09-26", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bf53d3096c1064f072f1fb228e5d81dbb0be873f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "b88701ed-3ad0-5538-90d7-08e7f3e4150d", "publicationdate": "2019-08-24", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Vicmap Topographic 1:30,000 MGA A3 Map Index", "alttitle": "VICMAP_MAPINDEX_30DA3", "tempextentbegin": "2004-08-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2004-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35882\", \"uuid\": \"b88701ed-3ad0-5538-90d7-08e7f3e4150d\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-01-24\", \"changeDate\": \"2022-07-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Vicmap Topographic 1:30,000 MGA A3 Map Index", "abstract": "1:30 000 format Mapgrid of Australia Mapsheet Boundaries as used for the A3 online topographic maps.", "anzlicid": "ANZVI0803004577", "geonet_info_createdate": "2017-01-24", "revisiondate": "2022-07-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4389470caa3eb73d313ff8832b9b91e074660edf", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "eefd7226-4ad5-5fa8-bdb4-0383e90afc6f", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-21", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Depth Zone Polygons at 1:250,000", "alttitle": "DEPTH250_ARC", "tempextentbegin": "1995-01-31T13:00:00+00:00", "resowner": "Department of Primary Industries", "tempextentend": "1995-03-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "obsolete", "topiccat": "farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33832\", \"uuid\": \"eefd7226-4ad5-5fa8-bdb4-0383e90afc6f\", \"schema\": \"iso19115-3\", \"createDate\": \"2010-08-26\", \"changeDate\": \"2022-07-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Obsolete", "mdclassification": "limitedDistribution", "defaulttitle": "Depth Zone Polygons at 1:250,000", "abstract": "This layer contains polygon features which represent subtidal relief. Isobaths are linear features which are lines of equal depth that form the boundaries of the polygons.\nThis layer has been replaced by BATHYMETRY_BASS_STRAIT_POLY & BATHYMETRY_BASS_STRAIT_ARC", "anzlicid": "ANZVI0803002015", "geonet_info_createdate": "2010-08-26", "revisiondate": "2022-07-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "eb9505f24884bb3fd4df5acd7c6319bf93c6eab3", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "879872cd-f18d-5ada-9ebd-1e09ffc8c5af", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-01-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Transport - Road Infrastructure and Paper Road Infrastructure Point", "alttitle": "TR_ROAD_INFRASTRUCTURE_ALL", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:59+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33787\", \"uuid\": \"879872cd-f18d-5ada-9ebd-1e09ffc8c5af\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2022-01-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Transport - Road Infrastructure and Paper Road Infrastructure Point", "abstract": "This layer is a superset of the Vicmap Transport TR_ROAD_INFRASTRUCTURE dataset.\n\nTR_ROAD_INFRASTRUCTURE delineates road infrastructure features including bridges, tunnels, gates, cattle grids, barrirers, level crossings, roundabouts and intersections. In addition, this dataset includes paper road nodes (feature_type_code = 'paper_node').\n\nPaper roads exist only on paper, such as a plan of subdivision, and are unlikely to be ever built due to planning restrictions. However, some councils hold addresses and property information against these paper roads.\n\nPaper nodes have been created to conform with the Vicmap Transport business rules and are of no interest to almost all customers.\n\nMost users needs will be met by the TR_ROAD_INFRASTRUCTURE dataset.", "anzlicid": "ANZVI0803004909", "geonet_info_createdate": "2019-09-04", "revisiondate": "2022-01-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f3aa6006117534d00588221c7c376aac49f607e7", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9fef15cb-1254-5de7-b83a-685c83fc5704", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2011-07-22", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "Sensitive ridgelines within the East Gippsland Forest Management Area", "alttitle": "EG_SENSITIVE_RIDGELINES", "tempextentbegin": "2006-01-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2006-01-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35830\", \"uuid\": \"9fef15cb-1254-5de7-b83a-685c83fc5704\", \"schema\": \"iso19115-3\", \"createDate\": \"2011-07-22\", \"changeDate\": \"2011-07-22\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "limitedDistribution", "defaulttitle": "Sensitive ridgelines within the East Gippsland Forest Management Area", "abstract": "This layer shows the location of sensitive ridgelines in the East Gippsland FMA and restrictions placed on timber harvesting.\n\nThis layer should be used in conjunction with two other layers EG_SCENIC_DRIVE_NETWORK and EG_SENSITIVE_VIEW_AREAS.\n\nThe East Gippsland Forest Management Plan acknowledges that while timber harvesting is the mainstay of the local economy, harvested areas should not dominate visitor's experience and their impressions of the forest. One component of landscape protection outlined in the Plan is the importance of coupe design to ensure notches on the skyline are not apparent. Map 22 of the Proposed East Gippsland Forest Management Plan clearly shows the location of sensitive ridgelines in the East Gippsland FMA. An Arcview layer was created showing the location of sensitive ridgelines in East Gippsland as shown on map 22. In 2006 the Landscape Management Guidelines EGFMA were developed which involved the review (verification of linework from map 22) of this layer and the consolidation of related prescriptions applying to timber harvesting.", "anzlicid": "ANZVI0803004455", "geonet_info_createdate": "2011-07-22", "revisiondate": "2011-07-22", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ca4cdcbb316d3f0382114101e1ac838848891327", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "178f127a-a0fd-593c-9ccb-6756a83c68fb", "publicationdate": "2018-02-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "product", "title": "Victoria Flood Database", "alttitle": "VICTORIA FLOOD DATABASE", "tempextentbegin": "2008-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;inland waters;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35836\", \"uuid\": \"178f127a-a0fd-593c-9ccb-6756a83c68fb\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-08-20\", \"changeDate\": \"2022-10-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victoria Flood Database", "abstract": "This package of data contains flood extent, contour and spot height features derived from various flood studies, reports, plans and imagery until 2014. It includes both modelled and observed data. It comprises 3 main data groups, containing a total of 26 seperate layers, with data groups as follows:\nModelled Flood Extents: Extent_{n}y_ARI, where n = 5,10,20,30,50,100,200,500,1000 year intervals\nModelled Flood Contours: Contour_{n}y_ARI, where n = 5,10,20,50,100,200 year intervals\nOther flood datasets: Floodway, Historic_extents, Historic_height_pt, Historic_contours, Flow_direction, Flood_structure, Levee, Levee_spotheight, Running_distance.", "anzlicid": "ANZVI0803004341", "geonet_info_createdate": "2019-08-20", "revisiondate": "2022-10-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c08d19ade318c0dd20b0501e8490d65f4dddd213", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d8f69bbc-18b6-53b2-bd8d-558c1c93bed2", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Infrastructure Dump Utility Function Table", "alttitle": "IN_DUMP_UTILITY_FUNCTION", "tempextentbegin": "2023-01-24T00:03:01+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:01+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35837\", \"uuid\": \"d8f69bbc-18b6-53b2-bd8d-558c1c93bed2\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Infrastructure Dump Utility Function Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003201", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2245a20aa0d10a99f16651b87d30537dcd5d681c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "794f9523-0b20-5f66-8c11-5bff9af000b2", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "WESTERN PORT 1% AEP 0.2M SLR INUNDATION", "alttitle": "WP_1AEP_20CMSLR_EXTENT", "tempextentbegin": "2013-01-27T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2015-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;geoscientific information;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35888\", \"uuid\": \"794f9523-0b20-5f66-8c11-5bff9af000b2\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-05-04\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "WESTERN PORT 1% AEP 0.2M SLR INUNDATION", "abstract": "The Western Port Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Western Port coastal environment. Information has been collected on inundation hazards (storm surge and catchment inflows) using modelling for different sea level rise scenarios. \nThis data represents the extent of storm tide inundation for the 1% Average Exceedance Probability (AEP) storm tide with the +0.2 m sea level rise scenario. (based on hydrodynamic modelling).\n\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.", "anzlicid": "ANZVI0803005418", "geonet_info_createdate": "2016-05-04", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "095ab01d47097cd49438c59fe8386ff3e45cf8b2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "de36886c-0e1c-5e58-8071-fc304aa6837c", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-01", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Native Vegetation - Flora and Fauna Guarantee Act Listed Communities", "alttitle": "NV2005_FFG_COMM", "tempextentbegin": "2012-09-16T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2012-09-16T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35890\", \"uuid\": \"de36886c-0e1c-5e58-8071-fc304aa6837c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-11\", \"changeDate\": \"2022-09-01\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Native Vegetation - Flora and Fauna Guarantee Act Listed Communities", "abstract": "This is a derived dataset displaying the distribution of threatened vegetation communities listed under the Flora and Fauna Guarantee Act (1988). Communities have been matched to one of more Ecological Vegetation Classes (EVCs), and the bioregions in which they occur. Community locations and extent are implied from the extent of the most floristically similar EVCs, and the bioregions in which the EVCs occur. The \"distribution\" field indicates the range of the listed community within a BioEVC, and the extent to which the range of a community might extend beyond BioEVC boundaries.\n\nThis dataset is currently under review to include additional listed communities", "anzlicid": "ANZVI0803004740", "geonet_info_createdate": "2019-11-11", "revisiondate": "2022-09-01", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d2f531671f00a9cfd73b292c0561ecd7fb4917ea", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f50ccc3d-621c-5415-956d-3da572e6dbd5", "publicationdate": "2022-04-12", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Toe of Bank line features", "alttitle": "ISC2010_TOE_OF_BANK", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35894\", \"uuid\": \"f50ccc3d-621c-5415-956d-3da572e6dbd5\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Toe of Bank line features", "abstract": "The ISC2010_TOE_OF_BANK line features represent the left and right stream bed lines of the river channel for each River Reach.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005113", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c475fe4596f5e1588a35bd01148deccd58725150", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "61f633ae-c18c-5967-a546-84ceb44273f6", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Transport - Road Line", "alttitle": "TR_ROAD", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:20+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35897\", \"uuid\": \"61f633ae-c18c-5967-a546-84ceb44273f6\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-21\", \"changeDate\": \"2022-07-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Transport - Road Line", "abstract": "This layer is part of Vicmap Transport and is and extensive digital road network - line features delineating state wide road network.\nIncludes; Bridges, Connectors, Footbridge, Ferry Route, Foot Tracks, Roads, Highways, Roundabouts & Tunnels.\n\nAttribution for names, alias, class, direction, locality, unique feature identification, suburb/locality. Includes alternate names.\n\nFormerly known as Road Network 1:25,000 (Full View) - Vicmap Transport (ROAD_VF)", "anzlicid": "ANZVI0803002595", "geonet_info_createdate": "2020-02-21", "revisiondate": "2022-07-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0948260408f80670e84368ba43b1bc5c15cd7214", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "be6926fd-6ac3-5081-8953-e623e0b16fd5", "publicationdate": "2022-11-11", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Victorian Biodiversity Atlas Restricted Records - 1 minute grid", "alttitle": "VBA_RESTRICTED_1M", "tempextentbegin": "2016-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:21+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35902\", \"uuid\": \"be6926fd-6ac3-5081-8953-e623e0b16fd5\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-07-22\", \"changeDate\": \"2021-08-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Biodiversity Atlas Restricted Records - 1 minute grid", "abstract": "This layer contains restricted taxa records from the Victorian Biodiversity Atlas (VBA). Record locations have been denatured to a 1 minute polygon grid to enable genaral data access. These records are held seperately from, and should be used in conjunction with VBA_FAUNA/FLORA25/100. VBA records are restricted when deemed by the Department to be vulnerable to collection, harvesting or disturbance. \n\nThe main attributes in this layer are taxon name, conservation status, count, and year of record. The VERS_DATE column identifies the currency of the data.\n\nThe FFG field has been updated to reflect the 2021 FFG Act amendments, and the Victorian Advisory List (VICADV) is now obsolete.", "anzlicid": "ANZVI0803005652", "geonet_info_createdate": "2016-07-22", "revisiondate": "2021-08-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6ed48b8b09e48707187ece53132ce56d7bc85261", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c95c7142-a03e-5fd3-9b15-5dfcd2b9ff33", "publicationdate": "2023-01-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2023-01-11", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Victorian Heritage Register", "alttitle": "HERITAGE_REGISTER", "tempextentbegin": "2008-01-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:08+00:00", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35856\", \"uuid\": \"c95c7142-a03e-5fd3-9b15-5dfcd2b9ff33\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-10-18\", \"changeDate\": \"2023-01-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Heritage Register", "abstract": "The Victorian Heritage Register lists the State's most significant heritage places and objects protected under the Heritage Act 1995.", "anzlicid": "ANZVI0803004621", "geonet_info_createdate": "2016-10-18", "revisiondate": "2023-01-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bea509b79410b55cfb5b2bf30ce0df3f007fd58d", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8eee2431-b13a-5a4a-a14e-12dd670eb70d", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Bridge Construction Type Table", "alttitle": "TR_BRIDGE_CONSTRUCTION_TYPE", "tempextentbegin": "2023-01-24T00:03:08+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:08+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35857\", \"uuid\": \"8eee2431-b13a-5a4a-a14e-12dd670eb70d\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Bridge Construction Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003163", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e602b0b1779835a765928bcc69c7925b185510da", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "13c53605-ee2a-50b5-b24b-b00087e7de71", "publicationdate": "2020-11-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-21", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "LGA boundaries Victoria 1991 Historic", "alttitle": "VIC_LGA_1991", "tempextentbegin": "1991-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "1991-05-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42004\", \"uuid\": \"13c53605-ee2a-50b5-b24b-b00087e7de71\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-04\", \"changeDate\": \"2022-10-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "LGA boundaries Victoria 1991 Historic", "abstract": "This dataset contains polygon features representing historic Local Government Area boudaries prior to LGA amalgamations in 1992.", "anzlicid": "ANZVI0803008704", "geonet_info_createdate": "2020-11-04", "revisiondate": "2022-10-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "772afe15774988baed87cc60901ba4f565c193b6", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9453b736-9b2f-5cee-a05b-74b70f3e5f5a", "publicationdate": "2020-11-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-11-04", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Regional Population Growth, Victoria", "alttitle": "ABS_POPULATION_LGA_2019", "tempextentbegin": "2018-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-05-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42005\", \"uuid\": \"9453b736-9b2f-5cee-a05b-74b70f3e5f5a\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-04\", \"changeDate\": \"2020-11-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Regional Population Growth, Victoria", "abstract": "This dataset contains polygon features representing statistical areas with associated popualtion data from ABS 3218.0 Regional Population Growth report as at June 2019.\n\nLocal Government Areas attributes;\nLGA Name Colac-Otway (S)\nLGA Code LGA21750\nPopulation June 2018 21502\nPopulation June 2019 21564\nDensity Population per Km2 6.3\nYear Population Change 62\nYear Percent Change 0.3\nNatural Increase 37\nNet Interstate Migration -61\nNet Overseas Migration 86\nArea Km2 3437.5", "anzlicid": "ANZVI0803008703", "geonet_info_createdate": "2020-11-04", "revisiondate": "2020-11-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8cf9d1056a907b4291bb11c434ca43f04e0c01c2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "4de9770e-af29-5c0d-94f8-143f42742438", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Limited Distribution", "format": "ESRI Shapefile", "type": "dataset", "title": "Withdrawn Applications for Exploration Licences", "alttitle": "ELAP", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:03:10+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33815\", \"uuid\": \"4de9770e-af29-5c0d-94f8-143f42742438\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-19\", \"changeDate\": \"2022-09-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Withdrawn Applications for Exploration Licences", "abstract": "Withdrawn Applications for Exploration Licences", "anzlicid": "ANZVI0803002329", "geonet_info_createdate": "2013-09-19", "revisiondate": "2022-09-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "59027248f128d12c785d1486423535d27ab37dbc", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "1c5108cb-f3d5-58f4-a82e-62d361fb5c39", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:10,000 Edition 47", "alttitle": "MELWAY_PAGEGRID_10_ED47", "tempextentbegin": "2019-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2019-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35863\", \"uuid\": \"1c5108cb-f3d5-58f4-a82e-62d361fb5c39\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-10-04\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:10,000 Edition 47", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:10 000 inner urban maps.", "anzlicid": "ANZVI0803004597", "geonet_info_createdate": "2018-10-04", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c869a2d6eb8134ce52bf830664f363e4ecefd306", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5e869d7a-a149-5aa7-8f63-1d7a431fd1c1", "publicationdate": "2018-04-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2018-04-20", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital Shapefile", "type": "dataset", "title": "Murray Basin - Depth To Basement (1:1,000,000)", "alttitle": "DEPTH_TO_BASEMENT_MURRAY_BASIN", "tempextentbegin": "2013-03-22T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2013-03-22T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33817\", \"uuid\": \"5e869d7a-a149-5aa7-8f63-1d7a431fd1c1\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-04-20\", \"changeDate\": \"2018-04-20\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Murray Basin - Depth To Basement (1:1,000,000)", "abstract": "The polygons represent the depth from the surface to the Palaeozoic bedrock. The polygon data was constructed using the depth to basement contours at 50m interval generated from both drill hole data, and depth to magnetic source estimates. For detailed methodology refer to Gold Undercover report 21 - Depth to Palaeozoic basement of the Gold Undercover region using borehole and magnetic data.", "anzlicid": "ANZVI0803004871", "geonet_info_createdate": "2018-04-20", "revisiondate": "2018-04-20", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7a1c5e12a915249058e44805450e50cca0ed60ad", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f34f20b1-2e68-5309-b227-eb9ad3169441", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Structure1 100m Section Summary Table", "alttitle": "ISC2010_STRUCTURE1_S", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35867\", \"uuid\": \"f34f20b1-2e68-5309-b227-eb9ad3169441\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Structure1 100m Section Summary Table", "abstract": "The ISC2010_STRUCTURE1_S table is the Statistical Summary table for the Structure1 Metric at the 100m Section level. Structure 1 represents Vegetation Cover for two grouped height categories: Shrubs which are defined as vegetation in the height range 1.5m to 5m and Trees which are defined as vegetation with height greater than 5m.\n\nThe ISC2010_STRUCTURE1_S table is designed to JOIN to the ISC2010_RIVER_CENTRELINES_S feature class.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005137", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5bd81eda0124ad988f6654b1a8feac804c2d8279", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5567ec39-0580-52ed-bf16-bb7d2a3024cf", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available on request", "type": "dataset", "title": "Wingan Inlet Seagrass 1999", "alttitle": "SEAGRASS_WINGAN_INLET_1999", "tempextentbegin": "1998-05-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "1999-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33820\", \"uuid\": \"5567ec39-0580-52ed-bf16-bb7d2a3024cf\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-25\", \"changeDate\": \"2015-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Wingan Inlet Seagrass 1999", "abstract": "This layer contains polygons defining the spatial extent, species distribution and density of seagrass meadows within Wingan Inlet mapped from 1999 aerial photography and ground-truthing.", "anzlicid": "ANZVI0803004107", "geonet_info_createdate": "2015-11-25", "revisiondate": "2015-11-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "efd5043ee0a9d620e90ee83b77ed240c7a83b7bb", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "2e8a6daf-38b8-5562-ba14-3ae72a205216", "publicationdate": "2019-10-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-10-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "Feature Class", "type": "dataset", "title": "Wetland Monitoring and Assessment Program monitoring sites", "alttitle": "WETMAP_SITES", "tempextentbegin": "2016-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:42+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33902\", \"uuid\": \"2e8a6daf-38b8-5562-ba14-3ae72a205216\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-10-08\", \"changeDate\": \"2019-10-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "limitedDistribution", "defaulttitle": "Wetland Monitoring and Assessment Program monitoring sites", "abstract": "WetMAP is measuring the response of wetland vegetation and a range of fauna to natural water regimes that are supplemented by environmental water. Numerous aspects of wetland ecology are being monitored including vegetation, waterbirds, fish and frogs. This data set maps the location of WetMAP monitoring sites.", "anzlicid": "ANZVI0803008545", "geonet_info_createdate": "2019-10-08", "revisiondate": "2019-10-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e188675cafa20072f4cbd7046d1a7b3c830e587e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0468f496-1197-5d39-9ed2-351b27b6735f", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-10-12", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Simplified outline of Victoria and adjoining States", "alttitle": "MAPBASE_G200", "tempextentbegin": "2023-01-24T00:03:43+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:43+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33903\", \"uuid\": \"0468f496-1197-5d39-9ed2-351b27b6735f\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-07\", \"changeDate\": \"2021-10-12\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Simplified outline of Victoria and adjoining States", "abstract": "Simplified outline of Victoria (coastline, major islands, borders and Murray River) plus the coastline of the adjoining States (SA, NSW and Tasmania).", "anzlicid": "ANZVI0803002850", "geonet_info_createdate": "2017-03-07", "revisiondate": "2021-10-12", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9e77da51acb0181578718f3939e8f4f2850c5e8c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "668c567c-0539-54ae-81a5-46f13e015233", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available on request", "type": "dataset", "title": "Port Phillip Bay 1:25,000 Seagrass 2000", "alttitle": "SEAGRASS_PORT_PHILLIP_BAY_2000", "tempextentbegin": "2000-02-29T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2000-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35974\", \"uuid\": \"668c567c-0539-54ae-81a5-46f13e015233\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-25\", \"changeDate\": \"2015-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Port Phillip Bay 1:25,000 Seagrass 2000", "abstract": "This is a polygon layer defining the spatial extent, species distribution and density of seagrass and macroalgae within Port Phillip Bay mapped from aerial photography in 2000. The mapping was ground-truthed in the field.", "anzlicid": "ANZVI0803004034", "geonet_info_createdate": "2015-11-25", "revisiondate": "2015-11-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6760b18a31af7fbf64a702cf6e2234afc4a6b5e9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d44fdd10-1397-56cc-93f5-ed9aab7a410e", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL: Standard GIS Vector layers", "type": "dataset", "title": "Port Phillip Bay seagrass mapping at nine aerial assessment regions in April 2009", "alttitle": "SEAGRASS_PPB_9REGIONS_APRIL09", "tempextentbegin": "2009-04-11T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2009-05-21T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;farming;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35977\", \"uuid\": \"d44fdd10-1397-56cc-93f5-ed9aab7a410e\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-25\", \"changeDate\": \"2015-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Port Phillip Bay seagrass mapping at nine aerial assessment regions in April 2009", "abstract": "This polygon layer represents seagrass habitat at nine regions in Port Phillip Bay in April 2009 mapped from aerial photography. The mapping was undertaken for the Baywide Seagrass Monitoring Program (CDP_ENV_MD_022 Rev5 - Port of Melbourne Corporation, 2010). The program is being undertaken for the Port of Melbourne Corporation as part of Baywide Monitoring to support the Channel Deepening Project.", "anzlicid": "ANZVI0803004663", "geonet_info_createdate": "2015-11-25", "revisiondate": "2015-11-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "659e0bbfd42ddd54759f69e90599f27d11c706bd", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6f3867ee-2960-5062-8bd9-1ed994d6c9b8", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "product", "title": "Vicmap Crown Land Tenure", "alttitle": "VICMAP_CLTENURE", "tempextentbegin": "1990-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:45+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35981\", \"uuid\": \"6f3867ee-2960-5062-8bd9-1ed994d6c9b8\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2022-07-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Crown Land Tenure", "abstract": "Vicmap Crown Land Tenure is a statewide dataset series that plays a key role in the management of Victoria's Crown land. It was created (June 2003 - Feb 2004) from migrating LCMP layers into the Vicmap structure.\nThe layer provides information about the Private use of Crown land Parcels and Crown Roads. CL_TENURE_VIEW contains a number of Tenure types including:\n- (A) Agricultural including Unused Road licences, Water Frontage licences and Grazing licences,\n- (L) Lease including Commercial type leases,\n- (G) General Licences including miscellaneous community use licences, permits & consents\n- (P) Pipe including Water supply pipelines,\n- (RM) Reserve including land gazetted as a Reserve in Government Gazettes,\n- Tenure Identifiers, Tenure type identifiers and Tenure code identifiers.\nThe database is continually maintained, obtaining maintenance from authoritative sources within State Government.\n\nDatasets in the series are listed below. See their metadata entries for more detailed metadata.\nTenure boundaries and descriptors as per Crown Land Management - Vicmap Crown Land Tenure (CL_TENURE_VIEW);\nGovernment Roads as per Crown Land Management - Vicmap Crown Land Tenure (GOV_ROAD_POLYGON);", "anzlicid": "ANZVI0803002777", "geonet_info_createdate": "2019-09-04", "revisiondate": "2022-07-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "102c8f720ac599f2e8be36fa6953c0e20d685fb1", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "409893f9-19dd-5386-9084-4fb0100aa0d8", "publicationdate": "2019-01-03", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-01-04", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All ESRI supported formats available", "type": "dataset", "title": "DSE Roads database - Category", "alttitle": "RDB_CATEGORY", "tempextentbegin": "2005-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:24+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35909\", \"uuid\": \"409893f9-19dd-5386-9084-4fb0100aa0d8\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-01-04\", \"changeDate\": \"2017-01-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "DSE Roads database - Category", "abstract": "Category is a linear representation of roads on Public land defined by management category.\nThis layer is used to determine 'Public Access' roads as defined in the State Road Management Act.\nIt also defines non-public register roads and breaks them down into operational categories such as seasonal closures, maintenance vehicle only and unmaintained tracks.\n\nThe underlying linear data is derived from Vicmap Transport Roads. Categories are assigned through a relational database connection and the arcs grouped to simplify data geometry.\n\nDSE's ROADS database contains information relating to DSE-managed road assets.\nIt is envisaged that the database be accessible through GIMS asset management system.", "anzlicid": "ANZVI0803003388", "geonet_info_createdate": "2017-01-04", "revisiondate": "2017-01-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5649e3bfcb079e6747d6f309072a91c76d933dd5", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ec3d42c4-e7b3-5456-9320-61c2b5473a0b", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Property Multi Assessment Table", "alttitle": "PR_MULTI_ASSESSMENT", "tempextentbegin": "2023-01-24T00:03:24+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:24+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33861\", \"uuid\": \"ec3d42c4-e7b3-5456-9320-61c2b5473a0b\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Property Multi Assessment Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003148", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bf4a767d99a0c241f570c15e9c036890479c523e", "fields": {"available_formats": "ECW,GeoTIFF,JPEG,JPEG 2000,TIFF", "resclassification": "unclassified", "uuid": "2fd9d712-5407-51df-bc75-bb13d37499af", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-12", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI Grid and GeoTiff - COG (Cloud Optimized GeoTIFF)", "type": "dataset", "title": "Vicmap Elevation DEM 10m", "alttitle": "VICMAP_ELEV_DEM_10M", "tempextentbegin": "2008-06-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-04-26T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;environment;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33863\", \"uuid\": \"2fd9d712-5407-51df-bc75-bb13d37499af\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-07-14\", \"changeDate\": \"2022-09-12\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Elevation DEM 10m", "abstract": "Vicmap Elevation DEM 10m is a product which is a raster representation of Victoria's elevation. DEM 10m has a spatial resolution of 10 metres with respective horizontal and vertical accuracy of 12.5m and 5m or better. The DEM is constructed from source data of various resolutions, accuracies and ages to produce an improved DEM containing increased detail in localised areas. The DEMs are hydrologically enforced and correctly defines the natural surface drainage and hydrological flow. \nThis product has been quality assured by DELWP and additional third-party consultants.\n\nUpdate of the dataset Vicmap Elevation DTM 10m.", "anzlicid": "ANZVI0803003582", "geonet_info_createdate": "2020-07-14", "revisiondate": "2022-09-12", "spatialrepresentationtype_text": "Grid"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "72e8d46680237a6fd9b0d935917994f3c2f81f64", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f191d19a-eaf0-5642-9f93-2989db361095", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Exploration Graticules with 1 km intervals -- GDA94 - Effective 1st July 2005", "alttitle": "MG941KM", "tempextentbegin": "2005-02-28T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:03:25+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33864\", \"uuid\": \"f191d19a-eaf0-5642-9f93-2989db361095\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Exploration Graticules with 1 km intervals -- GDA94 - Effective 1st July 2005", "abstract": "Exploration Graticules are used as the main boundaries for Exploration Licences since 1973\n- GDA94 - Effective 1st July 2005", "anzlicid": "ANZVI0803002976", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "cf65563f0c4aa9b2ecf3c59e7f6d96715061b1d0", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9128adcc-f8fd-5295-bcac-cc45a7247e8b", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Property - Annotation Text", "alttitle": "ANNOTATION_TEXT", "tempextentbegin": "2023-01-24T00:03:27+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:27+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33870\", \"uuid\": \"9128adcc-f8fd-5295-bcac-cc45a7247e8b\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Property - Annotation Text", "abstract": "Annotation Text is a point layer belonging to Vicmap Property and consists of point data representing the location of Annotation and Text for Vicmap Property. The points have been attributed with the appropropriate text.\n\nThis layer should be used in conjuction with the other layers and aspatial tables that make up Vicmap Property.", "anzlicid": "ANZVI0803002902", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "07224a1fad9cc466447f2fbb4c6606bfa20e8d53", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d34f3607-62f4-52b1-8f34-5c2ad4f9ed6e", "publicationdate": "2023-01-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "product", "title": "Geological Sites - Earth Resources Spatial Data Collection for the Datamart.", "alttitle": "DM_MIN_GEOLOGICAL_SITES", "tempextentbegin": "1998-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:03:29+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35930\", \"uuid\": \"d34f3607-62f4-52b1-8f34-5c2ad4f9ed6e\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological Sites - Earth Resources Spatial Data Collection for the Datamart.", "abstract": "Datasets relating to geological sites, geologically significant features & mine shafts.\nCollected for Earth Resources within DSDBI", "anzlicid": "ANZVI0803003358", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "44813497ac2f63e22d167cbbef3692bdf91b20c8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f305b156-b8fd-513b-b40e-dafffde32ddc", "publicationdate": "2021-09-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-10-12", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Index of Estuarine Condition Estuarine Boundaries", "alttitle": "IEC2021_ESTUARY_BOUNDARIES", "tempextentbegin": "2017-01-23T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-02-07T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42083\", \"uuid\": \"f305b156-b8fd-513b-b40e-dafffde32ddc\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-17\", \"changeDate\": \"2021-10-12\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Index of Estuarine Condition Estuarine Boundaries", "abstract": "IEC2021_ESTUARY_BOUNDARIES is the spatial boundaries of the merged polygons in the IEC2021_SUB_VEG layer.", "anzlicid": "ANZVI0803008719", "geonet_info_createdate": "2020-11-17", "revisiondate": "2021-10-12", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d86b24186db8dcc84e11db1f87a997d4291d36ae", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c12380d9-db04-5873-ab42-e779e4df99e2", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Railway Gauge Table", "alttitle": "TR_RAIL_GAUGE", "tempextentbegin": "2023-01-24T00:03:38+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:38+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35957\", \"uuid\": \"c12380d9-db04-5873-ab42-e779e4df99e2\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Railway Gauge Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003166", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7fba8ddf91eae87e24a42d2dd4945e615bcdb1b1", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6cb9e551-1237-52e0-8622-07733a897545", "publicationdate": "2021-09-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-10-15", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Index of Estuarine Condition Estuarine Fringing Vegetation", "alttitle": "IEC2021_FRINGING_VEG", "tempextentbegin": "2017-01-23T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-02-07T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42085\", \"uuid\": \"6cb9e551-1237-52e0-8622-07733a897545\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-17\", \"changeDate\": \"2021-10-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Index of Estuarine Condition Estuarine Fringing Vegetation", "abstract": "IEC2021_ FRINGING _VEG is the spatial representation of fringing vegetation used in the calculation of Index of Estuarine Condition (IEC) scores. In the context of the IEC, 'fringing vegetation' refers to the vegetation which grows above the permanently inundated portion of the estuary but within the zone of influence of the more-or-less saline estuarine waters. It includes vegetation in intertidal areas and riparian areas in the estuary but not subtidal vegetation (see Sinclair and Kohout 2018 for more precise working definitions of vegetation zones). In the field, the extent of the fringing vegetation and any built structures that impinge on it were mapped (by annotating an aerial photograph). Fringing vegetation was mapped according to Ecological Vegetation Classes (EVC) (https://www.environment.vic.gov.au/biodiversity/bioregions-and-evc-benchmarks) and subjectively classified into areas of different condition with reference to vegetation structure, weediness and land use. Each patch of vegetation that could be accessed was scored for its degree of invasion by perennial weeds and its structural resemblance to a relevant benchmark (https://www.environment.vic.gov.au/biodiversity/bioregions-and-evc-benchmarks). Additional observations were recorded on the score sheet, relating to `Health of the dominant plant species\u00bf and `Extent of engineered hydrological modifications\u00bf. Scores were estimated for the areas that could not be observed. These estimated scores were based on the areas that were observed. The areas of all relevant polygons were calculated, and a score produced for each metric (IEC Report 2021).", "anzlicid": "ANZVI0803008720", "geonet_info_createdate": "2020-11-17", "revisiondate": "2021-10-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1145ebfdf7d558eec9a3542c88751effa1d3b3c5", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1490d477-0c6f-5e30-910b-4032eaf9895a", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-05-06", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Tree Cover", "alttitle": "TREE100", "tempextentbegin": "1989-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "1993-04-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Unknown", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35961\", \"uuid\": \"1490d477-0c6f-5e30-910b-4032eaf9895a\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-05-06\", \"changeDate\": \"2016-05-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Tree Cover", "abstract": "Polygons showing tree cover as defined by woody vegetation greater than 2 metres in height and with a crown cover (foliar density) greater than 10%.\nTree cover is mapped down to a minimum area of one hectare. \nThis layer was derived from LANDSAT TM digital data.", "anzlicid": "ANZVI0803001075", "geonet_info_createdate": "2016-05-06", "revisiondate": "2016-05-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d0c49a54d8a17d4360bccce839bc072735302a39", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "21747078-fec7-58e6-b70d-754680cdc751", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "MapInfo , ArcView, ArcInfo and Microsoft Access.", "type": "dataset", "title": "Surface Geochemistry Samples (being Superceded by GEOCHEMISTRY)", "alttitle": "GCHEM", "tempextentbegin": "1996-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2008-05-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33895\", \"uuid\": \"21747078-fec7-58e6-b70d-754680cdc751\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-17\", \"changeDate\": \"2013-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Surface Geochemistry Samples (being Superceded by GEOCHEMISTRY)", "abstract": "Surface Geochemistry Samples is derived from Minerals and Petroleum's SITES Oracle RDBMS. Data have been obtained from company reports of expired mineral Exploration and Mining Licences since 1965.\n\nA surface sample is typically taken to comprise a sample taken from the weathered profile, and which is the only sample taken at that location. It may be a soil or it may be a sediment taken from an active stream bed. Though most soil samples are taken from the B- or C-horizon (approx. 10-40 cm depth) the dataset may, for example, include a sample taken from 2 m depth and obtained by augering. There is, thus, a continuum between surface geochemistry and boreholes datasets.", "anzlicid": "ANZVI0803002548", "geonet_info_createdate": "2013-09-17", "revisiondate": "2013-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5e31c4a8c77e9cfe574e8546999cb8043b9fd769", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ef16a123-5c78-5acc-af1f-cd118f60ef84", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-04-07", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Property - Parcel Polygon with Approved Parcel Detail", "alttitle": "V_S_PARCEL_APPROVED", "tempextentbegin": "2023-01-24T00:03:40+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:40+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42088\", \"uuid\": \"ef16a123-5c78-5acc-af1f-cd118f60ef84\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-16\", \"changeDate\": \"2021-04-07\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Property - Parcel Polygon with Approved Parcel Detail", "abstract": "Approved Parcel Map Polygons is a polygon layer belonging to Vicmap Property Simplified 2, a modified and simplified model of Vicmap Property, specifically generated for Local Government use.. It consists of polygons representing Victoria's land parcels.\nThis layer should be used in conjuction with the other layers and aspatial tables that make up Vicmap Property Simplified 2, see metadata for Vicmap Property and Vicmap Property Simplified 2.\n\nVicmap Property Simplified 2 Content includes\n \u00b7 Parcel and Property Polygons;\n \u00b7 Parcel and Property Identifiers - parcel descriptors (including Standard Parcel Identifiers (SPI)), \n Council reference numbers;\n \u00b7 Registered and proposed;\n \u00b7 Crown and Freehold land differentiation;\n \u00b7 Cadastral Road Casements;\n \u00b7 Easements (Note: all new easements are being captured for the whole State. Previously, only \n easements in the metropolitan area were captured. There is no current program to review and \n capture missing easements);\n \u00b7 Unique Feature Identifiers, date stamps and data quality information.", "anzlicid": "ANZVI0803008711", "geonet_info_createdate": "2020-11-16", "revisiondate": "2021-04-07", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "59fb091a383bb462b854291329ed71237077d53e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c6499383-f8eb-5cf6-9463-b04bc4b017fe", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-05-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcGIS shapefile", "type": "dataset", "title": "Victorian Soil type mapping", "alttitle": "SOIL_TYPE", "tempextentbegin": "2014-06-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2016-02-28T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "farming;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35969\", \"uuid\": \"c6499383-f8eb-5cf6-9463-b04bc4b017fe\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-29\", \"changeDate\": \"2019-05-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Soil type mapping", "abstract": "A spatial map layer of soil type (Australian Soil Classification) for Victoria. The harmonised map consists of 3,300 land units (totaling about 225,000 polygons) derived from around 100 soil and land surveys carried out in Victoria over the past 70 years. The land units have been attributed according to the Australian Soil Classification (Order and Suborder levels of the classification scheme) based on their likely dominant soil type. Particular attention was given to harmonising land units across survey boundaries. A reliability index has been assigned to each land unit based on the quality and relevance of the originating survey, providing a qualitative reliability measure to support interpretation and data use.\n\nSoil site data contained in the Victorian Soil Information System (VSIS), and information on the Victorian Resources Online (VRO) website and original study reports have been combined with landscape knowledge to develop the new maps. Data from approximately 10,000 existing sites recorded, mostly recorded in the VSIS have been used.\n\nThe soil type is based on land mapping conducted at different times, at variable scale, and for different purposes. Land units are therefore of variable scale and quality in relation to the soil they are representing. Many units will be comprised of multiple soil types and a range of soil properties, and local variability (e.g. at paddock scale level) can also sometimes be high. The mapping, therefore, is intended to represent the dominant, or most prevalent, broad soil type within the map unit. It is therefore adequate for regional or state-wide overviews but may not often be accurate enough for localised or within-farm assessments. For more detailed soil and land information, users are advised to refer to the original land study for any given map unit (e.g. via Victorian Resources Online website).", "anzlicid": "ANZVI0803005522", "geonet_info_createdate": "2019-05-29", "revisiondate": "2019-05-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c07389d56b89558d366fafd4082124a19fac5942", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "6f312a91-3459-5749-88c8-69255499e4e4", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-06-01", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "SDM formats", "type": "dataset", "title": "River Health Program Environmental Watering Priority Reaches for the Victorian Investment Framework", "alttitle": "VIF_RIVERHEALTH_EW100", "tempextentbegin": "2010-02-16T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2011-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35970\", \"uuid\": \"6f312a91-3459-5749-88c8-69255499e4e4\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-06-01\", \"changeDate\": \"2016-06-01\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "River Health Program Environmental Watering Priority Reaches for the Victorian Investment Framework", "abstract": "OBSOLETE POLICY LAYER - A white paper for land and biodiversity at a time of climate change 2009\n\nThe 'Priority reaches for environmental watering' layer (derived from ISC_REACH) represents priority reaches for environmental watering as identified through environmental entitlements, water recovery plans and projects, Sustainable Water Strategies, Regional River Health Strategies and associated Addendums. \n\nThis layer should be used in conjunction with the latest Victorian Investment Framework (VIF) Statement of Priorities document. Catchment Management Authorities are responsible for prioritising actions within their region based upon these priorities and available funding.\n\nTo be viewed in conjunction with VIF_RIVERHEALTH_PRI100; VIF_RIVERHEALTH_LSRR100 and VIF_RIVERHEALTH_EWA100", "anzlicid": "ANZVI0803003982", "geonet_info_createdate": "2016-06-01", "revisiondate": "2016-06-01", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2f23218d6fed3c3eae89a1d9c8af5cd7b22a9f0a", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ac31f7d7-6131-5b5e-9cdd-b7dfacc11c0e", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Address Building Unit Type Table", "alttitle": "ADDRESS_BLG_UNIT_TYPE", "tempextentbegin": "2023-01-24T00:03:48+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:48+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42105\", \"uuid\": \"ac31f7d7-6131-5b5e-9cdd-b7dfacc11c0e\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-19\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Address Building Unit Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008727", "geonet_info_createdate": "2020-11-19", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "99a62a06784a9a947b07fb34444db22bf58b27ea", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "90fdf641-9400-525d-be09-e6ec860fbe9c", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Property - Parcel Table", "alttitle": "PARCEL", "tempextentbegin": "2023-01-24T00:03:49+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:49+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;planning cadastre;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35993\", \"uuid\": \"90fdf641-9400-525d-be09-e6ec860fbe9c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2022-07-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Property - Parcel Table", "abstract": "This layer contains aspatial details for all legal parcel boundaries in Victoria, both freehold and crown. A parcel is defined as the smallest area of land capable of sale without further approval to subdivide. It may consist of more than one piece. Parcels are described by a parcel description (either lot/plan or allotment/section/parish).\n\nIt includes:\n- Parcel Identifiers, both freehold and crown;\n- Registered and proposed status;\n- Crown and Freehold land differentiation;\n- Council reference numbers;\n- LGA code;\n- Unique Feature Identifiers, date stamps and data quality information.\n\nMetaX records this dataset as VMPROP.PARCEL", "anzlicid": "ANZVI0803001034", "geonet_info_createdate": "2019-09-04", "revisiondate": "2022-07-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1e2e9aa711469f59d075961d09d52b766bf724ee", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "4ccf6a63-f700-57c9-9441-9c28c2319b5b", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2018-11-15", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "arcview, coverage, SDE layer", "type": "dataset", "title": "Conservation Management Network boundaries - CMN", "alttitle": "CMN", "tempextentbegin": "2011-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-04-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;planned", "topiccat": "environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35994\", \"uuid\": \"4ccf6a63-f700-57c9-9441-9c28c2319b5b\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-11-15\", \"changeDate\": \"2018-11-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "limitedDistribution", "defaulttitle": "Conservation Management Network boundaries - CMN", "abstract": "Conservation Management Network boundaries as a statewide coverage. This layer will be changing over time depending on new networks and amalgamations.\n A CMN:\nis a network of sites with native vegetation\nis a network of people who work together to protect and restore these sites, and also work to expand and link them across the landscape\nworks closely with local Landcare, government agencies and nongovernment organizations\nworks on both public and private land with site-based activities like revegetation, and addressing landscape-wide problems like tree die-back, weeds and foxes\nhas a strong focus on community education", "anzlicid": "ANZVI0803004708", "geonet_info_createdate": "2018-11-15", "revisiondate": "2018-11-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7695e1477987a140b7b59fbaba59cd590a53bf8a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9aeabfbc-23ef-5bbe-9ea4-56b0051cfa3a", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Statistical extents for 0.2% AEP or 1 in 500 years floods until 2014", "alttitle": "EXTENT_500Y_ARI", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-11-10T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42108\", \"uuid\": \"9aeabfbc-23ef-5bbe-9ea4-56b0051cfa3a\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-19\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Statistical extents for 0.2% AEP or 1 in 500 years floods until 2014", "abstract": "This layer contains information from multiple flood studies undertaken until 2014.\nThe data is statistically derived using hydrological models depicting the 1 in 500 year ARI (or 0.2% AEP) scenario flood extents. \nThis is Polygon data or a Shapefile.\nThis layer will not be updated.", "anzlicid": "ANZVI0803008743", "geonet_info_createdate": "2020-11-19", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0b099df03457ee71d60226c62f8ec1ccfdf564f1", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "8a607fad-a3d2-56af-a6c6-cdc20a12f0db", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Public Access Road Crossing", "alttitle": "PAIM_RDB_CROSSINGS", "tempextentbegin": "2014-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:50+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35997\", \"uuid\": \"8a607fad-a3d2-56af-a6c6-cdc20a12f0db\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-05-19\", \"changeDate\": \"2022-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Public Access Road Crossing", "abstract": "The layer is a subset of FORESTSROADS.RDB_CROSSINGS. It is used in the Public Access Map to display closed and accessible road crossings within public land.", "anzlicid": "ANZVI0803005655", "geonet_info_createdate": "2020-05-19", "revisiondate": "2022-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b61307f906331290c6e1098bf9ae2fc491aee9fa", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6d12e218-ce90-57d8-9546-46403616fc0c", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-05-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcGIS feature class", "type": "dataset", "title": "Regional Management Units of north west Victoria", "alttitle": "NW_REGIONAL_MANAGEMENT_UNIT", "tempextentbegin": "2010-06-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2012-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "farming;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33919\", \"uuid\": \"6d12e218-ce90-57d8-9546-46403616fc0c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-14\", \"changeDate\": \"2019-05-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Regional Management Units of north west Victoria", "abstract": "A polygonal dataset of Regional Map Units (RMUs) in the Victorian Mallee.\n\nThe dataset was created from the disaggregation of land systems originally defined by Rowan and Downes (1963).\n\nRMUs delineate areas of repeating landform component patterns that occur within a similar landscape context. They were created to provide the Mallee CMA with areas for priority investment to monitor, assess and manage regional land management issues, such as wind erosion. The units also assist in distinguishing the morphological variation in landform components, for example the difference in size of hummocks between the Tempy and Culgoa land systems.\n\nThe RMUs have been attributed for their relative wind erosion susceptibility and have been embedded into the Victorian Geomorphological Framework. Each RMU therefore has a local naming context (eg: Central Mallee 1) and a statewide Geomorphological reference, eg: 5.1.2.\n\nThe landform component grid developed by the same project, a 10 metre grid Digital Elevation Model (DEM), expert opinion and the GMU were key inputs into the creation of the landform units.\n\nAn alpha-numeric code has been applied as the naming convention for these new landform units. The letter indicates the primary parent land system to which the unit is a member whilst the number reflects the number of units the land system has been divided into.\n\nThe dataset was an output of the project \"Disaggregation of landform components within land systems of the Mallee\" and \"Wind erosion susceptibility mapping\" projects conducted by DPI between 2008 and 2011. These projects were sponsored by the Mallee Catchment Management Authority with funding from the Federal government's Caring for our Country initiative.\n\nThe final project reports and the Rowan and Downes (1963) report , \"A study of the land of north-western Victoria\", should be referred to when analysing or utilising this dataset.", "anzlicid": "ANZVI0803005566", "geonet_info_createdate": "2019-05-14", "revisiondate": "2019-05-14", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "997d37cb6ab47573db60266f3ae82453171f2652", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5f409457-2e98-556e-8ba3-2757091a4507", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - Country Fire Authority (CFA) Total Fire Ban District Polygon", "alttitle": "CFA_TFB_DISTRICT", "tempextentbegin": "2012-10-15T13:00:00+00:00", "resowner": "Country Fire Authority;Country Fire Authority", "tempextentend": "2023-01-24T00:03:51+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;boundaries;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36000\", \"uuid\": \"5f409457-2e98-556e-8ba3-2757091a4507\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - Country Fire Authority (CFA) Total Fire Ban District Polygon", "abstract": "Part of the Vicmap Admin dataset series. This layer contains polygon features delineating the current CFA Total Fire Ban Districts. \n\nIn 2010, the TFB Boundary Realignment project was conducted. As a result CFA, Department of Sustainability and Environment (DSE) and the Bureau of Meteorology (BOM) developed a proposal to align fire weather districts, TFB boundaries and Local Government Area (LGA) boundaries.\n\nAfter much consultation and amendments, it was agreed to approve the above proposal with the exception of Yarriambiack Shire which was divided using the east-west rabbit fence. The result created a total of 9 TFB Districts. These changes were implemented in October 2010.", "anzlicid": "ANZVI0803004761", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "98854e84c4f8911ee6bb5a9c88327cc704a42263", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1c35737f-8d13-526b-9e0e-cbe594da768b", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-12-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "nonGeographicDataset", "title": "Flood waterway list", "alttitle": "WATERWAY_LIST", "tempextentbegin": "1899-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;inland waters;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42111\", \"uuid\": \"1c35737f-8d13-526b-9e0e-cbe594da768b\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-19\", \"changeDate\": \"2022-12-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Flood waterway list", "abstract": "A table containing a list of individual flood study IDs, and the waterway IDs they have been assigned. \nUsed to link many-to-one waterways to single poly and line features in other flood layers.\nWaterways are identified in the WATERWAYS_LIST table.\n\nOther linked data requires corresponding values in STUDYID field", "anzlicid": "ANZVI0803008746", "geonet_info_createdate": "2020-11-19", "revisiondate": "2022-12-09", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d49311570e8bf656cc1f80685f48c9543f7e3c01", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "66f4e0cf-868a-56cb-a004-b5514921d032", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available on request", "type": "dataset", "title": "Anderson Inlet Seagrass 1999", "alttitle": "SEAGRASS_ANDERSON_INLET_1999", "tempextentbegin": "1998-05-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "1999-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36001\", \"uuid\": \"66f4e0cf-868a-56cb-a004-b5514921d032\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-25\", \"changeDate\": \"2015-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Anderson Inlet Seagrass 1999", "abstract": "This layer contains polygons defining the spatial extent, species distribution and density of seagrass meadows within Anderson Inlet mapped from 1999 aerial photography and ground-truthing.", "anzlicid": "ANZVI0803004100", "geonet_info_createdate": "2015-11-25", "revisiondate": "2015-11-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b908ce8ead1febf6622646a3e753fcd4e63c0885", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "b52c0046-6fd1-5398-8e64-386ee4aa9e0f", "publicationdate": "2022-04-13", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-04-12", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "Parks Victoria Visitor Sites", "alttitle": "PV_VISITOR_SITES", "tempextentbegin": "2009-04-30T14:00:00+00:00", "resowner": "Parks Victoria", "tempextentend": "2023-01-24T00:03:33+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete", "topiccat": "location", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35941\", \"uuid\": \"b52c0046-6fd1-5398-8e64-386ee4aa9e0f\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-09-12\", \"changeDate\": \"2022-04-12\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "mdclassification": "limitedDistribution", "defaulttitle": "Parks Victoria Visitor Sites", "abstract": "This dataset shows discrete visitor activity centres within Parks and Reserves managed by Parks Victoria meeting the minimum criteria of 'Very Basic' Level of Service criteria.\n\nLast Updated October 2021.", "anzlicid": "ANZVI0803004272", "geonet_info_createdate": "2016-09-12", "revisiondate": "2022-04-12", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b69280443c225c8d608279596be7b8d07b73ed1a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "4fccb899-9ec0-5805-a6a3-24e1bf6fbfb3", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-04-07", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Property - Property Polygon with Proposed Primary Detail", "alttitle": "V_S_PROPERTY_PRIMARY_PROPOSED", "tempextentbegin": "2023-01-24T00:03:34+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:34+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42079\", \"uuid\": \"4fccb899-9ec0-5805-a6a3-24e1bf6fbfb3\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-16\", \"changeDate\": \"2021-04-07\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Property - Property Polygon with Proposed Primary Detail", "abstract": "Property Primary Proposed dataset from the product Vicmap Property Simplified 2, specifically generated for Local Government use..", "anzlicid": "ANZVI0803008716", "geonet_info_createdate": "2020-11-16", "revisiondate": "2021-04-07", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2944821f5da2e7774cbdcce924ffa665398d6037", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ae75c7f7-2665-5169-9fc6-cd244aab88d1", "publicationdate": "2021-09-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-10-15", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Index of Estuarine Condition Submerged Vegetation Data", "alttitle": "IEC2021_SUB_VEG", "tempextentbegin": "2017-01-23T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-02-07T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42082\", \"uuid\": \"ae75c7f7-2665-5169-9fc6-cd244aab88d1\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-17\", \"changeDate\": \"2021-10-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Index of Estuarine Condition Submerged Vegetation Data", "abstract": "IEC2021_SUB_VEG is the spatial representation of submerged vegetation used in the calculation of Index of Estuarine Condition (IEC) scores. In the context of the IEC, 'submerged vegetation' refers to aquatic plants attached to bottom sediments that are generally entirely submerged but may be exposed during very low tides. Field data was collected at various locations within the estuary to ground-truth the mapping of full coverage derived from available aerial imagery. The field data was collected in late spring, summer and early autumn to correspond with warmer water temperatures and longer photoperiods, and to avoid winter periods of submerged vegetation dieback. In the field, ground-truthing by taking photos of the benthic environment largely followed the protocols outlined in Woodland and Cook (2015). If the estuarine bed was visible, photographic samples were collected of the different vegetation types present. Coverages of these different vegetation types (e.g. dense, sparse) were also photographed as well as bare ground. Ground-truthed benthic images were mapped over high-resolution (<20 cm) aerial imagery sourced from the DELWP imagery archive. Only imagery later than 2010 was considered, with most of the imagery used captured later than 2015. RPAS imagery collected for some estuaries was geo-rectified and mosaicked to provide very high-resolution imagery for mapping. Mapped areas were then compared to the geo-referenced ground-truthed benthic images and assigned a vegetation-coverage class and an indication of classification confidence (High, Medium or Low). For each estuary, MA:TV was then derived from the ratio of total macroalgae area to total vegetated area (i.e. seagrass and macroalgae) as per Woodland and Cook (2015). Briefly, vegetated habitat areas were weighted by their coverage classes such that polygons assigned `sparse\u00bfmedium\u00bf coverage were considered to contain 50% vegetation, and those assigned as `dense\u00bf coverage were considered as 100% vegetated. The ratio of macroalgae to total vegetation (MA:TV) was calculated as the sum of the weighted macroalgae areas divided by the sum of the weighted seagrass and macroalgae areas. MA:TV ranges from 0 to 1.", "anzlicid": "ANZVI0803008717", "geonet_info_createdate": "2020-11-17", "revisiondate": "2021-10-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f6e4d8cc04dcdd3ca9b3f93bd1358bb4892f186d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e1398ce5-fbf0-5e27-9bcd-0404af7cfed7", "publicationdate": "2021-12-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2023-01-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Historic Places (point features)", "alttitle": "HIST100_POINT", "tempextentbegin": "1981-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:37+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35954\", \"uuid\": \"e1398ce5-fbf0-5e27-9bcd-0404af7cfed7\", \"schema\": \"iso19115-3\", \"createDate\": \"2010-03-29\", \"changeDate\": \"2023-01-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Historic Places (point features)", "abstract": "Records about non-Aboriginal historic sites on Victorian public land, collected as a result of field survey by DELWP staff and contractors.\n\nUpdated during the Regional Forest Agrement (RFA) review in 1999-2000. \n\nAdditional attrbiutes included in 2021 library update are:\n1. Buffer - site buffer distance applied to some sites which already had a Forest Planning buffer for protection\n2. Source_data: most data is from the Historic Places database, during the RFA update included sites from other sources in DELWP regions and some external contractors.\n\nConsulted with DELWP Planning Heritage team during the update process.\nUFID - unique feature identifier added Jan 2023", "anzlicid": "ANZVI0803002072", "geonet_info_createdate": "2010-03-29", "revisiondate": "2023-01-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9ddd6df68166177f9dee43617318b490971f66f8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8881092d-29ab-5cee-9502-19758b6b3709", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-11", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Statistical flood height contours for 2% annual exceedence probability (AEP) or 1 in 50 year recurrence interval until 2014.", "alttitle": "CONTOUR_50Y_ARI", "tempextentbegin": "1997-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-03-11T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42112\", \"uuid\": \"8881092d-29ab-5cee-9502-19758b6b3709\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-19\", \"changeDate\": \"2022-10-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Statistical flood height contours for 2% annual exceedence probability (AEP) or 1 in 50 year recurrence interval until 2014.", "abstract": "This layer contains information from multiple flood studies undertaken until 2014. This layer will not be updated.\nThe data is statistically derived using hydrological models depicting the 1% AEP (or 1 in 100 ARI) scenario, historic flood extents and heights.\nThis is Polygon data or a Shapefile.", "anzlicid": "ANZVI0803008738", "geonet_info_createdate": "2020-11-19", "revisiondate": "2022-10-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a9da30ccd76eed39d24b3a7442ec12096f6eb910", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f97b06a7-405b-5e4f-a336-e77ca9662e07", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-11", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Statistical flood height contours for 5% annual exceedence probability (AEP) or 1 in 20 year recurrence interval until 2014.", "alttitle": "CONTOUR_20Y_ARI", "tempextentbegin": "1997-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-03-10T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42113\", \"uuid\": \"f97b06a7-405b-5e4f-a336-e77ca9662e07\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-19\", \"changeDate\": \"2022-10-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Statistical flood height contours for 5% annual exceedence probability (AEP) or 1 in 20 year recurrence interval until 2014.", "abstract": "This layer contains information from multiple flood studies undertaken until 2014. This layer will not be updated.\nThe data is statistically derived using hydrological models depicting the 5% AEP (or 1 in 20 ARI) scenario, historic flood extents and heights.\nThis is Polygon data or a Shapefile.", "anzlicid": "ANZVI0803008736", "geonet_info_createdate": "2020-11-19", "revisiondate": "2022-10-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "677d8054443fe8343dfb85e18a6b27b3b7211cf2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c12f635b-1d76-594f-95a4-63c1c73dd113", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-11", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Statistical flood height contours for 0.5% annual exceedence probability (AEP) or 1 in 200 year recurrence interval until 2014.", "alttitle": "CONTOUR_200Y_ARI", "tempextentbegin": "1997-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-03-11T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42117\", \"uuid\": \"c12f635b-1d76-594f-95a4-63c1c73dd113\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-19\", \"changeDate\": \"2022-10-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Statistical flood height contours for 0.5% annual exceedence probability (AEP) or 1 in 200 year recurrence interval until 2014.", "abstract": "This layer contains information from multiple flood studies undertaken until 2014. This layer will not be updated.\nThe data is statistically derived using hydrological models depicting the 0.5% AEP (or 1 in 200 ARI) scenario, historic flood extents and heights.\nThis is Polygon data or a Shapefile.", "anzlicid": "ANZVI0803008735", "geonet_info_createdate": "2020-11-19", "revisiondate": "2022-10-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8d949686610f132758a701b8afe5becd83739992", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "fcb63ea2-7430-526b-a139-060c8a2cf990", "publicationdate": "2023-01-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2023-01-11", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Victorian Heritage Inventory", "alttitle": "HERITAGE_INVENTORY", "tempextentbegin": "2008-01-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:55+00:00", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36014\", \"uuid\": \"fcb63ea2-7430-526b-a139-060c8a2cf990\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-10-18\", \"changeDate\": \"2023-01-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Heritage Inventory", "abstract": "The Heritage Inventory is a listing of all known historical (non-Indigenous) archaeological sites in Victoria.\n\nWhile there are over 6,800 sites listed on the Heritage Inventory, it is not a comprehensive list as large parts of the State have not had an archaeological survey. \n\nHeritage Inventory sites, as well as sites that have yet to be discovered, are protected under the Victorian Heritage Act 1995.", "anzlicid": "ANZVI0803004875", "geonet_info_createdate": "2016-10-18", "revisiondate": "2023-01-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e6a0fa431400b833d470f1f987b14d1a24b174a8", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e25217f7-8597-5224-a5de-5c479140dbee", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Road Structure Type Table", "alttitle": "TR_ROAD_STRUCTURE_TYPE", "tempextentbegin": "2023-01-24T00:03:56+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:56+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36017\", \"uuid\": \"e25217f7-8597-5224-a5de-5c479140dbee\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Road Structure Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003175", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d57187d6da0b95aa047483cb7db07bb04028385a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "b6bc636d-7641-5ab0-a64b-6bd9a8097af9", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-08-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Not Known", "type": "dataset", "title": "Victorian Water Asset Database (VWAD) - POINT_LAYER", "alttitle": "VWAD_PT", "tempextentbegin": "2013-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-05-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36024\", \"uuid\": \"b6bc636d-7641-5ab0-a64b-6bd9a8097af9\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-08-05\", \"changeDate\": \"2015-08-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Water Asset Database (VWAD) - POINT_LAYER", "abstract": "Victorian Water Asset Database (VWAD), contains the identification of water assets and their attributes for the state of Victoria. The VWAD includes features such as lakes, rivers, creeks, wetlands, water storages, estuaries, groundwater aquifers, springs, large marine intertidal zones,\nbut does not include specific irrigation and water supply infrastructure such as irrigation channels, bores and irrigation distribution networks.", "anzlicid": "ANZVI0803005339", "geonet_info_createdate": "2015-08-05", "revisiondate": "2015-08-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d40049ca73b199e872409beb28e6f1720235f91b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "262b9292-a214-5f84-bfe6-7f8529501fb7", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-11", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Statistical flood height contours for 10% annual exceedence probability (AEP) or 1 in 10 year recurrence interval until 2014.", "alttitle": "CONTOUR_10Y_ARI", "tempextentbegin": "1997-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-11-17T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42121\", \"uuid\": \"262b9292-a214-5f84-bfe6-7f8529501fb7\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-19\", \"changeDate\": \"2022-10-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Statistical flood height contours for 10% annual exceedence probability (AEP) or 1 in 10 year recurrence interval until 2014.", "abstract": "This layer contains information from multiple flood studies undertaken until 2014. This layer will not be updated.\nThe data is statistically derived using hydrological models depicting the 10% AEP (or 1 in 10 ARI) scenario, historic flood extents and heights.\nThis is Polygon data or a Shapefile.", "anzlicid": "ANZVI0803008734", "geonet_info_createdate": "2020-11-19", "revisiondate": "2022-10-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "46e3a63778a4a43b3a9b208b1e88f42fb372e446", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "b236fd06-a7fc-5ced-8b98-1f022a329b11", "publicationdate": "2022-10-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Features - Locality Point", "alttitle": "LOCALITY_POINT", "tempextentbegin": "2008-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:58+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36025\", \"uuid\": \"b236fd06-a7fc-5ced-8b98-1f022a329b11\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Features - Locality Point", "abstract": "Part of the Vicmap Features of Interest dataset - Point location of localities within Victoria.\n\nThis dataset is a cartographic product that optimises the display locality/township locations in Victoria and adjoining States specifically for map production and webservices.\n\nThe records in this dataset represent the location of localities where a spatial point is identifiable both within Victoria and 50 km's beyond the State border. All Victorian records are registered in the Geographic Names Register and hold the associated Geonames ID.\nNon Victorian records represent similiar features in order to support mapping in areas adjacent to the Victorian Border. \n\nFor a authoritative list of Victorian localities see VMADMIN_LOCALITY_POLYGON.", "anzlicid": "ANZVI0803003600", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0199fd50023caa2ecea72d5917d8132c95ae75a7", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "39708d26-e8df-5e15-a224-e7937262fded", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - State Council Polygon 1991", "alttitle": "STATE_COUNCIL_1991", "tempextentbegin": "1996-12-31T13:00:00+00:00", "resowner": "Victorian Electoral Commission", "tempextentend": "2001-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36028\", \"uuid\": \"39708d26-e8df-5e15-a224-e7937262fded\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - State Council Polygon 1991", "abstract": "State wide data showing Upper House boundaries and names 1991. These are the Legislative Council Electoral Boundaries referred to as the Upper House Boundaries.\n\nSUPERSESED dataset by VMADMIN_STATE_COUNCIL_2001", "anzlicid": "ANZVI0803002614", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e9b9dd4def9bffc62e114377414bf4539c0796b3", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "42cea5fc-e7e3-50d3-92e3-6470275b38bf", "publicationdate": "2018-01-23", "publishedforgroup": "12264;0", "geonet_info_changedate": "2021-06-16", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "csv", "type": "dataset", "title": "Sand Flat Head Management and Stock Assessment Program", "alttitle": "PPB_FV_TRAWL_FISH_SELECT", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2015-01-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33932\", \"uuid\": \"42cea5fc-e7e3-50d3-92e3-6470275b38bf\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-06-02\", \"changeDate\": \"2021-06-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Sand Flat Head Management and Stock Assessment Program", "abstract": "SAND_FLATHEAD_SNAPPER_BEAM_TRAWL_2000_2015\n\nSize frequency data from beam trawl surveys of snapper and sand flat head fish species. Surveys conducted at 9 areas within Port Phillip Bay using beam trawls in the 10-20 m depth range from 2000 to 2015. All snapper and sand flathead are counted and measured. Catch rates are standardised to number of individuals/1000 m2 of bottom trawled, using GPS records of the start and end of each trawl and the swept area of the trawl net.\nPoint data representing start and stop position of trawl survey locations.\n\n*Please speak to Lawrance Ferns for further information*", "anzlicid": "ANZVI0803005595", "geonet_info_createdate": "2016-06-02", "revisiondate": "2021-06-16", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "66c2b22c13329189a8c7ae866571707f04dd22aa", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0c6761ee-7107-5bef-8e8a-e9670d19b774", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Administrative Department of Sustainability and Environment (DSE) Region Table", "alttitle": "AM_DSE_REGION", "tempextentbegin": "2023-01-24T00:04:02+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:02+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42131\", \"uuid\": \"0c6761ee-7107-5bef-8e8a-e9670d19b774\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Administrative Department of Sustainability and Environment (DSE) Region Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008756", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "99241802bbd4fe67cbcdb3b339a5c6bc02f200aa", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2f2d921a-a355-5bb6-a6db-f7c80892612d", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, Non digital - printed map.", "type": "dataset", "title": "Basins (1:500,000), Geological Interpretation of Geophysical Features Polygon", "alttitle": "GPGEOL500_POLYGON", "tempextentbegin": "2000-02-29T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2002-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36057\", \"uuid\": \"2f2d921a-a355-5bb6-a6db-f7c80892612d\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-29\", \"changeDate\": \"2022-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Basins (1:500,000), Geological Interpretation of Geophysical Features Polygon", "abstract": "This dataset contains interpreted geological data, both units underlying the basins and magnetic (mostly volcanic) units enclosed by the basin sediments. The linear features in the data set are geological boundaries, major faults, lesser faults and dykes.\n\nThe onshore magnetic, radiometric, topographic and gravity data have been collected by the Geological Survey of Victoria. This has been supplemented by offshore magnetic and bathymetric data collected by the Australian Geological Survey Organisation and deep seismic data collected by the Australian Geological Survey Organisation and company sources.\n\nThe map attempts to reconcile the onshore geology interpreted in Simons & Moore (1999) with the geophysical responses in a way that is geologically reasonable, and to carry this interpretation offshore at least as far as the Tasmanian sea boundary (generally 39 degrees 12 minutes South). The legend broadly uses the same time breaks as that of the Pre-Permian geological map, but includes younger packages that lie beneath the basin. No attempt has been made to subdivide granitic rocks of a particular age.\n\nThe dataset is accompanied by other datasets representing lava flows and the basin edges. Lava flows have been interpreted either from intersections in drill holes or from magnetic responses.\n\n\nReferences:\n\nMOORE, D.H., 2002. Eastern and central Gippsland Basin, southeast Australia: basement interpretation and basin links. Victorian Initiative for Minerals and Petroleum Report 69, Department of Natural Resources and Environment. \n\nMOORE, D.H., 2002. Basement-basin relationships in the Otway Basin, Victoria, Australia. Victorian Initiative for Minerals and Petroleum Report 78, Department of Natural Resources and Environment.\n\nSIMONS B.A., & MOORE, D.H., 1999. Victoria 1:1 000 000 Pre-Permian Geology. Geological Survey of Victoria.", "anzlicid": "ANZVI0803003409", "geonet_info_createdate": "2018-03-29", "revisiondate": "2022-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c98932c3eaa8bc469f07841c81022100413eeace", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "eac59d64-b3ac-58c4-8f82-a584302f89a5", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-05-28", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Estuary-drained portions of Victorian coastal catchments", "alttitle": "EST_CATCH", "tempextentbegin": "2006-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2008-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36059\", \"uuid\": \"eac59d64-b3ac-58c4-8f82-a584302f89a5\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-08\", \"changeDate\": \"2021-05-28\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Estuary-drained portions of Victorian coastal catchments", "abstract": "Areas of catchments that drain directly to Victorian estuaries - i.e. not via major freshwater tributaries. The layer was derived by Deakin University as part of the project: \"Linking catchments to the sea: Understanding how human activities impact on Victorian estuaries\" funded by the National Heritage Trust and the Department of Sustainability and Environment.", "anzlicid": "ANZVI0803003704", "geonet_info_createdate": "2017-03-08", "revisiondate": "2021-05-28", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e1a84f0d4c6d038670066586dbd207f5aac356f2", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "bb484059-e767-55ba-a19c-a0508fbb57b4", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-11-20", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Vegetation Plantation Thinning Table", "alttitle": "VG_PLANTATION_THINNING", "tempextentbegin": "2023-01-24T00:04:08+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:08+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42141\", \"uuid\": \"bb484059-e767-55ba-a19c-a0508fbb57b4\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2020-11-20\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Vicmap Reference - Vegetation Plantation Thinning Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008786", "geonet_info_createdate": "2020-11-20", "revisiondate": "2020-11-20", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b474d1487d7e9871f2bab4f391ad793aa37bdf20", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "62a33b28-a4e7-5cc1-a702-af12f2537896", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Property and Parcel Annotation Text Feature Table", "alttitle": "PR_ANNOTEXT_FEATURECODE", "tempextentbegin": "2023-01-24T00:04:09+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:09+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42142\", \"uuid\": \"62a33b28-a4e7-5cc1-a702-af12f2537896\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Property and Parcel Annotation Text Feature Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008774", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c0ab2dad5b5712975cac792619c6272c9f815974", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "02de2616-f276-5e16-a15f-028437f77b49", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Address Class Table", "alttitle": "ADDRESS_CLASS", "tempextentbegin": "2023-01-24T00:04:10+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:10+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42143\", \"uuid\": \"02de2616-f276-5e16-a15f-028437f77b49\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Address Class Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008749", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ade65f5d8eddd970661bc6d046ee003f7b0c30ae", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "013295b1-dd42-56ff-b24d-1a9af36b9286", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-06-08", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "SPRING_LOCATIONS_XX", "alttitle": "SPRING_LOCATIONS_XX", "tempextentbegin": "2004-02-29T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Primary Industries", "tempextentend": "2023-01-24T00:04:10+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36065\", \"uuid\": \"013295b1-dd42-56ff-b24d-1a9af36b9286\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-06-08\", \"changeDate\": \"2017-06-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "SPRING_LOCATIONS_XX", "abstract": "SPRING_LOCATIONS_XX", "anzlicid": "ANZVI0803005740", "geonet_info_createdate": "2017-06-08", "revisiondate": "2017-06-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "37e5205e90bccebd08c05c634b8cb343ad39d5d4", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "804dc569-a9a3-57d5-b2c5-42c783714970", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Feature Type Table", "alttitle": "FT_FEATURE_TYPE", "tempextentbegin": "2023-01-24T00:04:10+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:10+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42144\", \"uuid\": \"804dc569-a9a3-57d5-b2c5-42c783714970\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Feature Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008764", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2eb6e1ec30596fe916630ec58060a9337dc8b6d2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f820e396-84ac-598c-9c73-f0305a028783", "publicationdate": "2023-01-17", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-12-02", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Recreation Historic Relics", "alttitle": "RECWEB_HISTORIC_RELIC", "tempextentbegin": "2013-07-17T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:10+00:00", "maintenanceandupdatefrequency_text": "Daily", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36067\", \"uuid\": \"f820e396-84ac-598c-9c73-f0305a028783\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-16\", \"changeDate\": \"2022-12-02\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Recreation Historic Relics", "abstract": "Recreation historic relic dataset describes historic relics suitable for public visitation (such as timber tramways, old sawmill sites etc) that are promoted for visitation. The recreation historic relics within State Forest have been captured and recorded with a Trimble Pro XR GPS and are actively promoted to the public and maintained by the Department of Environment, Land, Water and Planning.\n\n* recweb", "anzlicid": "ANZVI0803005216", "geonet_info_createdate": "2019-05-16", "revisiondate": "2022-12-02", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "13418158c061bcc44a5f759ba8656e1946639f6f", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "92a0cf3a-dbec-51d3-8ef0-1887b6e84603", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Address Geocode Feature Table", "alttitle": "ADDRESS_GEOCODE_FEATURE", "tempextentbegin": "2023-01-24T00:04:11+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:11+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42145\", \"uuid\": \"92a0cf3a-dbec-51d3-8ef0-1887b6e84603\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Address Geocode Feature Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008752", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ff9b48caa6565899f14b65907fcf2cf649dc3759", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d1009abb-2b9b-5e63-a631-55fec2905712", "publicationdate": "2018-06-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-06-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Position - Survey Control - GDA94 to GDA2020 Transformation Sample Point", "alttitle": "GDA94_GDA2020_SAMPLE_POINT", "tempextentbegin": "2023-01-24T00:04:28+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:28+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36124\", \"uuid\": \"d1009abb-2b9b-5e63-a631-55fec2905712\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-01-15\", \"changeDate\": \"2022-06-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Position - Survey Control - GDA94 to GDA2020 Transformation Sample Point", "abstract": "This dataset includes GDA94 and GDA2020 coordinates derived in different ways:\n- GDA94 coordinates from the Victorian Survey Control Network Adjustment\n- GDA2020 coordinates from the National Adjustment \n- GDA2020 coordinates derived by applying the conformal grid to the GDA94 coordinates\n- GDA2020 coordinates derived by applying the distortion + conformal grid to the GDA94 coordinates\n- GDA2020 coordinates derived by applying the 7 parameter transformation to the GDA94 coordinates", "anzlicid": "ANZVI0803005834", "geonet_info_createdate": "2018-01-15", "revisiondate": "2022-06-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c4ec2d782d80334ccd019548af7b4ccafa813b99", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "48d03335-0ee2-5107-838a-630808cf0f09", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-05-18", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": ".", "type": "dataset", "title": "Index of Stream Condition", "alttitle": "ISC_REACH", "tempextentbegin": "2003-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2003-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36125\", \"uuid\": \"48d03335-0ee2-5107-838a-630808cf0f09\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-05-18\", \"changeDate\": \"2015-05-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Index of Stream Condition", "abstract": "Rates each section of major rivers according to a defined set of rules.", "anzlicid": "ANZVI0803002935", "geonet_info_createdate": "2015-05-18", "revisiondate": "2015-05-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "cc6282d270b33ab1bab1dbc529f8a02a053fe51d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2d19643b-7e57-5e2b-8d9a-44d16fb09804", "publicationdate": "2018-02-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-02-06", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Victorian Wetlands listed in - A Directory of Important Wetlands in Australia", "alttitle": "WETLANDDIR", "tempextentbegin": "2000-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2001-11-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36128\", \"uuid\": \"2d19643b-7e57-5e2b-8d9a-44d16fb09804\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-02-06\", \"changeDate\": \"2019-02-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Wetlands listed in - A Directory of Important Wetlands in Australia", "abstract": "This layer contains Victorian wetlands listed in the 3rd Edition of 'A Directory of Important Wetlands of Australia' (2001). Descriptions for each wetland are available in the directory which is available on the Environment Austalia website at:\nhttp://www.ea.gov.au/water/wetlands/database/index.html \nThese wetlands are derived from the WETLAND_1994 CGDL layer, hydrological CGDL layer and other sources such as topographic maps.\nThe 2017 update of the Victorian Wetland Inventory (Current) resulted in improved accuracy of the boundary of a number of wetlands, based on on-ground mapping. WETLAND_CURRENT provided the source data to improve the WETLANDDIR dataset.", "anzlicid": "ANZVI0803002376", "geonet_info_createdate": "2019-02-06", "revisiondate": "2019-02-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a7a9047c8205bda59f4e666581797cb50a509ab8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "58e37f86-9930-5437-b2bd-d3ca090387b3", "publicationdate": "2022-05-24", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "type": "dataset", "title": "EPA Victoria Victorian Landfill Register (VLR) - Location Points", "alttitle": "VLR_POINT", "tempextentbegin": "1905-11-30T14:00:00+00:00", "resowner": "Environment Protection Authority Victoria", "tempextentend": "2019-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36131\", \"uuid\": \"58e37f86-9930-5437-b2bd-d3ca090387b3\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-08-15\", \"changeDate\": \"2020-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "EPA Victoria Victorian Landfill Register (VLR) - Location Points", "abstract": "The Victorian Landfill Register created by EPA in 2018 lists all current and known closed landfills in Victoria and creates a strong foundation for building a complete and comprehensive landfill register for Victorians. Landfills can cause contamination, but once a landfill is closed, operators are obliged to rehabilitate and manage their sites. Even when closed, careful management of sites is required. Many rehabilitated landfills are now safe parks and public spaces, enjoyed by the community.\n\nThe register draws information from various sources and all sites listed undergo verification before inclusion on the register. \n\nWhile this public register will make landfill information more available, it should not be used as the only source of information when making important decisions. EPA will continue to build on the register, adding information and improving the service.\n\nThis dataset mirrors the VLR data available on EPA's website, but may not be up to date due to data transfer processes. For the most up to date VLR data, go to EPA's website to view directly as an interactive map through NationalMap or be downloaded in a variety of file formats.", "anzlicid": "ANZVI0803005874", "geonet_info_createdate": "2019-08-15", "revisiondate": "2020-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5ede9c7d3d1f671410a4949dfb0ad13f91472ae1", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3aba3f15-e372-5c7a-a2eb-739f699f7edd", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Infrastructure Sports Type Table", "alttitle": "IN_SPORTS_TYPE", "tempextentbegin": "2023-01-24T00:04:12+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:12+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42147\", \"uuid\": \"3aba3f15-e372-5c7a-a2eb-739f699f7edd\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Infrastructure Sports Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008770", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "810b56fa39719adba498554a476238f1d33b9ece", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9865fbdf-8f54-5cc3-a79b-95c1d39ab7a6", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Infrastructure Utility Function Table", "alttitle": "IN_ALL_UTILITY_FUNCTION", "tempextentbegin": "2023-01-24T00:04:14+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:14+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42151\", \"uuid\": \"9865fbdf-8f54-5cc3-a79b-95c1d39ab7a6\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Infrastructure Utility Function Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008768", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e5611bb2c85fde756c6628f8a2a1de25789a238c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "60bfa03f-4a74-5d8e-82a3-c55cd8dac79e", "publicationdate": "2022-07-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-28", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "shapefile ArcSDE", "type": "dataset", "title": "Melbourne Water Retailers", "alttitle": "MELBOURNE_WATER_RETAILER", "tempextentbegin": "2007-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33960\", \"uuid\": \"60bfa03f-4a74-5d8e-82a3-c55cd8dac79e\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-11-30\", \"changeDate\": \"2022-07-28\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Melbourne Water Retailers", "abstract": "Boundaries defining the approximate jurisdiction of the Melbourne Water Retailers.\nOn 1 July 2021, Greater Western Water was formed by merging Western Water and City West Water.", "anzlicid": "ANZVI0803005831", "geonet_info_createdate": "2018-11-30", "revisiondate": "2022-07-28", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7755632aa0d9fe06ffe3aca2ae4c71ae34606c20", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "8f11f330-8db1-5188-8fb6-9ccb620132df", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-01-10", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Priority Rivers 2008", "alttitle": "ASSET_PRIORITY_RIVERS_2008", "tempextentbegin": "2012-03-19T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2012-03-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;planned", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36082\", \"uuid\": \"8f11f330-8db1-5188-8fb6-9ccb620132df\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-01-10\", \"changeDate\": \"2019-01-10\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "unclassified", "defaulttitle": "Priority Rivers 2008", "abstract": "Old priority rivers and estuaries layers were supplied for the Priority Rivers 2008.\nPlease Note that the spatial accuracy of the data is incorrect. There is a shift in numerous areas of up to 200m within the data. This discrepancy is not uniformed within the data.\nThe Water group will be creating a new layer sometime in 2012.\nThe information on values and threats for the priority rivers\nand estuaries all sits with individual CMAs on their old RiVERS databases. If RCS\nmanagers need to know the values and threats for the priority assets they need\nto work directly with their waterway manager in their CMA.", "anzlicid": "ANZVI0803004555", "geonet_info_createdate": "2019-01-10", "revisiondate": "2019-01-10", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "453e2e8e764113a419e03e38ff86b50b2f16bb7f", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0d3e3c3a-a3cd-583f-88e7-0128801acade", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Feature Subtype Table", "alttitle": "FEATURE_SUBTYPE_TABLE", "tempextentbegin": "2023-01-24T00:04:15+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:15+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42152\", \"uuid\": \"0d3e3c3a-a3cd-583f-88e7-0128801acade\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Feature Subtype Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008761", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "88930a57e7fe934bdb96648cf3c3964e3ac00f6a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "8c8b7ae3-108c-5e9a-8086-e184a1963f68", "publicationdate": "2018-10-11", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-11-19", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Bedrock Outcrop", "alttitle": "BEDROCK_OUTCROP", "tempextentbegin": "2012-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2017-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36083\", \"uuid\": \"8c8b7ae3-108c-5e9a-8086-e184a1963f68\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2019-11-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Bedrock Outcrop", "abstract": "Spatial extent of areas in Victoria where the consolidated bedrock is exposed to the surface. This is usually due to geological activity such as faulting or erosion.", "anzlicid": "ANZVI0803005944", "geonet_info_createdate": "2019-11-19", "revisiondate": "2019-11-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1777e358892b3d4f08388bb086ef95176493bf19", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "be15bc57-a614-5df1-a2a7-2e8d39fe6d1b", "publicationdate": "2021-08-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "PTV Metro Tram Routes", "alttitle": "PTV_METRO_TRAM_ROUTE", "tempextentbegin": "2018-02-28T13:00:00+00:00", "resowner": "Department of Transport", "tempextentend": "2023-01-24T00:04:15+00:00", "maintenanceandupdatefrequency_text": "Quarterly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33961\", \"uuid\": \"be15bc57-a614-5df1-a2a7-2e8d39fe6d1b\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-02\", \"changeDate\": \"2022-02-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "PTV Metro Tram Routes", "abstract": "This layer depicts a spatial object (polyline) representing metropolitan tram routes. Each polylines represents a unique route variation. Each route has attributes that describe route, trip headsign (direction), route length, first/last stop, number of stops and operator name. The data has been generated from the PTV GTFS data with extra attributes from PTV's TransNet database. \nThis dataset supersedes \"PTV_TRAM_ROUTE\".\nThis dataset was first loaded into the VSDL in March 2018 and will be updated approximately quarterly.", "anzlicid": "ANZVI0803005849", "geonet_info_createdate": "2018-03-02", "revisiondate": "2022-02-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6b33d38bb993d8257b92ab756d29126660396658", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "732423a6-f0f0-5027-bad8-174f68e9bb64", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "GIPSLAND LAKES 1% AEP MSL INUNDATION", "alttitle": "GL_1AEP_MSL_EXTENT", "tempextentbegin": "2012-10-11T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-04-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;climatology, meteorology, atmosphere;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36084\", \"uuid\": \"732423a6-f0f0-5027-bad8-174f68e9bb64\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-09-27\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "GIPSLAND LAKES 1% AEP MSL INUNDATION", "abstract": "The GIPPSLAND LAKES Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Gippsland Lakes coastal environment.\n\nThe data represents the extent of the 1% Average Exceedance Probability (AEP) water level within the Gippsland Lakes, incorporating existing mean sea level (MSL) conditions based on hydrodynamic modelling. The 1% AEP water level conditions comprise of a combination of catchment generated inflows, coastal ocean levels and wind setup. \n\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.", "anzlicid": "ANZVI0803005603", "geonet_info_createdate": "2018-09-27", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1710dced5198bb9d0f090cd3cda993bef47f7f63", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0aa541e7-1d37-50a9-9e55-e156a18fb366", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Address Feature Quality Table", "alttitle": "ADDRESS_FEATURE_QUALITY", "tempextentbegin": "2023-01-24T00:04:18+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:18+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42156\", \"uuid\": \"0aa541e7-1d37-50a9-9e55-e156a18fb366\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Address Feature Quality Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008750", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "100c4f645d5e18afa00038c0320e3cb6f4699a0c", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a83c453c-84bf-59c9-9f24-0532688359d2", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Airport Hierarchy Table", "alttitle": "TR_AIRPORT_HIERARCHY", "tempextentbegin": "2023-01-24T00:04:18+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:18+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42157\", \"uuid\": \"a83c453c-84bf-59c9-9f24-0532688359d2\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Airport Hierarchy Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008781", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6e68854c5d638d07f1430f6581d05fb3082582ab", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "63051886-510f-533e-8afc-5dcc2a44af3e", "publicationdate": "2019-08-26", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-02-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, Digital - MapInfo (planned for 2001), Non digital - plotted maps", "type": "dataset", "title": "Regolith Regional type polygons (1:100,000)", "alttitle": "RRREGO100_POLYGON", "tempextentbegin": "2001-06-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36095\", \"uuid\": \"63051886-510f-533e-8afc-5dcc2a44af3e\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-09\", \"changeDate\": \"2016-02-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Regolith Regional type polygons (1:100,000)", "abstract": "The data contains primary geological data, namely regolith-landform units and boundary types separating regolith-landform units.\n\nThe dataset is part of the geological mapping dataset, which includes datasets representing geological rock units and boundaries, regolith-landform units and boundaries, structural lines, miscellaneous lines and points, miscellaneous polygons, metamorphism and placer deposits.\n\nThe data have been collected by the Geological Survey of Victoria. Data have been captured in projects covering special interest areas, and have been recorded in the field by hand at scales between 1:10,000 and 1:25,000 then prepared for hard copy printing at a range of scales.", "anzlicid": "ANZVI0803003393", "geonet_info_createdate": "2016-02-09", "revisiondate": "2016-02-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9905957c8bdf8f87aee677ca1003f69b8b0ecf54", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "4f4420a5-2c75-571b-8eaa-b38a80aef7d9", "publicationdate": "2022-10-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-06-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Planning - Codelist Table", "alttitle": "PLAN_CODELIST", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:20+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36099\", \"uuid\": \"4f4420a5-2c75-571b-8eaa-b38a80aef7d9\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-09\", \"changeDate\": \"2021-06-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Planning - Codelist Table", "abstract": "This dataset consists of an aspatial table that links the attribute \"zone_num\" with the full planning scheme descriptions. \n\nThis layer is attributed with:\n- zone number\n- zone code\n- description\n- legend groupings (4 separate attributes)\n- scheme type\n- RGB colour values", "anzlicid": "ANZVI0803002913", "geonet_info_createdate": "2019-09-09", "revisiondate": "2021-06-16", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9ab6b5a7f00934bce7297bec3ebbd5c49017230a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3508ad58-e66b-50e4-9717-0338845ded77", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available.", "type": "dataset", "title": "Victorian Bioregions - Mapped at 1:100,000 (version 3.0 - May2004)", "alttitle": "VBIOREG100", "tempextentbegin": "2001-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2002-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36100\", \"uuid\": \"3508ad58-e66b-50e4-9717-0338845ded77\", \"schema\": \"iso19115-3\", \"createDate\": \"2010-01-08\", \"changeDate\": \"2021-08-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Bioregions - Mapped at 1:100,000 (version 3.0 - May2004)", "abstract": "This dataset delineates Victorian biogeographic regions (Victorian bioregions) that capture the patterns of ecological characteristics in the landscape, providing a natural framework for recognising and responding to biodiversity values. Victorian bioregions form part of the national framework for the terrestrial environment, the Interim Biogeographic Regionalisation for Australia (IBRA). The boundaries are aligned with pre-1750 ecological vegetation class boundaries mapped at 1:100,000. The dataset upgrades the VBIOREGION250 dataset which was primarily based in 1:250,000 landsystem boundaries.", "anzlicid": "ANZVI0803002636", "geonet_info_createdate": "2010-01-08", "revisiondate": "2021-08-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4e7cd1751819dce7aa77f86032d48e3544db227e", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3a99ba15-bdba-5b32-882e-89988ba05a9b", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Mapping Scale Use Table", "alttitle": "SCALE_USE", "tempextentbegin": "2023-01-24T00:04:21+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:21+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42162\", \"uuid\": \"3a99ba15-bdba-5b32-882e-89988ba05a9b\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Mapping Scale Use Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008778", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f137aa2dec364061108c53704c7e8733cd120c70", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "545fbaea-7617-5aa0-9deb-76534ac49465", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Address Location Descripton Table", "alttitle": "ADDRESS_LOCATION_DESCRIPTOR", "tempextentbegin": "2023-01-24T00:04:22+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:22+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42164\", \"uuid\": \"545fbaea-7617-5aa0-9deb-76534ac49465\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Address Location Descripton Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008754", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9a256ce6c47860d48320c778353b0a981c10d565", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e5e52c37-a5bb-5e65-b3ff-1d043f0f2305", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Crown Land Managment Tenure Description Table", "alttitle": "CL_TENURE_DESC", "tempextentbegin": "2023-01-24T00:04:23+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:23+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42166\", \"uuid\": \"e5e52c37-a5bb-5e65-b3ff-1d043f0f2305\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Crown Land Managment Tenure Description Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008758", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0e2926f3dcd68b022d62b78581437dd4693b78bf", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ad7ccd98-56ff-583a-92bb-141cdda06e74", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Vicmap Lite Airport Hierarchy Table", "alttitle": "VL_AIRPORT_HIERARCHY", "tempextentbegin": "2023-01-24T00:04:24+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:24+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42168\", \"uuid\": \"ad7ccd98-56ff-583a-92bb-141cdda06e74\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-20\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Vicmap Lite Airport Hierarchy Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008783", "geonet_info_createdate": "2020-11-20", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "62397e0936b5568c933807119946577f97d5c847", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "579d189a-cdd6-5d1b-a02c-3c6f2ce5662c", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Crown Land Tenure - Crown Land Management Tenure Polygon", "alttitle": "CL_TENURE_VIEW", "tempextentbegin": "1990-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:27+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33983\", \"uuid\": \"579d189a-cdd6-5d1b-a02c-3c6f2ce5662c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Crown Land Tenure - Crown Land Management Tenure Polygon", "abstract": "NOTE: This layer is current up to August 2011.\n\nPart of the Vicmap Crown Land Tenure dataset series. This is a statewide dataset that plays a key role in the management of Victoria's Crown land. It has been created (June 2003 - Feb 2004) from migrating LCMP layers into the Vicmap structure.\n\nThe layer provides information about the Private use of Crown land Parcels and Crown Roads.\n\nThe database is continually maintained, obtaining maintenance from authoritative sources within State Government.\n\nCL_TENURE_VIEW contains a number of Tenure types including:\n- (A) Agricultural including Unused Road licences, Water Frontage licences and Grazing licences,\n- (L) Lease including Commercial type leases,\n- (G) General Licences including miscellaneous community use licences, permits & consents\n- (P) Pipe including Water supply pipelines,\n- (RM) Reserve including land gazetted as a Reserve in Government Gazettes,\n- Tenure Identifiers, Tenure type identifiers and Tenure code identifiers.\n- Unique feature identifiers, date stamps and data quality information.\n- Cross reference to Vicmap Property.", "anzlicid": "ANZVI0803002916", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1139d5f26e9c5adaa80fe5ab66b9378185e1a42a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d257574b-6630-51f1-a53e-a9a23c0de1c8", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-12-15", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "product", "title": "Vicmap Features of Interest", "alttitle": "VICMAP_FEATURES_OF_INTEREST", "tempextentbegin": "2009-04-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:03+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "location;structure;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33940\", \"uuid\": \"d257574b-6630-51f1-a53e-a9a23c0de1c8\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-05-12\", \"changeDate\": \"2022-12-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Features of Interest", "abstract": "Vicmap Features of Interest Product contains a series of datasets.\nThis dataset series contains a range of features of interest represented by points, lines and/or polygons within Victoria. \nDatasets in the series are listed below. See their metadata entries for more detailed metadata.\nVMFEAT_FOI_INDEX_CENTROID\nVMFEAT_FOI_INDEX_EXTENT\nVMFEAT_FOI_LINE\nVMFEAT_FOI_POINT\nVMFEAT_FOI_POLYGON\nVMFEAT_LOCALITY_POINT\nRegister of Geographic Names - Vicmap Features of Interest (GNR);\nBuilt Up area - Vicmap Features of Interest (PL_PLACE_AREA_POLYGON);\nBuilding Point (VMFEAT_BUILDING_POINT);\nBuilding Poly (VMFEAT_BUILDING_POLY):", "anzlicid": "ANZVI0803003646", "geonet_info_createdate": "2020-05-12", "revisiondate": "2022-12-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "3433aabc89d6023b2f1789844def2a6060af8c66", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "75305b63-7a03-523f-a8d1-3b54718b9c28", "publicationdate": "2021-09-17", "publishedforgroup": "0;12264", "geonet_info_changedate": "2018-11-26", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI Shape", "type": "dataset", "title": "Oil and Gas Fields", "alttitle": "OILGAS", "tempextentbegin": "2001-06-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2017-08-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33945\", \"uuid\": \"75305b63-7a03-523f-a8d1-3b54718b9c28\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-11-26\", \"changeDate\": \"2018-11-26\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Oil and Gas Fields", "abstract": "Oil and Gas fields as supplied by Petroleum Section within Minerals and Petroleum Division in the Department of Primary Industries.", "anzlicid": "ANZVI0803002448", "geonet_info_createdate": "2018-11-26", "revisiondate": "2018-11-26", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b8857e88f609b0bb9308f4e0b2226ac80ff52ade", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5330c00b-2083-50cc-b532-4406c1d57901", "publicationdate": "2018-02-01", "publishedforgroup": "12264;0", "geonet_info_changedate": "2019-05-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Not Known", "type": "dataset", "title": "Victorian Land Use Information System 2006/2007", "alttitle": "LANDUSE_2006", "tempextentbegin": "2005-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2007-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33996\", \"uuid\": \"5330c00b-2083-50cc-b532-4406c1d57901\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-14\", \"changeDate\": \"2019-05-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Land Use Information System 2006/2007", "abstract": "The Victorian Land Use Information System (VLUIS) dataset has been created by the Spatial Information Sciences Group of the Agriculture Research Division in the Department of Economic Development, Jobs, Transport, and Resources. The method used to create VLUIS is significantly different to traditional methods used to create land use information and has been designed to create regular and consistent data over time. It covers the entire landmass of Victoria and separately describes the land tenure, land use and land cover for each cadastral parcel across the state, biennially for land tenure and use and annually for land cover; for each year from 2006 to 2015. The data is in the form of a feature class. \n\nTo use the VLUIS data correctly it is important to understand the difference between the three components of VLUIS. The Guidelines for land use mapping in Australia: principles, procedures and definitions, Edition 3 published in 2006 by the Commonwealth of Australia, defines them as follows: \nLand tenure is the ownership and leasehold interests in land (VLUIS only reports ownership). Land use means the purpose to which the land cover is committed or the property type. Land cover refers to the physical surface of the earth, including various combinations of vegetation types, soils, exposed rocks and water bodies as well as anthropogenic elements, such as agriculture and built environments. \nThe Victorian Land Use Information System (VLUIS) is an ongoing project designed to maintain and manage the Victorian land use mapping dataset.\n\nThe methodology is still being refined and as such the dataset is subject to improvements and the release of later versions. It is important you speak to the custodian to be advised of the technical details of the dataset and its utility for your desired use. \n\nLand cover classification accuracy varies between classes and the overall classification accuracy may be misleading in terms of the accuracy of an individual class. Users are asked to contact the data custodians for detailed class accuracy information if required for their purposes.\n\nIrrigation activity is included when available. The data was not available in 2006-07 and there was incomplete coverage in 2012-13 and therefore the irrigation activity was not included in either of those datasets.\n\nThe dataset does not replace LandUse100 which is still valid for the time in which it was created (1996 - 2005).\n\nA metadata statement, for the VLUIS 2006/07 product, and ESRI symbology files for the data can be freely downloaded from the VLUIS project page:\nhttp://vro.depi.vic.gov.au/dpi/vro/vrosite.nsf/pages/vluis\n\nDOI: http://dx.doi.org/10.5061/dryad.n08t0", "anzlicid": "ANZVI0803005383", "geonet_info_createdate": "2019-05-14", "revisiondate": "2019-05-14", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "675704392ccc19c62f643935b1269e0998a7de9a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5a3bec68-69ea-5596-9d07-f414faff39b6", "publicationdate": "2021-11-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-18", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Estuaries", "alttitle": "ESTUARIES", "tempextentbegin": "2001-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-02-07T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36134\", \"uuid\": \"5a3bec68-69ea-5596-9d07-f414faff39b6\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-06\", \"changeDate\": \"2021-11-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Estuaries", "abstract": "Areas of estuarine waters derived and updated by the Index of Estuary Condition funded by the Department Environment, Land, Water and Planning. Underlying estuarine areas were produced by Deakin University as part of the projects: \"Linking catchments to the sea: Understanding how human activities impact on Victorian estuaries\" funded by the National Heritage Trust (Barton et al., 2008) and the Department of Sustainability and Environment and the Trial Implementation of the Index of Estuary Condition, funded by the Department of Sustainability and Environment and Deakin University (Pope et al., 2015).", "anzlicid": "ANZVI0803003703", "geonet_info_createdate": "2015-11-06", "revisiondate": "2021-11-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "405a98342eb0ba02842efe4f197470290fec873c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "74130d00-be40-5993-9455-5c651ba5717f", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Land Systems of Victoria at 1:250 000", "alttitle": "LSYS250", "tempextentbegin": "1949-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:02+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36037\", \"uuid\": \"74130d00-be40-5993-9455-5c651ba5717f\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-04-07\", \"changeDate\": \"2021-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Land Systems of Victoria at 1:250 000", "abstract": "The land systems of Victoria, as described and delineated by Rowan in 1989, provide a statewide coverage of land types that are applicable to a wide range of land resource management and planning programs. These land systems sit within a geomorphological framework developed by Jenkin and Rowan.\n\nThis data set consolidates a broad range of land resource information drawn from an uneven base to provide a consistent, if limited, coverage of the lands of Victoria. The explicit links with the original sources of data have been retained.\n\nThe data set was developed from a range of studies of varying methodologies and intensities over some forty years. The reliability of the information varies across regions accordingly.\n\nThis edition (3) incorporates new survey material [Shires of West Wimmera, Lowan, West Towong and East Gippsland (east of Snowy River)] as well as changes in the nomenclature with the substitution of broad slope class with relative relief classes (eg. plains, hills, mountains). An addition factor (lithological age) was also added to the key. There is still a link with the Edition 2 version in the main Land Systems table.\n\nMore information on land system mapping can be found on Victorian Resources Online\nhttp://vro.depi.vic.gov.au/dpi/vro/vrosite.nsf/pages/landform_systems\n\nDOI 10.4226/92/58e727e0dd1be", "anzlicid": "ANZVI0803001033", "geonet_info_createdate": "2017-04-07", "revisiondate": "2021-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "231cbd77fa3b84829c27b9f293a6f238eb3b364b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "4d8d7d33-f33b-5d56-82de-7687048e7a16", "publicationdate": "2023-01-22", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-02-25", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All ESRI supported formats available", "type": "dataset", "title": "DSE Roads database - Crossing structures", "alttitle": "RDB_CROSSINGS", "tempextentbegin": "2005-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:39+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34020\", \"uuid\": \"4d8d7d33-f33b-5d56-82de-7687048e7a16\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-05-12\", \"changeDate\": \"2021-02-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "DSE Roads database - Crossing structures", "abstract": "Crossings is the location and description of crossing structures on roads within Public land.\nIt includes bridges, culverts, fords and other crossing types, particularly those requiring maintenance.\nIt is a point feature class, tied to Vicmap Transport lines.\n\nDSE's ROADS database contains information relating to DSE-managed road and crossings assets.\nIt is envisaged that the database be accessible through GIMS asset management system.", "anzlicid": "ANZVI0803003403", "geonet_info_createdate": "2017-05-12", "revisiondate": "2021-02-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "95e3fd2a16740721fb3b6808c9ad3e9d7970475d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "d29b5d2e-57da-50b0-a9a3-6a5b675e808d", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2011-07-22", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "Sensitive view areas within the East Gippsland Forest Management Area", "alttitle": "EG_SENSITIVE_VIEW_AREAS", "tempextentbegin": "2006-01-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2006-01-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36158\", \"uuid\": \"d29b5d2e-57da-50b0-a9a3-6a5b675e808d\", \"schema\": \"iso19115-3\", \"createDate\": \"2011-07-22\", \"changeDate\": \"2011-07-22\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "limitedDistribution", "defaulttitle": "Sensitive view areas within the East Gippsland Forest Management Area", "abstract": "This layer shows the location of sensitive view areas and major lookouts in the East Gippsland FMA.\n\nThis layer should be used in conjunction with two other layers EG_SCENIC_DRIVE_NETWORK and EG_SENSITIVE_RIDGELINES.\n\nThe East Gippsland Forest Management Plan acknowledges that while timber harvesting is the mainstay of the local economy, harvested areas should not dominate visitor's experience and their impressions of the forest. One component of landscape protection outlined in the Plan is the importance of coupe design and timimg to ensure that harvesting which is conducted in highly visible areas as seen from lookouts or vantage points (sensitive view areas) is visually minimised. Map 22 of the Proposed East Gippsland Forest Management Plan clearly shows the areas which are highly visible from lookouts or vantage points in the East Gippsland FMA. Map 26 of the East Gippsland Forest Management Plan shows the location of major lookouts within the East Gippsland Forest Management Area. In 2006 the Landscape Management Guidelines EGFMA were developed which included the creation of this digital arcview layer using the information from map 22 and map 26.", "anzlicid": "ANZVI0803004456", "geonet_info_createdate": "2011-07-22", "revisiondate": "2011-07-22", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "60c782ae9588d66a51a2db7ac90c04fa7f1c5fa2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e7e8d36e-9e6a-5487-abdb-59ce3b97fef6", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-11-18", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Potential Groundwater Dependent Ecosystem (GDE) Mapping for the Wimmera CMA", "alttitle": "GDE_TERR_WCMA", "tempextentbegin": "1995-01-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2005-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;biota;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34026\", \"uuid\": \"e7e8d36e-9e6a-5487-abdb-59ce3b97fef6\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-11-18\", \"changeDate\": \"2013-11-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Potential Groundwater Dependent Ecosystem (GDE) Mapping for the Wimmera CMA", "abstract": "Potential Groundwater Dependent Ecosystems (GDE) are ecosystems identified within the landscape as likely to be at least partly dependent on groundwater. State-wide screening analysis was performed to identify locations of potential terrestrial GDEs, including wetland areas. The GDE mapping was developed utilising satellite remote sensing data, geological data and groundwater monitoring data in a GIS overlay model. Validation of the model through field assessment has not been performed. The method has been applied for all of Victoria and is the first step in identifying potential groundwater dependent ecosystems that may be threatened by activities such as drainage and groundwater pumping. The dataset specifically covers the Wimmera Catchment Management Authority (CMA) area. The method used in this research is based upon the characteristics of a potential GDE containing area as one that:\n1. Has access to groundwater. By definition a GDE must have access to groundwater. For GDE occurrences associated with wetlands and river systems the water table will be at surface with a zone of capillary extension. In the case of terrestrial GDE's (outside of wetlands and river systems), these are dependent on the interaction between depth to water table and the rooting depth of the vegetation community.\n2. Has summer (dry period) use of water. Due to the physics of root water uptake, GDEs will use groundwater when other sources are no longer available; this is generally in summer for the Victorian climate. The ability to use groundwater during dry periods creates a contrasting growth pattern with surrounding landscapes where growth has ceased.\n3. Has consistent growth patterns, vegetation that uses water all year round will have perennial growth patterns.\n4. Has growth patterns similar to verified GDEs. \nThe current mapping does not indicate the degree of groundwater dependence, only locations in the landscape of potential groundwater dependent ecosystems. This dataset does not directly support interpretation of the amount of dependence or the amount of groundwater used by the regions highlighted within the maps. Further analysis and more detailed field based data collection are required to support this.\n\nThe core data used in the modelling is largely circa 1995 to 2005. It is expected that the methodology used will over estimate the extent of terrestrial GDEs. There will be locations that appear from EvapoTranspiration (ET) data to fulfil the definition of a GDE (as defined by the mapping model) that may not be using groundwater. Two prominent examples are: 1. Riparian zones along sections of rivers and creeks that have deep water tables where the stream feeds the groundwater system and the riparian vegetation is able to access this water flow, as well as any bank storage contained in the valley alluvials. 2. Forested regions that are accessing large unsaturated regolith water stores.\nThe terrestrial GDE layer polygons are classified based on the expected depth to groundwater (ie shallow <5 m or deep >5 m). Additional landscape attributes are also assigned to each mappnig polygon.\n\nIn 2011-2012 a species tolerance model was developed by Arthur Rylah Institute, collaborating with DPI, to model landscapes with ability to support GDEs and to provide a relative measure of sensitivity of those ecosystems to changes in groundwater availability and quality. Rev 1 of the GDE mapping incorporates species tolerance model attributes for each potential GDE polygon and attributes for interpreted depth to groundwater.\n\nSeparate datasets and associated metadata records have been created for GDE species tolerance.", "anzlicid": "ANZVI0803005169", "geonet_info_createdate": "2013-11-18", "revisiondate": "2013-11-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "cb9a6728e5d6dfc009f57b896cc2f773b4965b72", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "07c6d541-2b02-5a3a-9bf8-a6f5a7d70bf2", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-02-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, Digital - ArcView, Digital - MapInfo", "type": "dataset", "title": "Geological zones of contact metamorphism (1:100,000)", "alttitle": "CONMETA100_POLYGON", "tempextentbegin": "1969-12-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34028\", \"uuid\": \"07c6d541-2b02-5a3a-9bf8-a6f5a7d70bf2\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-09\", \"changeDate\": \"2016-02-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological zones of contact metamorphism (1:100,000)", "abstract": "The data displays areas of contact and regional metamorphism, and the style of metamorphism\n\nThe data have been collected by the Geological Survey of Victoria. The dataset is accompanied by other datasets representing geology outcrop and boundaries, structural lines, miscellaneous lines and points, miscellaneous polygons, and placer deposits.", "anzlicid": "ANZVI0803003384", "geonet_info_createdate": "2016-02-09", "revisiondate": "2016-02-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "28da9e04caefa53a2c009518c696d1ad4d502767", "fields": {"available_formats": "ECW,GeoTIFF,JPEG,JPEG 2000,TIFF", "resclassification": "unclassified", "uuid": "c5c5b1b2-1ec2-5bbb-af6c-6e24d0ee7655", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - GeoTiff", "type": "dataset", "title": "NaturePrint v4.0 Strategic Biodiversity Values", "alttitle": "NATUREPRINT_4_0_SBV", "tempextentbegin": "2016-04-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-04-19T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34050\", \"uuid\": \"c5c5b1b2-1ec2-5bbb-af6c-6e24d0ee7655\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-01-29\", \"changeDate\": \"2021-08-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "NaturePrint v4.0 Strategic Biodiversity Values", "abstract": "Strategic Biodiversity Values (SBV) is one of NaturePrint's decision-support products. It combines information on important areas for threatened flora and fauna, levels of depletion, connectivity, vegetation types and condition to provide a view of relative biodiversity importance of all parts of the Victorian landscape. This integrated information is important because decision-makers need access to an objective, comprehensive and spatially explicit view of the importance of biodiversity assets to enable comparison of locations across Victoria.", "anzlicid": "ANZVI0803005827", "geonet_info_createdate": "2019-01-29", "revisiondate": "2021-08-16", "spatialrepresentationtype_text": "Grid"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e76f269c8b367f8f9f6cf559208efb79438d4555", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "357c687e-512d-5fe3-9386-5eb93b05cc9e", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-11-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - Shapefile", "type": "dataset", "title": "Geological boundaries represented as two dimensional lines (1:250,000)", "alttitle": "SG_GEOL_UNIT_CONTACT_250K", "tempextentbegin": "2005-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2014-08-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36187\", \"uuid\": \"357c687e-512d-5fe3-9386-5eb93b05cc9e\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-11-05\", \"changeDate\": \"2014-11-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological boundaries represented as two dimensional lines (1:250,000)", "abstract": "Geological boundaries represented as two dimensional lines. Other geological features (e.g. fault or dyke) are included where the feature forms a boundary to rock units. The polygon edges are constructed from the corresponding geological contacts and faults layer\n\nThe data have been collected by the GeoScience Victoria.", "anzlicid": "ANZVI0803004694", "geonet_info_createdate": "2014-11-05", "revisiondate": "2014-11-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7f714b487da9fa5964ec19ff7bb246649a3e079e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a6314070-7afa-585a-92ad-470a7635f2fd", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, Non digital - printed map.", "type": "dataset", "title": "Interpreted Lava Flows (1:500,000), Geological Interpretation of Geophysical Features Arc", "alttitle": "GPLAVAFLW500_ARC", "tempextentbegin": "2000-02-29T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2002-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36190\", \"uuid\": \"a6314070-7afa-585a-92ad-470a7635f2fd\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-29\", \"changeDate\": \"2022-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Interpreted Lava Flows (1:500,000), Geological Interpretation of Geophysical Features Arc", "abstract": "This dataset contains Lava flows that have been interpreted either from intersections in drill holes or from magnetic responses.\n\nThe dataset is accompanied by other datasets representing geological boundaries, major faults, lesser faults, dykes and the basin edges.\n\n\nReferences:\n\nMOORE, D.H., 2002. Eastern and central Gippsland Basin, southeast Australia: basement interpretation and basin links. Victorian Initiative for Minerals and Petroleum Report 69, Department of Natural Resources and Environment. \n\nMOORE, D.H., 2002. Basement-basin relationships in the Otway Basin, Victoria, Australia. Victorian Initiative for Minerals and Petroleum Report 78, Department of Natural Resources and Environment.\n\nSIMONS B.A., & MOORE, D.H., 1999. Victoria 1:1 000 000 Pre-Permian Geology. Geological Survey of Victoria.", "anzlicid": "ANZVI0803003412", "geonet_info_createdate": "2018-03-29", "revisiondate": "2022-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fe337aed7b6381f2e37686a7314953127fa9c022", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "7e95626b-0cac-51be-adb2-18f4dbc9e769", "publicationdate": "2019-02-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "GMU", "alttitle": "GMU", "tempextentbegin": "2015-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36192\", \"uuid\": \"7e95626b-0cac-51be-adb2-18f4dbc9e769\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2020-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "GMU", "abstract": "This table is used by the Groundwater Resource Reporting Tool.\n\nIt includes GMAs and WSPAs.", "anzlicid": "ANZVI0803008422", "geonet_info_createdate": "2019-11-19", "revisiondate": "2020-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bdaee9a87d191b4f45a4fd6deb368e5bc0e81ae5", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "e9941a4e-bd57-5c79-a322-2dffee39c30b", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-11-16", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Vicroads Mapbook Pagegrid 1:25,000 Edition 8", "alttitle": "VICROADS_PAGEGRID_25_ED8", "tempextentbegin": "2023-01-24T00:04:51+00:00", "resowner": "VicRoads", "tempextentend": "2023-01-24T00:04:51+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34060\", \"uuid\": \"e9941a4e-bd57-5c79-a322-2dffee39c30b\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-05-20\", \"changeDate\": \"2020-11-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Vicmap Index - Vicroads Mapbook Pagegrid 1:25,000 Edition 8", "abstract": "This dataset is derived from the Vicroads directory and contains the page grid for the 1:25 000 town maps.", "anzlicid": "ANZVI0803004585", "geonet_info_createdate": "2013-05-20", "revisiondate": "2020-11-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8c1f5b23525681850732ae82f96c71550af31570", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "55d8ec52-6bb8-5698-949b-4825b44a66dd", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "1:50 000 AMG Mapsheet Boundaries", "alttitle": "TILE50", "tempextentbegin": "2005-04-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2005-04-19T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36200\", \"uuid\": \"55d8ec52-6bb8-5698-949b-4825b44a66dd\", \"schema\": \"iso19115-3\", \"createDate\": \"2010-03-26\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "1:50 000 AMG Mapsheet Boundaries", "abstract": "1:50 000 Australian Mapgrid Mapsheet Boundaries.", "anzlicid": "ANZVI0803003006", "geonet_info_createdate": "2010-03-26", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "756e5acd957c5bcc381bf61815a6a66e90887d9e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "95b06937-04aa-5928-9a27-0ebe4b4731e0", "publicationdate": "2018-07-17", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-01-04", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All ESRI supported formats available", "type": "dataset", "title": "DSE Roads database - VicForest Toll Roads", "alttitle": "RDB_TOLLROADS", "tempextentbegin": "2011-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:53+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36205\", \"uuid\": \"95b06937-04aa-5928-9a27-0ebe4b4731e0\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-01-04\", \"changeDate\": \"2017-01-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "DSE Roads database - VicForest Toll Roads", "abstract": "Toll Roads are a linear representation of roads on Public land defined by if the road is used by VicForests for their logging operations.\n\nThe underlying linear data is derived from Vicmap Transport Roads. Toll Roads are assigned through a relational database connection and the arcs grouped to simplify data geometry.\n\nDSE's ROADS database contains information relating to DSE-managed road assets.\nIt is envisaged that the database be accessible through GIMS asset management system.", "anzlicid": "ANZVI0803004724", "geonet_info_createdate": "2017-01-04", "revisiondate": "2017-01-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8a1f89fa6ec9462d9b98fb13d310ae4feff2869a", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ecf98a18-329e-5be4-845d-0f67972c6734", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Parcel Standard Parcel Identifier (SPI) Reliability Table", "alttitle": "PR_SPI", "tempextentbegin": "2023-01-24T00:04:54+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:54+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36206\", \"uuid\": \"ecf98a18-329e-5be4-845d-0f67972c6734\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Parcel Standard Parcel Identifier (SPI) Reliability Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003152", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "33e45ed295433d99d017ba1c552928565c6c7a19", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a95c7ad8-f5d2-5a03-8ade-748b9fc1a03a", "publicationdate": "2018-12-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-06-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Aquifer Salinity - Basal", "alttitle": "AQUIFER_SAL_BASAL", "tempextentbegin": "2023-01-24T00:04:55+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:55+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36210\", \"uuid\": \"a95c7ad8-f5d2-5a03-8ade-748b9fc1a03a\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-06-19\", \"changeDate\": \"2013-06-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Aquifer Salinity - Basal", "abstract": "This dataset contains groundwater salinity information for boreholes which had terminated at least 5m and no more than 50m above bedrock. The bores have been extracted predominantly from the Groundwater Management System (GMS) and the State Observation Bore Network (SOBN).\n \nIt should be noted that the analysis undertaken with the salinity data was only of a preliminary nature and should be treated with a critical approach. Local validation of the data (e.g. screen depths) needs to be undertaken in detail.\n \nThe dataset was compiled by GHD to inform the report 'Potential Influences of Geological Structures on Groundwater Flow Systems' for DEPI's Secure Allocation Future Entitlements (SAFE) Project.", "anzlicid": "ANZVI0803005002", "geonet_info_createdate": "2013-06-19", "revisiondate": "2013-06-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e58f2907d35dda547d44303ab91c8c87c21e6232", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6524d691-d254-530e-b691-3b1013172716", "publicationdate": "2018-01-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - all major formats available", "type": "dataset", "title": "Coastal bird habitats on the Victorian coast", "alttitle": "COASTAL_BIRD_HABITAT", "tempextentbegin": "2006-05-31T14:00:00+00:00", "resowner": "Department of Transport", "tempextentend": "2015-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34074\", \"uuid\": \"6524d691-d254-530e-b691-3b1013172716\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-04-04\", \"changeDate\": \"2021-11-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Coastal bird habitats on the Victorian coast", "abstract": "This layer identifies bird habitats in the Victorian coastal region. The layer is a polygon coverage with the polygon areas representing the main area of the respective bird habitats. Sites were identified from a broad range of published and unpublished sources of information and from personal communications made by experts in the field. In 2015 some additional locations were added with data from Birdlife Australia Shorebird 2020 Data. This dataset was formerly know as SHOREBIRD HABITAT but was renamed as it contains sites for seabirds and other birds.", "anzlicid": "ANZVI0803002183", "geonet_info_createdate": "2019-04-04", "revisiondate": "2021-11-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "aaa23ff0fdf3dc80e80ed99fe13dd3b167845bfd", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "eeeffb68-0c39-548e-b9aa-07ab4444021f", "publicationdate": "2022-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital Shapefile", "type": "dataset", "title": "Average Modelled Wind Speeds (m/s) for Victoria", "alttitle": "WIND_SPEED", "tempextentbegin": "2013-05-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2013-05-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36168\", \"uuid\": \"eeeffb68-0c39-548e-b9aa-07ab4444021f\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-04-06\", \"changeDate\": \"2022-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Average Modelled Wind Speeds (m/s) for Victoria", "abstract": "The wind resource has been mapped on a 3 km x 3 km grid across Victoria. Average annual wind speeds have been modelled using the WindScape wind resource mapping tool that was developed by the Wind Energy Research Unit of CSIRO Land and Water in 2002. WindScape uses atmospheric data, and regional topography to model the wind resource at 65 metres above ground level to a resolution of 3 kilometres. The resolution of the modelled wind resource means that it does not incorporate the effects of local landscape features smaller than 3 kilometres in size, like small hills and ridges. This dataset is derived from the same data used to create the overview map of the Victorian wind atlas published by the Sustainable Energy Authority Victoria, c2003", "anzlicid": "ANZVI0803005049", "geonet_info_createdate": "2018-04-06", "revisiondate": "2022-11-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7874e36289be2ee4d776409db2e9484e95de1e23", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "77b2e70f-60b4-5387-b88a-240990838b07", "publicationdate": "2018-10-24", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-11-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "2016 Bellarine Peninsula 1% AEP Coastal Inundation Dynamic Model with 0.2m Sea Level Rise", "alttitle": "BP_DYNAMIC_1AEP_020SLR", "tempextentbegin": "2014-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;geoscientific information;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34033\", \"uuid\": \"77b2e70f-60b4-5387-b88a-240990838b07\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-10-19\", \"changeDate\": \"2022-11-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2016 Bellarine Peninsula 1% AEP Coastal Inundation Dynamic Model with 0.2m Sea Level Rise", "abstract": "The Bellarine-Corio Bay Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Bellarine-Corio Bay coastal environment.\n\nDynamic inundation modelling was carried out to create this data layer for 1% Annual Exceedance Probability (AEP) coastal inundation under the assumption of 0.2 m Sea Level Rise in 2016, for the following study areas along the coast of the Bellarine Peninsula and Greater Geelong area: Barwon Heads / Lake Connewarre; Breamlea; Newcomb; and Queenscliff / Lakers Cutting.\n\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.\n\nAttribute Information: Max_d - Maximum depth (m); max_s - Maximum velocity (m/s); max_vxd - Velocity*Depth Criteria; max_wse - Maximuum water surface elevation (mAHD).", "anzlicid": "ANZVI0803005922", "geonet_info_createdate": "2018-10-19", "revisiondate": "2022-11-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5d4d3b23e9c677f39e49aec77f66c2983c1fec4c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7bb3df75-8ca6-5a33-bba6-7d28ff14d858", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Land Conservation Council Study Areas as applied in 1989", "alttitle": "LCC500_1989", "tempextentbegin": "1994-10-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:42+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "obsolete", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36169\", \"uuid\": \"7bb3df75-8ca6-5a33-bba6-7d28ff14d858\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-08\", \"changeDate\": \"2017-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Obsolete", "mdclassification": "unclassified", "defaulttitle": "Land Conservation Council Study Areas as applied in 1989", "abstract": "This layer contains the line and polygon features depicting the Land Conservation Council Study Area boundaries according to the Statewide Assessment Report of 1989.\n\nThere are no boundaries for Special Investigations included in this dataset.", "anzlicid": "ANZVI0803001100", "geonet_info_createdate": "2017-03-08", "revisiondate": "2017-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d9a6860c236b9dd799f2d5b6f49f9ad67a5976e0", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "89be9d3f-a4fc-55be-888b-94e12283e5f6", "publicationdate": "2020-11-04", "publishedforgroup": "12264;0", "geonet_info_changedate": "2014-11-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - Shapefile", "type": "dataset", "title": "Shear displacement structures (1:250,000)", "alttitle": "SG_SHEAR_DISPLACE_STRUC_250K", "tempextentbegin": "2005-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2014-08-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34038\", \"uuid\": \"89be9d3f-a4fc-55be-888b-94e12283e5f6\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-11-05\", \"changeDate\": \"2014-11-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Shear displacement structures (1:250,000)", "abstract": "Shear displacement structures. Other geological features (e.g. fault or dyke) are included where the feature forms a boundary to rock units. The lines are constructed from the corresponding geological contacts and faults layer\n\nThe data have been collected by the GeoScience Victoria.", "anzlicid": "ANZVI0803004695", "geonet_info_createdate": "2014-11-05", "revisiondate": "2014-11-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c927970ea36fb592b9dba72ce5cfd3ff07c8d656", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d3879f1d-490b-5e96-876b-63711a600094", "publicationdate": "2022-08-06", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Fire history overlay of most recent fires only showing scars", "alttitle": "FIRE_HISTORY_SCAR_LASTBURNT", "tempextentbegin": "1899-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:04:46+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34044\", \"uuid\": \"d3879f1d-490b-5e96-876b-63711a600094\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-08-23\", \"changeDate\": \"2022-08-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Fire history overlay of most recent fires only showing scars", "abstract": "This layer has been derived from FIRE_HISTORY data and represents the spatial extent of the last fires recorded, primarily on public land. The layer stores details of the last time an area was known to be burnt by wildfire or prescribed burning and represents a consecutive overlay of all FIRE_HISTORY layers, from older fire seasons to the most recent fire seasons. The data will show fire scars but not severity.\n\nThis data set is current to 2021/22 fire season.", "anzlicid": "ANZVI0803008514", "geonet_info_createdate": "2019-08-23", "revisiondate": "2022-08-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4ac2409226c08070600e6c13e0ed43fc4ccf91eb", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7c845620-0393-55fd-a560-104f91ea5588", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-11-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Flood levee spot heights as at 2000", "alttitle": "LEVEE_SPOTHEIGHT", "tempextentbegin": "1869-12-31T14:20:08+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "1999-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34118\", \"uuid\": \"7c845620-0393-55fd-a560-104f91ea5588\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-09-21\", \"changeDate\": \"2022-11-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Flood levee spot heights as at 2000", "abstract": "Point features showing recorded spot heights of flood levees relevant to flood mapping projects. \n\nThis layer may be used with levee lines to show location and condition of levees and their height. For flood modelling and management of levee infrastructure.\n\nNote:\n- The nodes in the lines (arcs) can be attributed with height where applicable.", "anzlicid": "ANZVI0803003337", "geonet_info_createdate": "2015-09-21", "revisiondate": "2022-11-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c4f5e5f3833bc3026c55a16b49f8f09b59a7264a", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e27f62a8-75ec-55fc-b638-b3fcb2882ec2", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-02-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Transport - Road Locality Table", "alttitle": "TR_ROAD_LOCALITY", "tempextentbegin": "2023-01-24T00:05:08+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:08+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36251\", \"uuid\": \"e27f62a8-75ec-55fc-b638-b3fcb2882ec2\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-21\", \"changeDate\": \"2020-02-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Transport - Road Locality Table", "abstract": "Part of Vicmap Transport, TR_ROAD_LOCALITY is an Aspatial table.", "anzlicid": "ANZVI0803003244", "geonet_info_createdate": "2020-02-21", "revisiondate": "2020-02-21", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a682289d28703fd2066452dc5bcafa4576426baa", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6ae45d3c-45f1-5ced-b27a-8e91a37b139d", "publicationdate": "2019-04-16", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-10-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI Shape", "type": "dataset", "title": "Seismic Survey Points - for Petroleum Industry Exploration", "alttitle": "SEISMIC_POINT", "tempextentbegin": "1948-12-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2004-10-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36252\", \"uuid\": \"6ae45d3c-45f1-5ced-b27a-8e91a37b139d\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-10-21\", \"changeDate\": \"2016-10-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Seismic Survey Points - for Petroleum Industry Exploration", "abstract": "Seismic Survey Points - for Petroleum Industry Exploration", "anzlicid": "ANZVI0803002765", "geonet_info_createdate": "2016-10-21", "revisiondate": "2016-10-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5de75da2bfc712037531f6c98bdcc931829b86b9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1553f19f-3b03-5e40-924e-6355eb9a3f89", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-01-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "product", "title": "Vicmap Admin", "alttitle": "VICMAP_ADMIN", "tempextentbegin": "1998-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:09+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34121\", \"uuid\": \"1553f19f-3b03-5e40-924e-6355eb9a3f89\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-07-26\", \"changeDate\": \"2022-01-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin", "abstract": "This dataset series contains polygon features delineating key Victorian administrative boundaries. It comprises several data sets and is part of the Vicmap suite of products.\nDatasets in the series are listed below. See their individual metadata entries for more product specific metadata.\n\nLocal Government Area Boundaries - LGA_POLYGON (aligned to Property);\nLocal Government Area Boundaries - AD_LGA_AREA_POLYGON (aligned to Topo);\n\nLocality Boundaries - LOCALITY_POLYGON (aligned to Property):\nLocality Boundaries - AD_LOCALITY_AREA_POLYGON (aligned to Topo);\n\nPostcode Boundaries - POSTCODE_POLYGON (aligned to Property);\n\nParish Boundaries - PARISH_POLYGON;\n\nTownship Boundaries - TOWNSHIP_POLYGON;\n\nVictorian Lower House Electoral Boundaries 2022 - STATE_ASSEMBLY_2022;\nVictorian Lower House Electoral Boundaries 2013 - STATE_ASSEMBLY_2013 (to be retired after 1 March 2023);\n\nVictorian Upper House Electoral Boundaries 2022 - STATE_COUNCIL_2022;\nVictorian Upper House Electoral Boundaries 2013 - STATE_COUNCIL_2013 (to be retired after 1 March 2023);\n\nWard Boundaries (Property) - WARD_2020;\n\nVictorian Government Regional Departmental Boundaries - VICGOV_REGION (aligned to Property);\nVictorian Government Regional Departmental Boundaries - AD_VICGOV_REGION (aligned to Topo);\n\nDept of Environment, Land, Water and Planning - DELWP_REGION (aligned to Topo);\n\nCountry Fire Authority (CFA) District Boundaries - CFA_DISTRICT;\nCountry Fire Authority (CFA) Region Boundaries - CFA_REGION;\nCountry Fire Authority (CFA) Total Fire Ban Districts - CFA_TFB_DISTRICT;\n\nFire Rescue Victoria Regions - FRV_REGION;\nFire Rescue Victoria Districts - FRV_DISTRICT;\nFire Rescue Victoria Response Area - FRV_RESPONSE_AREA;\nFire Rescue Victoria Legislated Boundary - FRV_LEGISLATED_BOUNDARY;\n\nEmergency Management Victoria Regions - EMERGENCY_MANAGEMENT_REGION.", "anzlicid": "ANZVI0803002529", "geonet_info_createdate": "2019-07-26", "revisiondate": "2022-01-14", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5e5ad22587e2d0d43cd008b8bc7ec4b808933799", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3736c691-de05-5ae8-a8db-52a7bcf09854", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-02-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Hydro - Navigation Line", "alttitle": "HY_NAVIGATION_LINE", "tempextentbegin": "1998-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2000-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;environment;inland waters;farming;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36262\", \"uuid\": \"3736c691-de05-5ae8-a8db-52a7bcf09854\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-21\", \"changeDate\": \"2020-02-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Hydro - Navigation Line", "abstract": "This layer is part of Vicmap Hydro and contains line features delineating hydro/navigation features.\nIncludes; Reefs & Ledges.", "anzlicid": "ANZVI0803002494", "geonet_info_createdate": "2020-02-21", "revisiondate": "2020-02-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b528d9e3039809dded63bed7fe5eff5f8f9eaae8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "fb2f263a-00b9-5d7f-9ea8-7e7bdab370cd", "publicationdate": "2020-11-04", "publishedforgroup": "12264;0", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "product", "title": "Coal Model - Latrobe Valley - Earth Resources Spatial Data Collection for the Datamart.", "alttitle": "DM_MIN_COAL_LATVAL", "tempextentbegin": "1998-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:05:03+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34097\", \"uuid\": \"fb2f263a-00b9-5d7f-9ea8-7e7bdab370cd\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Coal Model - Latrobe Valley - Earth Resources Spatial Data Collection for the Datamart.", "abstract": "Datasets relating to the coal model in the Latrobe Valley.\nCollected for Earth Resources within DSDBI", "anzlicid": "ANZVI0803003355", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "49d9a715261963f46dee3d479743daf3aad11139", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c8685890-d4fc-5f29-97be-5a2be61d032a", "publicationdate": "2023-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Victorian Biodiversity Atlas flora records (unrestricted) for sites with moderate to low spatial accuracy", "alttitle": "VBA_FLORA100", "tempextentbegin": "1749-12-31T14:20:08+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:04+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36237\", \"uuid\": \"c8685890-d4fc-5f29-97be-5a2be61d032a\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-07-22\", \"changeDate\": \"2021-08-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Biodiversity Atlas flora records (unrestricted) for sites with moderate to low spatial accuracy", "abstract": "This layer contains a snapshot of flora taxa records from the Victorian Biodiversity Atlas (VBA) (including most threatened taxa). The main attributes in this layer are survey id, survey location, date, time, locational accuracy, taxa recorded, counts, observation type, survey type, collector, and reliability of the record. The VERS_DATE column identifies the currency of the data.\n\nAlthough this is a point layer, the actual accuracy of the site can range from +/- 500m to +/- 10 km.\n\nThe FFG field has been updated to reflect the 2021 FFG Act amendments, and the Victorian Advisory List (VICADV) is now obsolete.\n\nThis layer excludes restricted taxa records. These records are contained in the related (but restricted) dataset VBA_FLORA_RESTRICTED. Public users wishing to view the general location of these records should refer to the related dataset VBA_RESTRICTED_1M,", "anzlicid": "ANZVI0803004162", "geonet_info_createdate": "2016-07-22", "revisiondate": "2021-08-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "40d677adffbab1d84cef29c187d752fe5733ff94", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "558dc7cb-937d-5ed6-886e-9c43c3d98704", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2005-04-26", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo coverage/ArcView shapefile/MapInfo table - see LIG or dataset expert for other data formats not available in the corporate library.", "type": "dataset", "title": "Final ECC recommendations for the Box-Ironbark Forests and Woodlands Investigation.", "alttitle": "BOXIRON_RECS", "tempextentbegin": "1995-10-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2001-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36240\", \"uuid\": \"558dc7cb-937d-5ed6-886e-9c43c3d98704\", \"schema\": \"iso19115-3\", \"createDate\": \"2005-04-26\", \"changeDate\": \"2005-04-26\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Final ECC recommendations for the Box-Ironbark Forests and Woodlands Investigation.", "abstract": "Box-Ironbark Forests and Woodlands Investigation Final Recommendations - for the Environment Conservation Council.\nThe Minister, under Section 17 of the Environment Conservation Council Act 1997 required the Environment Conservation Council to carry out an investigation of Victoria\u0092s Box-Ironbark Forests and Woodlands occurring on public land in northern Victoria. The area investigated was the box-ironbark ecosystem stretching from the Grampians in the west to Wodonga in the north-east.", "anzlicid": "ANZVI0803002694", "geonet_info_createdate": "2005-04-26", "revisiondate": "2005-04-26", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9dfff94e98fae53cc321953aac1a1c603e338a83", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2713c5f8-efb0-5938-9bf2-fdd1aa98efe2", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-03-07", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "type": "dataset", "title": "1 minute increments of the GDA94 latitude/longitude graticule", "alttitle": "GRID_1M", "tempextentbegin": "2011-10-25T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:06+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36243\", \"uuid\": \"2713c5f8-efb0-5938-9bf2-fdd1aa98efe2\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-07\", \"changeDate\": \"2017-03-07\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "1 minute increments of the GDA94 latitude/longitude graticule", "abstract": "This dataset is a simple polygon layer of rectangular cells aligned to 1 minute increments of the GDA94 latitude/longitude graticule. It is designed for use as an indexing mechanism for point record observations of flora and fauna. The layer covers an area of south-east Australia extending from 139 degrees to 151 degrees 30 minutes EAST and 33 degrees to 42 degrees SOUTH. It thus incorporates substantial areas of South Australia and New South Wales plus all of Bass Strait and the north coast of Tasmania.", "anzlicid": "ANZVI0803004131", "geonet_info_createdate": "2017-03-07", "revisiondate": "2017-03-07", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fdafcc6e28e6b2862a2fd7a7c963f8f3dab2ebc8", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "5f6dfa9d-bb33-54b2-8477-7206803c2f81", "publicationdate": "2023-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-17", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All major formats available", "type": "nonGeographicDataset", "title": "Fire Danger Ratings from the CFA Website", "alttitle": "CFA_FIRE_DANGER_RATINGS", "tempextentbegin": "2010-09-22T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:07+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36246\", \"uuid\": \"5f6dfa9d-bb33-54b2-8477-7206803c2f81\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-10-31\", \"changeDate\": \"2022-02-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Fire Danger Ratings from the CFA Website", "abstract": "A table that holds daily fire danger forecasts as released by the CFA RSS feed: http://www.cfa.vic.gov.au/restrictions/tfbfdrforecast_rss.xml.\n\nThis table is populated on all Mapshare database instances at 6am each day.", "anzlicid": "ANZVI0803005385", "geonet_info_createdate": "2019-10-31", "revisiondate": "2022-02-17", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2790aca206064fd8d9b539ec0c2bea37ba97206d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "f0ac1e33-110d-5641-96df-e333b161a3f8", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-21", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Major River Basins of South-eastern Australia", "alttitle": "BASIN100_SEAUS", "tempextentbegin": "2011-03-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2011-03-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34113\", \"uuid\": \"f0ac1e33-110d-5641-96df-e333b161a3f8\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-06-01\", \"changeDate\": \"2022-10-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Major River Basins of South-eastern Australia", "abstract": "This layer combines the river basins of Victoria (from DSE's \"BASIN100\") with neighbouring river basins in other states (from Geoscience Australia's \"Australia's River Basins 1997\"). The basins are contained within two drainage divisions; the Murray Darling Division and the South East Coast Division.", "anzlicid": "ANZVI0803004279", "geonet_info_createdate": "2016-06-01", "revisiondate": "2022-10-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2e9e13e0df057452c390f221c7dfaab71a44f384", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "aed3a0d1-0b45-57bf-b1b2-976265578471", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-02-11", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, MapInfo, Non digital - plotted maps", "type": "dataset", "title": "SubSurface Geophysics (1:250,000), Geological Interpretation of Subsurface Geophysical Features, at level 2", "alttitle": "GPSGEOL2250_POLYGON", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36230\", \"uuid\": \"aed3a0d1-0b45-57bf-b1b2-976265578471\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-11\", \"changeDate\": \"2016-02-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "SubSurface Geophysics (1:250,000), Geological Interpretation of Subsurface Geophysical Features, at level 2", "abstract": "This dataset contains interpreted geological data, using combined interpretations of airborne magnetic, radiometric and gravity survey data, mapped at 1:250,000 of deeply buried geological units. In this layer units, along with their associated linework, have been classified as 'deep' since they reside beneath other geophysically interpreted units which are usually themselves below the mapped surface geology.\n\nAt scales larger than 1:120,000 the display is a combination of both 1:100,000 and 1:250,000 geophysical mapping. Recent 1:250,000 geophysical mapping has been of such quality and detail it has been used to supersede older coincident 1:100,000 mapping. This occurs in the following areas: St Arnaud 7524, Dunolly 7624, Charlton 7525, Wedderburn 7625 and part of Ararat 7423 are superseded by St Arnaud SJ54-4. Bendigo 7724, Heathcote 7824 and Nagambie 7924 are superseded by Bendigo SJ55-1. \n\nBalmoral 7223, Ararat 7423, Horsham SJ54-3 and St Arnaud SJ54-4 supersede Grampians 7323 where there is overlap.\n\nThe Ouyen SI54-15 and Horsham SJ54-3 map areas are datasets derived from a combination of Geological Interpretation of Basement Geophysical Features maps and Geological Interpretation of Post-Cratonic Geophysical Features maps performed by Moore, D. H.\n\nThis data has been collected by the Geological Survey of Victoria. This dataset is accompanied by other datasets representing geological polygons and boundaries, structural lines, miscellaneous lines and metamorphism.", "anzlicid": "ANZVI0803003429", "geonet_info_createdate": "2016-02-11", "revisiondate": "2016-02-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "019910d366727b2f7e6a0545fc8b858e9ab9a522", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "40bba3e7-c3ab-5ded-ba44-036ae5bab00b", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Land Victoria Senior Land Use Planning Officer (SLUPO) Areas", "alttitle": "LANDVIC", "tempextentbegin": "1998-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "1998-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34007\", \"uuid\": \"40bba3e7-c3ab-5ded-ba44-036ae5bab00b\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-17\", \"changeDate\": \"2013-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Land Victoria Senior Land Use Planning Officer (SLUPO) Areas", "abstract": "Land Victoria Senior Land Use Planning Officer (SLUPO) Areas are not the same as the Land Vic Areas , so a copy of their areas were taken and modified to produce the new layer.\nThis layer is meant to indicate the SLUPO that is responsible for the land contained within a tenement.", "anzlicid": "ANZVI0803002334", "geonet_info_createdate": "2013-09-17", "revisiondate": "2013-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4d66a16eab6658db54b429f8d497268ab1487afd", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "dce454c0-0a84-56c4-942f-0675ddfbe1d8", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-11-03", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "type": "dataset", "title": "Coal Cross Section Lines", "alttitle": "XSEC_COAL", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2004-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36147\", \"uuid\": \"dce454c0-0a84-56c4-942f-0675ddfbe1d8\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-11-03\", \"changeDate\": \"2016-11-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Coal Cross Section Lines", "abstract": "Coal Cross Section Lines. The lines are an index to cross sectional diagrams relating to coal.", "anzlicid": "ANZVI0803003507", "geonet_info_createdate": "2016-11-03", "revisiondate": "2016-11-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f6db03898cac0deacebc8f597cd8d4651b09d3cd", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5eabd7bd-d51c-5b93-acf8-a425cc452de3", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Vicmap Topographic 1:50,000 MGA Single Format Map Index", "alttitle": "VICMAP_MAPINDEX_50S", "tempextentbegin": "1980-08-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "1980-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36148\", \"uuid\": \"5eabd7bd-d51c-5b93-acf8-a425cc452de3\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-01-24\", \"changeDate\": \"2022-07-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Vicmap Topographic 1:50,000 MGA Single Format Map Index", "abstract": "1:50 000 Mapgrid of Australia Boundaries.", "anzlicid": "ANZVI0803004578", "geonet_info_createdate": "2017-01-24", "revisiondate": "2022-07-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ec2bd79078fa868ffa80ecd5c8dbc61d97d2a69d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "21a6ba36-c257-5dd7-a3f3-1dd14815de1b", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-01-28", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI Shapefile", "type": "dataset", "title": "Coal Strip Ratio Maps", "alttitle": "COAL_RESOURCE", "tempextentbegin": "2011-04-12T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2011-04-12T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;economy;structure;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36336\", \"uuid\": \"21a6ba36-c257-5dd7-a3f3-1dd14815de1b\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-01-28\", \"changeDate\": \"2014-01-28\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Coal Strip Ratio Maps", "abstract": "Strip Ratio Maps\nThe following ten strip ratio maps were generated accross the 2011 Coal model area:\nto Yallourn seam floor;\nto Morwell 1a seam floor;\nto Morwell 1b seam floor;\nto Morwell 2a seam floor;\nto Morwell 2a seam floor;\nto Traralgon seam floor;\nto 200m depth;\nto 300m depth;\nto 400m depth; and\nto 500m depth.\nMaps show vertical striping ratio expressed as coal tonnes to waste cubic metres. Seam floor maps are calculated to the floor of the specified seam (or lowest split); or lowest overlying seam if this seam is absent. Depth maps are calculated to the lowest seamfloor that is shallower than the specified depth. The model is based on a pre-mine topography and substantial coal has already been extracted.\n\n\nLink to Further Coal Seam model Information\n\nLink to Coal Model Data (works in firefox , but not internet explorer)", "anzlicid": "ANZVI0803004557", "geonet_info_createdate": "2014-01-28", "revisiondate": "2014-01-28", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c961e7223ff1e56a1c4f6534017a5da0d584103d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "22418f7c-7db3-5056-bbc4-dc0e943c2fd4", "publicationdate": "2023-01-16", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Original Exploration Licence Area at the time it was first Granted", "alttitle": "ELPEND", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:05:34+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36337\", \"uuid\": \"22418f7c-7db3-5056-bbc4-dc0e943c2fd4\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-19\", \"changeDate\": \"2021-07-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Original Exploration Licence Area at the time it was first Granted", "abstract": "Contains details only on current titles. The idea is to save the original area and when the title finally expires, transfer it to the expired layers eg ELHST", "anzlicid": "ANZVI0803002347", "geonet_info_createdate": "2013-09-19", "revisiondate": "2021-07-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f65176c9393977f7643b237a6369041dd7957962", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3e0c18ed-ed48-583e-983b-edf79aca469b", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-11-18", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Potential Groundwater Dependent Ecosystem (GDE) Mapping for the Glenelg Hopkins CMA", "alttitle": "GDE_TERR_GHCMA", "tempextentbegin": "1995-01-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2005-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;biota;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36338\", \"uuid\": \"3e0c18ed-ed48-583e-983b-edf79aca469b\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-11-18\", \"changeDate\": \"2013-11-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Potential Groundwater Dependent Ecosystem (GDE) Mapping for the Glenelg Hopkins CMA", "abstract": "Potential Groundwater Dependent Ecosystems (GDE) are ecosystems identified within the landscape as likely to be at least partly dependent on groundwater. State-wide screening analysis was performed to identify locations of potential terrestrial GDEs, including wetland areas. The GDE mapping was developed utilising satellite remote sensing data, geological data and groundwater monitoring data in a GIS overlay model. Validation of the model through field assessment has not been performed. The method has been applied for all of Victoria and is the first step in identifying potential groundwater dependent ecosystems that may be threatened by activities such as drainage and groundwater pumping. The dataset specifically covers the Glenelg Hopkins Catchment Management Authority (CMA) area. The method used in this research is based upon the characteristics of a potential GDE containing area as one that:\n1. Has access to groundwater. By definition a GDE must have access to groundwater. For GDE occurrences associated with wetlands and river systems the water table will be at surface with a zone of capillary extension. In the case of terrestrial GDE's (outside of wetlands and river systems), these are dependent on the interaction between depth to water table and the rooting depth of the vegetation community.\n2. Has summer (dry period) use of water. Due to the physics of root water uptake, GDEs will use groundwater when other sources are no longer available; this is generally in summer for the Victorian climate. The ability to use groundwater during dry periods creates a contrasting growth pattern with surrounding landscapes where growth has ceased.\n3. Has consistent growth patterns, vegetation that uses water all year round will have perennial growth patterns.\n4. Has growth patterns similar to verified GDEs. \nThe current mapping does not indicate the degree of groundwater dependence, only locations in the landscape of potential groundwater dependent ecosystems. This dataset does not directly support interpretation of the amount of dependence or the amount of groundwater used by the regions highlighted within the maps. Further analysis and more detailed field based data collection are required to support this.\n\nThe core data used in the modelling is largely circa 1995 to 2005. It is expected that the methodology used will over estimate the extent of terrestrial GDEs. There will be locations that appear from EvapoTranspiration (ET) data to fulfil the definition of a GDE (as defined by the mapping model) that may not be using groundwater. Two prominent examples are: 1. Riparian zones along sections of rivers and creeks that have deep water tables where the stream feeds the groundwater system and the riparian vegetation is able to access this water flow, as well as any bank storage contained in the valley alluvials. 2. Forested regions that are accessing large unsaturated regolith water stores.\nThe terrestrial GDE layer polygons are classified based on the expected depth to groundwater (ie shallow <5 m or deep >5 m). Additional landscape attributes are also assigned to each mappnig polygon.\n\nIn 2011-2012 a species tolerance model was developed by Arthur Rylah Institute, collaborating with DPI, to model landscapes with ability to support GDEs and to provide a relative measure of sensitivity of those ecosystems to changes in groundwater availability and quality. Rev 1 of the GDE mapping incorporates species tolerance model attributes for each potential GDE polygon and attributes for interpreted depth to groundwater.\n\nSeparate datasets and associated metadata records have been created for GDE species tolerance.", "anzlicid": "ANZVI0803005164", "geonet_info_createdate": "2013-11-18", "revisiondate": "2013-11-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5b5d9cb088e71b272f22aef58943bdf50f119a23", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1d907fde-e82f-59d2-a4c4-754c5d8dac95", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-11-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Declared floodways 2012", "alttitle": "FLOODWAY", "tempextentbegin": "1997-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2012-02-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34204\", \"uuid\": \"1d907fde-e82f-59d2-a4c4-754c5d8dac95\", \"schema\": \"iso19115-3\", \"createDate\": \"2011-12-06\", \"changeDate\": \"2022-11-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Declared floodways 2012", "abstract": "Polygon features representing 'Declared' or otherwise delineated floodways as at 2012. \n\nDeclared floodways are a legally defined area subject to flooding, documented through the municipal planning schemes. Floodways are typically areas of low lying land close to rivers that are prone to flooding. They may include natural or modified depressions and intermittent lakes. \n\nData originally sourced from Flood Data Transfer Project, 2000. This layer superceedes floodway25.", "anzlicid": "ANZVI0803004311", "geonet_info_createdate": "2011-12-06", "revisiondate": "2022-11-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2e140c98b74e8f95b8750e5c561eda616583bf43", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3d73977e-3b20-5920-8eb5-3a82f9e612e8", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - Metropolitan Fire Brigade (MFB) Region Polygon", "alttitle": "MFB_REGION", "tempextentbegin": "2013-03-11T13:00:00+00:00", "resowner": "Fire Rescue Victoria;Fire Rescue Victoria", "tempextentend": "2020-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36345\", \"uuid\": \"3d73977e-3b20-5920-8eb5-3a82f9e612e8\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - Metropolitan Fire Brigade (MFB) Region Polygon", "abstract": "Part of the Vicmap Admin dataset series. This layer contains polygon features delineating the current Metropolitan Fire Brigade Region Boundaries.\n\nPolygon features demonstrating MFB's two administrative regions. MFB Regions are a parent-group to MFB Districts.\n\nNOTE: This dataset was superceded by FRV_REGION in July 2020, and was withdrawn in December 2020 from the Vicmap Admin product.", "anzlicid": "ANZVI0803004854", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b2ee3c3c1999d1ee91b14db440d7238c30de2fad", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "46955d9b-5e2c-59f0-a134-76157607d38f", "publicationdate": "2019-10-25", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-11-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Feature Class", "type": "dataset", "title": "2010 Index of Stream Condition Scores", "alttitle": "ISC2010_SCORES", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34133\", \"uuid\": \"46955d9b-5e2c-59f0-a134-76157607d38f\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-13\", \"changeDate\": \"2019-11-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition Scores", "abstract": "The ISC2010_SCORES dataset represents the 2010 Index of Stream Condition (ISC) overall score and subindex scores for each ISC river reach in the state of Victoria. This was the third ISC assessment providing a snapshot of river health for major rivers and streams in Victoria, using data collected over a six-year period from 2004 to 2010. The methods used in 2010 differed to the 1999 and 2004 assessments. Method changes were undertaken to strike a balance between incorporating new scientific advances while maintaining compariability of results with the 1999 and 2004 benchmarks. The ISC 2010 provides scores for five components of stream condition: (i) hydrology (based on change in volume and seasonality of flow from natural conditions); (ii) physical form (based on bank stability, bed erosion or aggradation, influence of artificial barriers, and abundance and origin of coarse woody debris); (iii) streamside zone (based on types of plants; spatial extent, width, and intactness of riparian vegetation; regeneration of overstorey species, and condition of wetlands and billabongs); (iv) water quality (based on an assessment of phosphorus, turbidity, electrical conductivity and pH); and (v) aquatic life (based on number of families of macroinvertebrates). The Physical Form and Riparian Vegetation components of the ISC were mapped by the Department of Environment and Primary Industries (DEPI) in 2010-12 using LIDAR and aerial photography. Other ISC metrics were derived from other sources. Further information available at: https://www.water.vic.gov.au/waterways-and-catchments/rivers-estuaries-and-waterways/monitoring", "anzlicid": "ANZVI0803008551", "geonet_info_createdate": "2019-11-13", "revisiondate": "2019-11-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "095f36407f3d4ccfaa5bd586e562f2ac3df82b9b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d371ff80-1e32-59ab-91c9-717bb99acf8c", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Vegetation Overhang polygon features", "alttitle": "ISC2010_VEGETATION_OVERHANG", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36266\", \"uuid\": \"d371ff80-1e32-59ab-91c9-717bb99acf8c\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Vegetation Overhang polygon features", "abstract": "The ISC2010_VEGETATION_OVERHANG polygon features represent areas of vegetation that partially or wholly overhang the Stream Bed. The data set contains the whole vegetation polygon, not only the overhanging part of the polygon. Candidate vegetation is defined as vegetation cover greater than 20%. Vegetation Overhang has been mapped within a 200m buffer of the ISC2010_STREAMBED_WIDTH feature. This data set is derived from source Fractional Cover raster data. The data set also contains additional polygon divisions created by the introduction of Side and 200m buffer boundaries. Small polygons (<10m2) that were created by the introduction of these boundaries have been removed.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005117", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1bf845c5c000aa230368f4229c663d594732d0f7", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "47352a58-1fd6-5b50-a2ec-9df8afdf8ac9", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - Locality Polygon Aligned to Property", "alttitle": "LOCALITY_POLYGON", "tempextentbegin": "2005-05-14T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:15+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34141\", \"uuid\": \"47352a58-1fd6-5b50-a2ec-9df8afdf8ac9\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - Locality Polygon Aligned to Property", "abstract": "Part of the Vicmap Admin dataset series. This dataset contains the polygons for the authoritative Locality boundary dataset for Victoria.\n\nLocality Boundaries are as defined by Local Governments and registered by the Registrar of Geographic Names (GeoNames). The Vicmap Admin Locality data only contains Bounded Localities (known as LOCB in the GeoNames data). There are also unbounded localities/neighbourhoods (LOCU or NBHD) in the GeoNames data but this is NOT contained within Vicmap Admin Locality.\n\nAligned to Vicmap Property.", "anzlicid": "ANZVI0803003027", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b197d2e2ebe457c287933b3197e21256e26742f2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "6b685211-3217-540e-bf98-dea84e8bf504", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-11", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Spatial Vision Mapbook Index 1:50,000 Edition 6", "alttitle": "MAPBOOK_MAPINDEX_50_ED6", "tempextentbegin": "2018-11-26T13:00:00+00:00", "resowner": "Spatial Vision Pty Ltd", "tempextentend": "2018-11-26T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Biannually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36275\", \"uuid\": \"6b685211-3217-540e-bf98-dea84e8bf504\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-05-20\", \"changeDate\": \"2021-11-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Spatial Vision Mapbook Index 1:50,000 Edition 6", "abstract": "This dataset is derived from the Mapbook directory and contains the map index for the 1:50 000 district maps.", "anzlicid": "ANZVI0803004604", "geonet_info_createdate": "2013-05-20", "revisiondate": "2021-11-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f42cb740353716302228843f28733854398fb0da", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c426d57d-0cd9-5ab0-ac78-82b8427b28a2", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "DRAFT VERSION - Fire Severity Classes (Landsat) for East Victoria Fires 2006-07 - North East Gippsland Complex only", "alttitle": "FIRE_SEV07TM", "tempextentbegin": "2007-02-19T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2007-03-27T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36278\", \"uuid\": \"c426d57d-0cd9-5ab0-ac78-82b8427b28a2\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-07-08\", \"changeDate\": \"2022-02-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "DRAFT VERSION - Fire Severity Classes (Landsat) for East Victoria Fires 2006-07 - North East Gippsland Complex only", "abstract": "The East Victoria Fires 2006-07 were ignited on 1st December 2006 by a series of lightning strikes across eastern Victoria. This layer depicts fire severity, derived from Landsat imagery, across the extent of the fires to provide a reliable strategic management dataset to interpret fire effects.", "anzlicid": "ANZVI0803003343", "geonet_info_createdate": "2015-07-08", "revisiondate": "2022-02-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f4ab9158615220b8b443a96cd495d9bc08f263ca", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "76137660-e350-5958-98c5-c62937c8eeac", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-08-27", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Permian Geological Basement, Goulburn-Murray Area", "alttitle": "GEOL_BSE_PERMIAN", "tempextentbegin": "2023-01-24T00:05:28+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:28+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36317\", \"uuid\": \"76137660-e350-5958-98c5-c62937c8eeac\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-08-27\", \"changeDate\": \"2015-08-27\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Permian Geological Basement, Goulburn-Murray Area", "abstract": "This dataset defines the extent of the Permian glacial sediments in the Goulburn-Murray area. According to Holdgate (1995) \"the Permian sediments extend south coincident with the main river valleys of the Loddon, Campaspe, Goulburn and Ovens and can extend into the highlands. They appear to exert an influence on the location of the early Tertiary Renmark Group, on the deep leads and in themselves are controlled by underlying basement faults\".\n\nThe dataset was compiled by GHD to inform the report 'Potential Influences of Geological Structures on Groundwater Flow Systems' for DEPI's Secure Allocation Future Entitlements (SAFE) Project.", "anzlicid": "ANZVI0803005022", "geonet_info_createdate": "2015-08-27", "revisiondate": "2015-08-27", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7028d78b72ecfa16f4c87c0e8366abf15deeed2f", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7b6505f2-6022-5b0b-84e0-54a274a83fd6", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Hydrography Pipeline Function Table", "alttitle": "HY_PIPELINE_FUNCTION", "tempextentbegin": "2023-01-24T00:05:29+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:29+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36319\", \"uuid\": \"7b6505f2-6022-5b0b-84e0-54a274a83fd6\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Hydrography Pipeline Function Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003187", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e7d4d02e5c78a96ba9030180b988ca5c506a72dc", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "41b4d70e-81a9-57cd-a75e-48474e707af6", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, Non digital - printed map.", "type": "dataset", "title": "Interpreted Lava Flows (1:500,000), Geological Interpretation of Geophysical Features Polygon", "alttitle": "GPLAVAFLW500_POLYGON", "tempextentbegin": "2000-02-29T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2002-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36325\", \"uuid\": \"41b4d70e-81a9-57cd-a75e-48474e707af6\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-29\", \"changeDate\": \"2022-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Interpreted Lava Flows (1:500,000), Geological Interpretation of Geophysical Features Polygon", "abstract": "This dataset contains Lava flows that have been interpreted either from intersections in drill holes or from magnetic responses.\n\nThe dataset is accompanied by other datasets representing geological boundaries, major faults, lesser faults, dykes and the basin edges.\n\n\nReferences:\n\nMOORE, D.H., 2002. Eastern and central Gippsland Basin, southeast Australia: basement interpretation and basin links. Victorian Initiative for Minerals and Petroleum Report 69, Department of Natural Resources and Environment. \n\nMOORE, D.H., 2002. Basement-basin relationships in the Otway Basin, Victoria, Australia. Victorian Initiative for Minerals and Petroleum Report 78, Department of Natural Resources and Environment.\n\nSIMONS B.A., & MOORE, D.H., 1999. Victoria 1:1 000 000 Pre-Permian Geology. Geological Survey of Victoria.", "anzlicid": "ANZVI0803003410", "geonet_info_createdate": "2018-03-29", "revisiondate": "2022-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "09d9e8be7b4d0a3ba4f6177c4b340f29b68b8b21", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8201244f-6d03-5756-8fdf-5674b926354a", "publicationdate": "2019-11-22", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-12-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Victorian Aquifer Framework (VAF) Salinity Distribution - UTAF_TDS", "alttitle": "VAF105_UTAF_TDS", "tempextentbegin": "2012-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2014-04-13T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34193\", \"uuid\": \"8201244f-6d03-5756-8fdf-5674b926354a\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-12-05\", \"changeDate\": \"2019-12-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Aquifer Framework (VAF) Salinity Distribution - UTAF_TDS", "abstract": "This dataset is the Victorian Aquifer Framework (VAF) Salinity Distribution. It refers to the salinity distribution for Aquifer Number of 105 (Upper Tertiary Aquifer (Fluvial)). The salinity distributions reflect the beneficial use segments prescribed in the State Environment Protection Policy (Waters) (2018)\nPlease refer to the master metadata record VAF 'Victorian Aquifer Framework (VAF) Salinity Distribution for detailed information.", "anzlicid": "ANZVI0803008611", "geonet_info_createdate": "2019-12-05", "revisiondate": "2019-12-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9c615cbf362d5023c853cd02856757048865c488", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "15c5adfb-e67f-5aca-ad44-0525411ed0ca", "publicationdate": "2021-08-03", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Elevation - Morphology Point", "alttitle": "EL_MORPHOLOGY_POINT", "tempextentbegin": "1973-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "1994-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;environment;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36329\", \"uuid\": \"15c5adfb-e67f-5aca-ad44-0525411ed0ca\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2019-09-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Elevation - Morphology Point", "abstract": "This layer is part of Vicmap Elevation 10-20 Contours & Relief, a subset of Vicmap Elevation. It contains point features delineating morphology and related features.\nIncludes; Sinkholes & Caves.", "anzlicid": "ANZVI0803002501", "geonet_info_createdate": "2019-09-04", "revisiondate": "2019-09-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9b042c2b7058a85fa9d59e9b5c634a9ef28ab747", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d5659c3f-2f2e-5eee-8ac4-8b5c89ba12a9", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-02-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Geological Phase Areas - Polygons (1:100,000)", "alttitle": "PHASE100_POLYGON", "tempextentbegin": "1995-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36280\", \"uuid\": \"d5659c3f-2f2e-5eee-8ac4-8b5c89ba12a9\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-09\", \"changeDate\": \"2016-02-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological Phase Areas - Polygons (1:100,000)", "abstract": "Geological Phase Areas - Polygons", "anzlicid": "ANZVI0803005574", "geonet_info_createdate": "2016-02-09", "revisiondate": "2016-02-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4aa0b079ea3dd47bdae11939f99c805ae1e4d1b8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "b6722101-8db5-51f0-8a6f-d1e4fe805b73", "publicationdate": "2021-08-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "PTV Metro Train Stations", "alttitle": "PTV_METRO_TRAIN_STATION", "tempextentbegin": "2018-02-28T13:00:00+00:00", "resowner": "Department of Transport", "tempextentend": "2023-01-24T00:05:17+00:00", "maintenanceandupdatefrequency_text": "Quarterly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34148\", \"uuid\": \"b6722101-8db5-51f0-8a6f-d1e4fe805b73\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-02\", \"changeDate\": \"2022-02-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "PTV Metro Train Stations", "abstract": "This layer depicts spatial objects (points) representing Metro Train Stations. Each station has attributes that describe StopID, StopName (station), Lat/Long, Ticket Zone and Routes Using Stop. The data has been generated from the PTV GTFS data with extra attributes from PTV's TransNet database. \nThis dataset supersedes \"PTV_TRAIN_STATION\" (which included both metro and regional stations).\nThis dataset was first loaded into the VSDL in March 2018 and will be updated approximately quarterly.", "anzlicid": "ANZVI0803005858", "geonet_info_createdate": "2018-03-02", "revisiondate": "2022-02-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f3cccdb4b4af617affe7dc8bef207489f7f65eb9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1621d8fc-4afa-5d31-a612-f822c88f4891", "publicationdate": "2022-05-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-09-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Victorian Wetland Inventory (Current)", "alttitle": "WETLAND_CURRENT", "tempextentbegin": "2003-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-05-20T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36287\", \"uuid\": \"1621d8fc-4afa-5d31-a612-f822c88f4891\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-02-06\", \"changeDate\": \"2021-09-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Wetland Inventory (Current)", "abstract": "Polygons showing the extent and types of wetlands in Victoria. WETLAND_CURRENT was created in 2013 and was derived from WETLAND_1994 (the state\u00bfs first wetland geospatial inventory) and several local and regional wetland datasets. A number of updates have occurred to the dataset during 2014, 2017 and 2021. The 2014 update incorporated new regional mapping, some supplementary mapping and repositioning of planimetrically inaccurate wetlands. Supplementary mapping involved identifying and delineating wetlands which had not previously been mapped, but did not modify the extent of existing wetlands. It was undertaken primarily using aerial photograph interpretation (photos from 2007 to 2011) supplemented with existing geospatial datasets that provided context and informed the identification of wetland boundaries (e.g. vegetation mapping, topography). Wetlands were classified (according to the new classification framework) into primary categories based on wetland system type, salinity regime, water regime, water source, dominant vegetation and wetland origin. The 2017 update improved the accuracy of the layer by updating wetland mapping and attributes in the Melbourne area and for alpine bogs and fens in East and West Gippsland catchment regions. It also involved correcting inaccurate classification attributes and correcting wetland polygons for individual wetlands based on new data and feedback from wetland inventory users. The 2021 update incorporates new mapping and refinements to existing wetland polygons for several regional wetland datasets. These include Tootgarook Swamp, Alpine Bogs, Mitchell River Floodplain Wetlands, Melbourne Water Billabongs and Mallee CMA Wetlands. The dataset currently consists of 38,799 polygons totalling 784,120 ha.", "anzlicid": "ANZVI0803004912", "geonet_info_createdate": "2018-02-06", "revisiondate": "2021-09-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f3a978799aac4d5e5d31974e54d200b3a8149ff4", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7a81f102-3c3d-5e81-8ef1-164b48f17f3c", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-06-18", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Lineaments interpreted from Topography", "alttitle": "LINEAMENTS_TOPO", "tempextentbegin": "2008-06-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2008-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34157\", \"uuid\": \"7a81f102-3c3d-5e81-8ef1-164b48f17f3c\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-06-18\", \"changeDate\": \"2013-06-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Lineaments interpreted from Topography", "abstract": "This dataset comprises lineaments interpreted from the State's 100m x 100m resolution Digital Terrain Model (DTM). The interpretation has been completed on a regional or sub-regional scale using geophysical remote sensing techniques and has confirmed that topography is a key structural analysis dataset. This is because it frequently shows strong evidence of the recent reactivation of older fault structures.\n\nThe analysis identified a number of key topography lineament directions across the state:\n\nENE-WSW: the dominant set of long and persistent linear features;\nWNW-ESE: the next most obvious interpreted topographic lineament dataset;\nN-S to NNE-SSW: trends mostly associated with known terrane boundaries.\n\nGenerally, only lineaments which have not been published in existing datasets developed by the former Department of Primary Industries (DPI) have been identified in this study. \n\nThe dataset was compiled by GHD to inform the report 'Potential Influences of Geological Structures on Groundwater Flow Systems' for DEPI's Secure Allocation Future Entitlements (SAFE) Project.", "anzlicid": "ANZVI0803005004", "geonet_info_createdate": "2013-06-18", "revisiondate": "2013-06-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f98724a67560c72467d4cb6eb1711548b787b3f2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5280baec-416e-53b9-ac29-54d32d625cf0", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-07-03", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Lite - State Polygon 1:2,000,000 to 1:5,000,000", "alttitle": "VMLITE_VICTORIA_POLYGON_SU2", "tempextentbegin": "2006-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-04-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36298\", \"uuid\": \"5280baec-416e-53b9-ac29-54d32d625cf0\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-07-03\", \"changeDate\": \"2020-07-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Lite - State Polygon 1:2,000,000 to 1:5,000,000", "abstract": "This layer is part of Vicmap Lite and contains polygons representing the mainland, islands and the sea. This Vicmap Lite dataset is suited for use between scales of 1: 2 million and 1 : 5 million. The level of attribute information, the number of features and the number of vertices has been simplified to suit the 1: 2 million - 1 : 5 million scale range. The concept of a Scale Use Code has been introduced to help control the level of detail displayed.\n\nTHIS DATASET WAS LAST UPDATED IN MAY 2014", "anzlicid": "ANZVI0803003514", "geonet_info_createdate": "2020-07-03", "revisiondate": "2020-07-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9888ff3d866ba53c17190a4445ea75899bab0b13", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0753b87f-0896-5eab-a3c7-afc0e9b9f882", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-11-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL All major formats available on request", "type": "dataset", "title": "Mallacoota Inlet Depth Contours at 1:10,000", "alttitle": "BATHYMETRY_MALLACOOTA_ARC", "tempextentbegin": "1981-07-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2000-03-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34167\", \"uuid\": \"0753b87f-0896-5eab-a3c7-afc0e9b9f882\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-11-13\", \"changeDate\": \"2014-11-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Mallacoota Inlet Depth Contours at 1:10,000", "abstract": "This layer contains line features which represent depth contours (bathymetry) in Mallacoota Inlet.", "anzlicid": "ANZVI0803004021", "geonet_info_createdate": "2014-11-13", "revisiondate": "2014-11-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b172f333b810334344c7d889d41d3e31887e134f", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a6baeafa-0d39-55e2-81e0-4dfda58acb12", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Road Class Table", "alttitle": "TR_ROAD_CLASS", "tempextentbegin": "2023-01-24T00:05:25+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:25+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34173\", \"uuid\": \"a6baeafa-0d39-55e2-81e0-4dfda58acb12\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Road Class Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003171", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d1f7fe9e18230a0da4bff0b994e9defff1afb21b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "01479b8f-5d52-5697-a01d-37ab56efa6d9", "publicationdate": "2022-11-11", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Victorian Biodiversity Atlas flora - 10 minute grid summary", "alttitle": "VBA_FLORA_GRID_10M", "tempextentbegin": "1749-12-31T14:20:08+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:27+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36313\", \"uuid\": \"01479b8f-5d52-5697-a01d-37ab56efa6d9\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-07-22\", \"changeDate\": \"2021-08-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Biodiversity Atlas flora - 10 minute grid summary", "abstract": "This layer summarises VBA flora records against a standard grid of 10 degrees longitude/latitude (GDA94). Any VBA taxa record with its centre in a cell is counted as a record for that cell. The number of times a taxon has been recorded in a cell is collated in the RECORDS column. The first date and last date that a taxon has been recorded in a cell are also summarised. VBA data summarised against 5 and 1 minute grids are also available in related datasets. VBA records with a spatial accuracy worse than +/- 9 km are excluded from this layer.", "anzlicid": "ANZVI0803005204", "geonet_info_createdate": "2016-07-22", "revisiondate": "2021-08-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9a2a98851c8ad3c05dbc79c8323fcb907d3541bd", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9c8032e2-0419-5ec3-a76d-d86f957aaf69", "publicationdate": "2022-11-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-02-22", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Catchment Management Authority boundaries", "alttitle": "CMA100", "tempextentbegin": "1997-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2003-09-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34219\", \"uuid\": \"9c8032e2-0419-5ec3-a76d-d86f957aaf69\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-02-22\", \"changeDate\": \"2019-02-22\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Catchment Management Authority boundaries", "abstract": "This layer represents the Catchment Management Authority boundaries (derived from CALP100). It is indicative and should not be used for operational decisions about funding.\nThe Catchment Management Authorities (CMAs) were established on 1 July 1997 with the aim of creating a whole of catchment approach to natural resource management in the state. The new CMAs combined the roles of the former, River Management Boards and Catchment and Land Protection Boards, and community based advisory groups such as salinity plan implementation groups and water quality working groups. Port Phillip has also recently become a CMA. 2014 correction on the West Gippsland and East Gippsland CMA border around the Gippsland Lakes.\nIt is accurate to +/- 100 metres for 80% of the time.", "anzlicid": "ANZVI0803002317", "geonet_info_createdate": "2019-02-22", "revisiondate": "2019-02-22", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "dd08dec720262181109b588483eebdcf15368826", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3d7e5f97-386c-5c5f-b840-a1c735b35413", "publicationdate": "2018-01-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "East Gippsland Marine Habitats November 2009", "alttitle": "EAST_GIPPS_MARINE_HAB_2009", "tempextentbegin": "2003-12-13T13:00:00+00:00", "resowner": "Department of Transport", "tempextentend": "2008-07-15T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36355\", \"uuid\": \"3d7e5f97-386c-5c5f-b840-a1c735b35413\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-04-04\", \"changeDate\": \"2021-11-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "East Gippsland Marine Habitats November 2009", "abstract": "This polygon layer represents marine habitat in the East Gippsland region mapped from satellite imagery and aerial photography with underwater video ground-truthing. The mapping was funded by Natural Heritage Trust to increase the capacity of natural resource managers to make informed decisions regarding asset identification, risk assessment, and management action targets for nearshore marine habitats in the region.", "anzlicid": "ANZVI0803003974", "geonet_info_createdate": "2019-04-04", "revisiondate": "2021-11-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ed3540763e0ecf02e28ad732cd0b158d24b29ef6", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "4d33e1c5-efd0-5fed-ad39-372be4e6db13", "publicationdate": "2022-08-30", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-26", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "type": "dataset", "title": "Plot location for all current Permanent Growth Plots (PGPs) managed by VicForests.", "alttitle": "PGPVF", "tempextentbegin": "2013-06-30T14:00:00+00:00", "resowner": "VicForests", "tempextentend": "2022-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34220\", \"uuid\": \"4d33e1c5-efd0-5fed-ad39-372be4e6db13\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-05-04\", \"changeDate\": \"2022-08-26\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Plot location for all current Permanent Growth Plots (PGPs) managed by VicForests.", "abstract": "Point data describing the location and key characteristics of all PGPs that are currently under active management by VicForests.\nThe data consists of one point for each PGP that is classified as 'current' in VicForests' network of PGPs. PGPs that have been retired or abandoned are not included in the dataset.\nPGPs are permanently demarcated areas of forest that are periodically measured over long periods of time (20-50 years) and they require protection from unplanned distrubance events such fuel reduction burns.", "anzlicid": "ANZVI0803005347", "geonet_info_createdate": "2017-05-04", "revisiondate": "2022-08-26", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8ff134eef41de97863f1f28effecb8fa4541a48c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1b74209b-f279-5d90-9e37-f0d40a42e84e", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-05-30", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcGIS shapefile", "type": "dataset", "title": "Land units of the Corangamite region of Victoria", "alttitle": "CORANGAMITE_LRA", "tempextentbegin": "2002-06-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2003-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36358\", \"uuid\": \"1b74209b-f279-5d90-9e37-f0d40a42e84e\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-30\", \"changeDate\": \"2019-05-30\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Land units of the Corangamite region of Victoria", "abstract": "This dataset is the primary data output from the Corangamite land resource assessment project undertaken in 2002-2003. It contains soil and land information at a scale of 1:100 000 for all land in the region. The study also includes land degradation assessments for each unit.\n\nAt the map scale of this dataset soil-landform units are not homogeneous. For each defined soil-landform unit, the number and proportion of landforms and soil types will vary. A group or groups of soils have been associated with each unit. representative sites and their associated profile properties are recorded in the study report.\n\nImportantly it should be noted that soil attributes (for example texture, sodicity, pH) are expected to vary between acquired soil sites. As the variability of soil attributes within a map unit is difficult to predict, it is important to note that representative soils should be used as a guide only.\n\nThe study report describing the project methodology and dataset attributes, including representative soil profile data, is available from the Victorian Resources Online website (http://vro.depi.vic.gov.au/dpi/vro/coranregn.nsf/pages/soil_landform_map).\n\nDOI 10.4226/92/58e7149507e74", "anzlicid": "ANZVI0803005182", "geonet_info_createdate": "2019-05-30", "revisiondate": "2019-05-30", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2b3634b92cda6e85a038c7a9d8c1aaf02dd15c0e", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3a057b39-7958-57be-8bb9-1b5d1595c844", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Hydrogaphy Water Use Function Table", "alttitle": "HY_WATER_USE_FUNCTION", "tempextentbegin": "2023-01-24T00:05:41+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:41+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34224\", \"uuid\": \"3a057b39-7958-57be-8bb9-1b5d1595c844\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Hydrogaphy Water Use Function Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003195", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6359ed0c3077c8cfd6b1268cebf445ff1dcd41cf", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "21f3f0a9-9c56-50d2-9b16-3147bc8c9fba", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Port Fairy Rocky Cliff Coastal Erosion Hazard", "alttitle": "PF_COAST_HAZARD_ROCKY_CLIFF", "tempextentbegin": "2012-04-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2013-04-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;climatology, meteorology, atmosphere;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36381\", \"uuid\": \"21f3f0a9-9c56-50d2-9b16-3147bc8c9fba\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-07-12\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Port Fairy Rocky Cliff Coastal Erosion Hazard", "abstract": "The Port Fairy Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Port Fairy coastal environment.\n\nThis data identifies areas which feature rocky cliffs in the coastal zone requiring further specific geotechnical investigation.\n\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.", "anzlicid": "ANZVI0803005642", "geonet_info_createdate": "2016-07-12", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "75e28f77b9d99fbf8b1ac4d3dee3f65ca5ab258d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1bb47241-d1c8-5320-9928-1386e5898b3e", "publicationdate": "2023-01-23", "publishedforgroup": "12264;0", "geonet_info_changedate": "2022-09-15", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Limited Distribution", "format": "ESRI Shape", "type": "dataset", "title": "CCS Tender Areas", "alttitle": "CCSPRO", "tempextentbegin": "2009-09-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:05:50+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34251\", \"uuid\": \"1bb47241-d1c8-5320-9928-1386e5898b3e\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-19\", \"changeDate\": \"2022-09-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "CCS Tender Areas", "abstract": "Geological Carbon Storage Exploration Tender Areas\n\nOnshore and Offshore areas that have been offered for work program bidding under the following Acts: \n\nOffshore Commonwealth waters - Offshore Petroleum and Greenhouse Gas Storage Act 2006\n\nOnshore Victoria - Greenhouse Gas Geological Sequestration Act 2008", "anzlicid": "ANZVI0803003708", "geonet_info_createdate": "2013-09-19", "revisiondate": "2022-09-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7801b5f6dd9dbefbc375d80d006c358fec5dceea", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c66d2a77-7333-5770-a2ff-03c5323417aa", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Exploration Graticules with 1 km intervals - AGD66 - Expires 30th June 2005", "alttitle": "GRAT1KM", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "1999-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36391\", \"uuid\": \"c66d2a77-7333-5770-a2ff-03c5323417aa\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-17\", \"changeDate\": \"2013-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Exploration Graticules with 1 km intervals - AGD66 - Expires 30th June 2005", "abstract": "Exploration Graticules are used as the main boundaries for Exploration Licences since 1973\n- AGD66 - Expires 30th June 2005", "anzlicid": "ANZVI0803002371", "geonet_info_createdate": "2013-09-17", "revisiondate": "2013-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4263f1475d6da8855eab8d71643d717f19821256", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9f36fc1c-5145-5d47-b2d3-0595ab0cd9f1", "publicationdate": "2019-04-16", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-09-23", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI Shape", "type": "dataset", "title": "Seismic Survey Lines - for Petroleum Industry Exploration", "alttitle": "SEISMIC_ARC", "tempextentbegin": "1948-12-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2004-10-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36369\", \"uuid\": \"9f36fc1c-5145-5d47-b2d3-0595ab0cd9f1\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-23\", \"changeDate\": \"2013-09-23\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Seismic Survey Lines - for Petroleum Industry Exploration", "abstract": "Seismic Survey Lines - for Petroleum Industry Exploration", "anzlicid": "ANZVI0803002766", "geonet_info_createdate": "2013-09-23", "revisiondate": "2013-09-23", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0128904a51215a1410372ba5b1feabc914c6ef7e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "1d12aef0-cd35-5cbc-833e-4fbbe90f602c", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcInfo, ArcView & MapInfo", "type": "dataset", "title": "Minerals and Petroleum 1:250,000 AMG Map Index", "alttitle": "GINDEX250", "tempextentbegin": "2003-03-27T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2003-03-27T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36372\", \"uuid\": \"1d12aef0-cd35-5cbc-833e-4fbbe90f602c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Minerals and Petroleum 1:250,000 AMG Map Index", "abstract": "Minerals and Petroleum 1:250,000 AMG Map Index. Derived from l250g index - with reduced polygons", "anzlicid": "ANZVI0803002680", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c2742199199a43d55f52292d7a9d739e6cb0436b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9d9c50db-a1a9-505c-b0a3-8815e0c5da66", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:15,000 Edition 47", "alttitle": "MELWAY_MAPINDEX_15_ED47", "tempextentbegin": "2019-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2019-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34236\", \"uuid\": \"9d9c50db-a1a9-505c-b0a3-8815e0c5da66\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-10-04\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:15,000 Edition 47", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:15 000 Queenscliffe maps.", "anzlicid": "ANZVI0803004592", "geonet_info_createdate": "2018-10-04", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "65ff88ed1b34ec71846ebdbb1af452a2bff2e88c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "411d8214-d506-5e2f-bc0b-c93137cc46c8", "publicationdate": "2020-02-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-04-07", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "type": "dataset", "title": "Historical Business Listings from Sands & McDougall directories", "alttitle": "SANDS_MCDOUGALL_PUBLIC", "tempextentbegin": "1895-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "1974-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36377\", \"uuid\": \"411d8214-d506-5e2f-bc0b-c93137cc46c8\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-08-08\", \"changeDate\": \"2021-04-07\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Historical Business Listings from Sands & McDougall directories", "abstract": "The Sands & McDougall dataset is for use on the Victoria Unearthed website and is available for download.\n\nThis dataset contains the business listings from selected years of the Sands & McDougall directories, a pre-cursor to the Yellow Pages. \n\nThe dataset was created by digitising the business directories that were published at approximately 10 year intervals between 1896 and 1974. The extracted information includes the business name, address and business type as listed in the Sands & McDougall directories. The extracted address information was subsequently geocoded to provide a point location that can be mapped using GIS software.\n\nAdditional information has been provided to allow the accuracy of the results to be evaluated with each record containing the data used at each stage of the data capture process; from the extraction from the directory to the final QA checks.", "anzlicid": "ANZVI0803005905", "geonet_info_createdate": "2019-08-08", "revisiondate": "2021-04-07", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "846ab3f41049d5a52c1fc81ca1e8b1bcb12290b0", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "088a053c-6402-5584-ae18-a76d8176049e", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Bare Ground Reach Summary Table", "alttitle": "ISC2010_BARE_GROUND_R", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36330\", \"uuid\": \"088a053c-6402-5584-ae18-a76d8176049e\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Bare Ground Reach Summary Table", "abstract": "The ISC2010_BARE_GROUIND_R table is the Statistical Summary table for the Bare Ground Metric at the Reach level.\n\nThe ISC2010_BARE_GROUND_R table is designed to JOIN to the ISC2010_RIVER_CENTRELINES_R feature class.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005128", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "aa21e3a6e1d2c608bc110d96534c2403c87af3ee", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d433599e-e517-5b5b-a75b-45bb95ad1b85", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-05-20", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Structural Vegetation (1995)", "alttitle": "SVEG100", "tempextentbegin": "1993-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2000-02-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Unknown", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34339\", \"uuid\": \"d433599e-e517-5b5b-a75b-45bb95ad1b85\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-08\", \"changeDate\": \"2021-05-20\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Structural Vegetation (1995)", "abstract": "Structural vegetation mapping of forest in Victoria based on the Land Conservation Council (LCC) vegetation classification scheme.\nThe layer is independent of land tenure and is a combination of existing data from multiple sources (predominantly LCC) and primary mapping based on satellite image interpretation.\nUsing histoirc 1:63,360 forest maps as a source.", "anzlicid": "ANZVI0803002171", "geonet_info_createdate": "2017-03-08", "revisiondate": "2021-05-20", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f72a8a6e28a4ccea3dd8aac5f7ea59426d8b263a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "bd4147bb-e07c-5d7b-8894-debdd6a54251", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats available: \u00b7 MapInfo \u00b7 ESRI 'SHAPE' files \u00b7 DXF File \u00b7 Intergraph.DGN \u00b7 DWG (AutoCAD)", "type": "product", "title": "Planning scheme ordinance links - Vicmap Planning", "alttitle": "VMPLAN_PLAN_ORDINANCE", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:18+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36477\", \"uuid\": \"bd4147bb-e07c-5d7b-8894-debdd6a54251\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-07-26\", \"changeDate\": \"2022-07-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Planning scheme ordinance links - Vicmap Planning", "abstract": "Product version containing the following 2 datasets:- For detailed metadata, see individual records.\nVMPLAN_PLAN_ORDINANCE_LPP_URL (ANZVI0803005951)\nVMPLAN_PLAN_ORDINANCE_VPP_URL (ANZVI0803005954) \n\nNote: The VPP table was updated 14/7/2022 to accommodate changes to the the new format Planning Scheme webpages.The field LGA_CODE was added and a unique url for each zone and overlay for every scheme now exists. Hence, the number of records n the table has significantly increased.", "anzlicid": "ANZVI0803005955", "geonet_info_createdate": "2019-07-26", "revisiondate": "2022-07-14", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ae09794dbb5110e5fd3c61a4e1896303ad3d32ee", "fields": {"available_formats": "ECW,GeoTIFF,JPEG,JPEG 2000,TIFF", "resclassification": "unclassified", "uuid": "c034d98c-eb78-5a7b-b04d-03cf044f9f9a", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Not Known", "type": "dataset", "title": "Victorian Land Cover Mapping 2015", "alttitle": "LANDCOVER_2015", "tempextentbegin": "2014-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2015-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34343\", \"uuid\": \"c034d98c-eb78-5a7b-b04d-03cf044f9f9a\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-20\", \"changeDate\": \"2021-07-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Land Cover Mapping 2015", "abstract": "Land cover mapping data is an annual component of the Victorian Land Use Information System, the VLUIS. The land cover information has been created specifically for the VLUIS using time series analysis of the MOD13Q1 or MYD13Q1 products produced by NASA using data collected by the MODIS sensor and freely available on the Reverb | ECHO website.\nGround data is collected annually across Victoria using a stratified random sampling approach for calibration of the annual seasonal curves and validation of the classification output. The ground data is split into three groups with 50% used to develop classification rules, 25% used to produce interim validation results that feed back into the rule development process with the remaining 25% used to independently validate the final classification. Error matrices for each land cover dataset from 2009 have been produced from this final validation.\n\nThe TIMESAT GUI is used to create smoothed annual time series for the Normalised Difference Vegetation Index (NDVI), Enhanced Vegetation Index (EVI) and the Red and Near Infrared (NIR) MOD13Q1 or MYD13Q1 bands using the Savitsky-Golay algorithm. A time series of 23 images was used and a suite of 11 seasonal parameters created that each numerically describe features of the annual seasonal curves for each band. In addition the standard deviation of the annual seasonal curve is calculated for each band and used in conjunction with the seasonal parameters.\nA three-tiered hierarchical classification was developed to assign a dominant land cover class to each pixel. Initially, rules developed using the data mining tool See5 and / or expert knowledge were applied to the seasonal parameters and the annual standard deviation in conjunction with a GIS data-set of water bodies greater than 12.5ha in area to classify each pixel as either Tree, Non-tree or Water based on two data sets from the corporate spatial data library, HY_WATER_AREA_POLY.shp and VM_LITE_HY_WATER_AREA.shp; and are combined to form the water bodies layer. In addition, the primary classes are cross checked using data from preceding and following years to reduce misclassification prior to the secondary classification.\nA secondary classification developed using rules based on expert knowledge and / or See5 is applied to split the primary class Tree into the secondary classes Native Woody Cover and Treed Production and the primary class Non-tree into the secondary classes Pasture/ Grassland and Crops.\n\nFinally, a tertiary classification further divides the secondary class Treed Production into the tertiary classes Hardwood Plantation, Softwood Plantation and evergreen or deciduous Woody Horticulture and the secondary class Crops into the tertiary classes Brassicas, Legumes, Cereals and Non-Woody Horticulture based on rules developed using the data mining tool See5 and modified where appropriate by expert knowledge.\nAdditional information on land cover mapping, including map symbology, can be found on Victorian Resources Online.\n\nDOI 10.4226/92/58e732125d9d0", "anzlicid": "ANZVI0803005645", "geonet_info_createdate": "2019-05-20", "revisiondate": "2021-07-14", "spatialrepresentationtype_text": "Grid"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "af3d2b8b01b369c1cd4cac6b515cf903fe78f603", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "56f4f2e2-0063-5f76-b4c9-e95e932cdb4b", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Planned Burns 2014/15 - 2016/17", "alttitle": "BURNPLAN15", "tempextentbegin": "2014-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2015-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34344\", \"uuid\": \"56f4f2e2-0063-5f76-b4c9-e95e932cdb4b\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-08\", \"changeDate\": \"2017-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Planned Burns 2014/15 - 2016/17", "abstract": "Last updated: October 2014\n\nThis dataset represents the spatial extent of prescribed burns planned for ignition and associated mechanical and vegetation works on Public Land in Victoria. This data is prepared annually for prescribed burns planned for the immediate three-year period.", "anzlicid": "ANZVI0803005318", "geonet_info_createdate": "2017-03-08", "revisiondate": "2017-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ae65af7f6175a3df39cd522c336b9feead264b21", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "77e839ac-425e-5b9e-a9f8-1c032406eda8", "publicationdate": "2018-12-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-06-18", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Aquifer Salinity - Shallow", "alttitle": "AQUIFER_SAL_SHALLOW", "tempextentbegin": "2023-01-24T00:06:20+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:20+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36485\", \"uuid\": \"77e839ac-425e-5b9e-a9f8-1c032406eda8\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-06-18\", \"changeDate\": \"2013-06-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Aquifer Salinity - Shallow", "abstract": "This dataset contains groundwater salinity information for boreholes which were less than 20m in depth and had terminated at least 30m above bedrock. The bores have been extracted predominantly from the Groundwater Management System (GMS) and the State Observation Bore Network (SOBN). \nIt should be noted that the analysis undertaken with the salinity data was only of a preliminary nature and should be treated with a critical approach. Local validation of the data (e.g. screen depths) needs to be undertaken in detail.\n \nThe dataset was compiled by GHD to inform the report 'Potential Influences of Geological Structures on Groundwater Flow Systems' for DEPI's Secure Allocation Future Entitlements (SAFE) Project.", "anzlicid": "ANZVI0803005003", "geonet_info_createdate": "2013-06-18", "revisiondate": "2013-06-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d3b9123450fd1d6aabea9abcfbdf4ff6b6e26fe9", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "5e1c4933-0ab6-5172-8a31-1be412a45ee9", "publicationdate": "2019-02-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-21", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "DIGITAL", "type": "nonGeographicDataset", "title": "RWC contact details", "alttitle": "RWC_CONTACT_DETAILS", "tempextentbegin": "2015-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36439\", \"uuid\": \"5e1c4933-0ab6-5172-8a31-1be412a45ee9\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2022-10-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "RWC contact details", "abstract": "This table is used by the Groundwater Resource Reporting Tool to display the contact details of Rural Water Corporations in the report.\n\nEach row in the table relates to a groundwater catchment and the relavent corporation who manages the catchment area.", "anzlicid": "ANZVI0803008421", "geonet_info_createdate": "2019-11-19", "revisiondate": "2022-10-21", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b5a298d51fdbc7cc12961f6b9f5411a3f1c204d2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3a6e97a2-7f95-532f-b618-e4e10a078d83", "publicationdate": "2019-11-22", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-12-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Victorian Aquifer Framework (VAF) Salinity Distribution - LTB1_TDS", "alttitle": "VAF112_LTB1_TDS", "tempextentbegin": "2012-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2014-04-13T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36442\", \"uuid\": \"3a6e97a2-7f95-532f-b618-e4e10a078d83\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-12-05\", \"changeDate\": \"2019-12-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Aquifer Framework (VAF) Salinity Distribution - LTB1_TDS", "abstract": "This dataset is the Victorian Aquifer Framework (VAF) Salinity Distribution. It refers to the salinity distribution for Aquifer Number of 112 (Lower Tertiary Basalts). The salinity distributions reflect the beneficial use segments prescribed in the State Environment Protection Policy (Waters) (2018)\nPlease refer to the master metadata record VAF 'Victorian Aquifer Framework (VAF) Salinity Distribution for detailed information.", "anzlicid": "ANZVI0803008615", "geonet_info_createdate": "2019-12-05", "revisiondate": "2019-12-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bfacf0e537feb8aaffd15bfe0710f5e1bc0c1a49", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f028ec41-2edf-58f8-bddf-22aac9b8231f", "publicationdate": "2023-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo, ArcView.", "type": "dataset", "title": "Relinquished Mineral Exploration Licence Areas", "alttitle": "ELRELIN", "tempextentbegin": "1964-12-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:05:53+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36398\", \"uuid\": \"f028ec41-2edf-58f8-bddf-22aac9b8231f\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-19\", \"changeDate\": \"2021-07-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Relinquished Mineral Exploration Licence Areas", "abstract": "The areas occur usually when part of an Exploration Licence is relinquished and the entire tenement has not expired.", "anzlicid": "ANZVI0803004622", "geonet_info_createdate": "2013-09-19", "revisiondate": "2021-07-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "35da31186e538c1325d602ae9fe389db654ab059", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "4b490b93-88a7-5fd1-8947-f9d7c691ff0f", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-12-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "nonGeographicDataset", "title": "Flood data note code reference table at 2014", "alttitle": "NOTE_CODE", "tempextentbegin": "1899-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-08-17T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;environment;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36407\", \"uuid\": \"4b490b93-88a7-5fd1-8947-f9d7c691ff0f\", \"schema\": \"iso19115-3\", \"createDate\": \"2011-07-04\", \"changeDate\": \"2022-12-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Flood data note code reference table at 2014", "abstract": "This table decodes the random integer IDs found in the NOTE_CODE field of many flood schema datasets.\nIts purpose is to condense lengthy comments regarding flood data collection notes, into a 6 digit numeric value to store against spatial features in the respective attribute tables.\n\nThere may be many to one relationships between features and note codes. Note codes are not a mandatory field and many features have a null note code.\n\nNote codes are stored against all features in flood layers and these can be expanded to detailed comments about the accuracy, reliability or interdependancies of the data.", "anzlicid": "ANZVI0803004344", "geonet_info_createdate": "2011-07-04", "revisiondate": "2022-12-09", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9c27b89744b7dfb2e7466e1f0f8ed97ee915da2c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e4f7a09b-0cdc-56cb-ac27-2b83b3bb2b0e", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-02-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Hydro - Water Structure Line", "alttitle": "HY_WATER_STRUCT_LINE", "tempextentbegin": "1973-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "1994-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;environment;inland waters;farming;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34272\", \"uuid\": \"e4f7a09b-0cdc-56cb-ac27-2b83b3bb2b0e\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-21\", \"changeDate\": \"2020-02-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Hydro - Water Structure Line", "abstract": "This layer is part of Vicmap Hydro and contains lines delineating structural features relating to hydrography.\nIncludes; Wharfs, Marinas, Offshore Platforms, Breakwates, Launching Ramps, Dam Walls, Spill Ways, Locks & Pipelines.", "anzlicid": "ANZVI0803002496", "geonet_info_createdate": "2020-02-21", "revisiondate": "2020-02-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a00693f36168221a58878c3248e7a40adf886887", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "aecf5e44-a5fa-5f03-b96b-e4aae0950556", "publicationdate": "2018-08-06", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-07-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Car Parking / PPTN Area", "alttitle": "PPTN_400M_UNION", "tempextentbegin": "2018-08-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:13+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34322\", \"uuid\": \"aecf5e44-a5fa-5f03-b96b-e4aae0950556\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-07-17\", \"changeDate\": \"2019-07-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Car Parking / PPTN Area", "abstract": "Area that is impacted by the reduced car parking requirements for uses in commercial areas and for land within walking distance of high-quality public transport.\n\nFor land within 400m of public transport (as shown on the new Principal Public Transport Network Area Maps, the reduced carparking rates specified in Column B of Table 1 in Clause 52.06 will apply. These rates will apply to the whole of a site, even if it is only part of the site which is within the PPTN Area", "anzlicid": "ANZVI0803005907", "geonet_info_createdate": "2019-07-17", "revisiondate": "2019-07-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a9168141310708ac9ec9e24667ae440eb7fb9bc7", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0b20b187-71ab-5236-9176-5e471ceae6bb", "publicationdate": "2022-11-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-10-11", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL. As per data.vic, spatial datamart and fme.", "type": "dataset", "title": "Geological Deep Leads Polygons (1:100,000)", "alttitle": "DEEPLD100_POLYGON", "tempextentbegin": "1995-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2023-01-24T00:06:14+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36463\", \"uuid\": \"0b20b187-71ab-5236-9176-5e471ceae6bb\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-10-11\", \"changeDate\": \"2019-10-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological Deep Leads Polygons (1:100,000)", "abstract": "The data displays areas of geological deep leads\n\nThe data have been collected by the Geological Survey of Victoria. The dataset is accompanied by other datasets representing geology outcrop and boundaries, structural lines, miscellaneous lines and points, miscellaneous polygons, and placer deposits.", "anzlicid": "ANZVI0803003367", "geonet_info_createdate": "2019-10-11", "revisiondate": "2019-10-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a90f235f5540aaa9b459c5ac25bf89217e20415a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "78afcae2-d505-5c40-a8f4-83c5f4842646", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-11-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, MapInfo Non digital - printed map.", "type": "dataset", "title": "Geological Lines (1:1,000,000)", "alttitle": "GEOL1M_ARC", "tempextentbegin": "1999-07-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2003-10-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36465\", \"uuid\": \"78afcae2-d505-5c40-a8f4-83c5f4842646\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-29\", \"changeDate\": \"2019-11-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological Lines (1:1,000,000)", "abstract": "This dataset contains primary geological data, namely boundary types separating rock units. The linear features in this dataset are only comprised of geological boundaries and faults.\n\nThe data have been collected by the Geological Survey of Victoria. The dataset is accompanied by another dataset representing structural lines.", "anzlicid": "ANZVI0803003377", "geonet_info_createdate": "2019-11-29", "revisiondate": "2019-11-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "374009223aff556b3d35391c4fbec420552febf5", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "329b4124-9b3c-55ab-ac34-d58482bc8b06", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Fire Severity Classes for April fire 2005 Wilson's Promontory.", "alttitle": "FIRE_SEV05", "tempextentbegin": "2005-03-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2005-08-24T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;imagery base maps earth cover;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36469\", \"uuid\": \"329b4124-9b3c-55ab-ac34-d58482bc8b06\", \"schema\": \"iso19115-3\", \"createDate\": \"2010-01-27\", \"changeDate\": \"2022-02-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Fire Severity Classes for April fire 2005 Wilson's Promontory.", "abstract": "This map is derived from a screen based interpretation and mapping of aerial imagery into fire severity \nclasses aerial photography. The classes represent levels of fire burn and scorch activity in the eucalypt and non-eucalypt forest, understorey and treeless areas. The classification was validated using field check sites. An accuracy assessment has not been carried out.", "anzlicid": "ANZVI0803003335", "geonet_info_createdate": "2010-01-27", "revisiondate": "2022-02-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4bd65d0cc315255233d7cd6781b9a3323d4916a2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1715e2ef-5bb6-52a6-801b-2f30fb277830", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Exploration Graticules with 10 km intervals - AGD66 - Expires 30th June 2005", "alttitle": "GRAT10KM", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "1999-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36470\", \"uuid\": \"1715e2ef-5bb6-52a6-801b-2f30fb277830\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-17\", \"changeDate\": \"2013-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Exploration Graticules with 10 km intervals - AGD66 - Expires 30th June 2005", "abstract": "Exploration Graticules are used as the main boundaries for Exploration Licences since 1973\n- AGD66 - Expires 30th June 2005", "anzlicid": "ANZVI0803002370", "geonet_info_createdate": "2013-09-17", "revisiondate": "2013-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5b7277fb54d27e48548cf2248168094e3ffc3598", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8d2d9567-af0f-595e-92bd-465bcf55ed34", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Road Divided Road Table", "alttitle": "TR_DIVIDED_ROAD", "tempextentbegin": "2023-01-24T00:06:27+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:27+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34367\", \"uuid\": \"8d2d9567-af0f-595e-92bd-465bcf55ed34\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Road Divided Road Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003543", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5d3ae462817741fce20809499906626bca8f3650", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ffb4ff2b-7c99-5d51-9265-7ed4588b4185", "publicationdate": "2018-10-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-11-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "2016 Bellarine Peninsula 1% AEP Coastal Inundation Static Model with 0.2m Sea Level Rise", "alttitle": "BP_STATIC_1AEP_020SLR", "tempextentbegin": "2014-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;climatology, meteorology, atmosphere;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34273\", \"uuid\": \"ffb4ff2b-7c99-5d51-9265-7ed4588b4185\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-10-03\", \"changeDate\": \"2022-11-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2016 Bellarine Peninsula 1% AEP Coastal Inundation Static Model with 0.2m Sea Level Rise", "abstract": "The Bellarine-Corio Bay Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Bellarine-Corio Bay coastal environment.\n\nStatic (bathtub) inundation modelling was carried out to create this data layer for 1% Annual Exceedance Probability (AEP) coastal inundation under the assumption of 0.2m Sea Level Rise in 2016, for the following study areas along the coast of the Bellarine Peninsula and Greater Geelong area: Avalon; Breamlea; Connewarre Lake; Geelong Waterfront; Indented Head; Limeburners Lagoon; Newcomb; North Geelong; Portarlington; Queenscliff; Salt Lake; Sands Caravan Park; St Leonards; and Swan Bay.\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.\nUnits are in mAHD", "anzlicid": "ANZVI0803005915", "geonet_info_createdate": "2018-10-03", "revisiondate": "2022-11-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5bd0193d88f657760d3efcdbc6c3f8bcdc320ef3", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7258931e-3703-5d52-9401-5591a1048872", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-08-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Not Known", "type": "dataset", "title": "Victorian Water Asset Database (VWAD) - POLYLINE_LAYER", "alttitle": "VWAD_PL", "tempextentbegin": "2013-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-05-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36411\", \"uuid\": \"7258931e-3703-5d52-9401-5591a1048872\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-08-05\", \"changeDate\": \"2015-08-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Water Asset Database (VWAD) - POLYLINE_LAYER", "abstract": "Victorian Water Asset Database (VWAD), contains the identification of water assets and their attributes for the state of Victoria. The VWAD includes features such as lakes, rivers, creeks, wetlands, water storages, estuaries, groundwater aquifers, springs, large marine intertidal zones,\nbut does not include specific irrigation and water supply infrastructure such as irrigation channels, bores and irrigation distribution networks.", "anzlicid": "ANZVI0803005335", "geonet_info_createdate": "2015-08-05", "revisiondate": "2015-08-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "66f6682c99e192c43de65e67f86f34c5bd41752c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3a20e0fd-7586-585c-a387-788f452c3c6e", "publicationdate": "2022-11-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-02-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Transport - Airport Infrastucture Point", "alttitle": "TR_AIR_INFRA_POINT", "tempextentbegin": "1973-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:58+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36414\", \"uuid\": \"3a20e0fd-7586-585c-a387-788f452c3c6e\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-21\", \"changeDate\": \"2020-02-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Transport - Airport Infrastucture Point", "abstract": "This layer is part of Vicmap Transport and exists is a dataset containing point features delineating Helipads.", "anzlicid": "ANZVI0803002612", "geonet_info_createdate": "2020-02-21", "revisiondate": "2020-02-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c589554ef266d71af456205e3fe8c6e2ac12f117", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ad412542-d72d-54f5-8ee3-1eb0635e9333", "publicationdate": "2018-02-02", "publishedforgroup": "12264;0", "geonet_info_changedate": "2017-03-07", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "type": "dataset", "title": "5 minute increments of the GDA94 latitude/longitude graticule", "alttitle": "GRID_5M", "tempextentbegin": "2011-10-25T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:05:59+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36417\", \"uuid\": \"ad412542-d72d-54f5-8ee3-1eb0635e9333\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-07\", \"changeDate\": \"2017-03-07\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "5 minute increments of the GDA94 latitude/longitude graticule", "abstract": "This dataset is a simple polygon layer of rectangular cells aligned to 5 minute increments of the GDA94 latitude/longitude graticule. It is designed for use as an indexing mechanism for point record observations of flora and fauna. The layer covers an area of south-east Australia extending from 139 degrees to 151 degrees 30 minutes EAST and 33 degrees to 42 degrees SOUTH. It thus incorporates substantial areas of South Australia and New South Wales plus all of Bass Strait and the north coast of Tasmania.", "anzlicid": "ANZVI0803004130", "geonet_info_createdate": "2017-03-07", "revisiondate": "2017-03-07", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1036c35a97d42304893bfa97a170f90c07c1d71b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a0a3117e-8ad5-5ab5-b5fc-7f3c12d4d1bc", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, MapInfo Non digital - printed maps", "type": "dataset", "title": "Miscellaneous geological lines and points (1:250,000)", "alttitle": "MISCL250", "tempextentbegin": "1969-12-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2003-10-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34280\", \"uuid\": \"a0a3117e-8ad5-5ab5-b5fc-7f3c12d4d1bc\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-17\", \"changeDate\": \"2013-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Miscellaneous geological lines and points (1:250,000)", "abstract": "This dataset displays miscellaneous geological line and point data not covered by other geological datasets.\n\nThe data has been collected by the Geological Survey of Victoria. This dataset is accompanied by other datasets representing geological polygons and boundaries, structural lines, miscellaneous polygons, metamorphism, and placer deposits.", "anzlicid": "ANZVI0803002725", "geonet_info_createdate": "2013-09-17", "revisiondate": "2013-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "42a80a5e5bc8954278baa96334c154fe4a7b1cc0", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "b2a80090-1731-54a1-a264-63cd3b9f2f54", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "Land Status - PA - Water Authority Land (subset of PLM100_POLYGON)", "alttitle": "PLM100_V_PA_WATER", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:06:01+00:00", "maintenanceandupdatefrequency_text": "Daily", "locale": "eng", "status": "notobsolete;planned", "topiccat": "utilities communication;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34284\", \"uuid\": \"b2a80090-1731-54a1-a264-63cd3b9f2f54\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-19\", \"changeDate\": \"2022-09-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "limitedDistribution", "defaulttitle": "Land Status - PA - Water Authority Land (subset of PLM100_POLYGON)", "abstract": "Land Status - Petroleum Act (PA) - Water Authority Land (subset of PLM100_POLYGON)", "anzlicid": "ANZVI0803003070", "geonet_info_createdate": "2013-09-19", "revisiondate": "2022-09-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d1aa5e91ca6de42ea0c23f767f19db1ae3eced69", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "4803b0e0-e312-5371-8e6a-88248e42e17d", "publicationdate": "2022-11-11", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Victorian Biodiversity Atlas flora records (unrestricted) for sites with high spatial accuracy", "alttitle": "VBA_FLORA25", "tempextentbegin": "1749-12-31T14:20:08+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:01+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36421\", \"uuid\": \"4803b0e0-e312-5371-8e6a-88248e42e17d\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-07-22\", \"changeDate\": \"2021-08-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Biodiversity Atlas flora records (unrestricted) for sites with high spatial accuracy", "abstract": "This layer contains a snapshot of flora taxa records from the Victorian Biodiversity Atlas (VBA) (including most threatened taxa). The main attributes in this layer are survey id, survey location, date, time, locational accuracy, taxa recorded, counts, observation type, survey type, collector, and reliability of the record. The VERS_DATE column identifies the currency of the data.\n\nAlthough this is a point layer, the actual accuracy of the site can range from +/- 1m to +/- 500m.\n\nThe FFG field has been updated to reflect the 2021 FFG Act amendments, and the Victorian Advisory List (VICADV) is now obsolete.\n\nThis layer excludes restricted taxa records. These records are contained in the related (but restricted) dataset VBA_FLORA_RESTRICTED. Public users wishing to view the general location of these records should refer to the related dataset VBA_RESTRICTED_1M.", "anzlicid": "ANZVI0803004163", "geonet_info_createdate": "2016-07-22", "revisiondate": "2021-08-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "52fc8fd69ea10ad790c3d6bd3063b50d62984ec1", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "eb49d133-830c-5d15-8541-103d32a82ed3", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-15", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI Shapefile", "type": "dataset", "title": "Geological Facies (1:100,000)", "alttitle": "FACIES100_POLYGON", "tempextentbegin": "1995-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2023-01-24T00:06:03+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36427\", \"uuid\": \"eb49d133-830c-5d15-8541-103d32a82ed3\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-29\", \"changeDate\": \"2022-09-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological Facies (1:100,000)", "abstract": "Geological Facies", "anzlicid": "ANZVI0803002512", "geonet_info_createdate": "2018-03-29", "revisiondate": "2022-09-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "eda87707085481f8a52894452ec015ec4a1ae3e8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "55f6cc6b-20d5-5fbf-b601-3728aa8ad41c", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Port Fairy 100 ARI 2050 0.4m SLR Inundation", "alttitle": "PF_100ARI_40CMSLR_EXTENT", "tempextentbegin": "2012-04-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2013-04-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;geoscientific information;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36430\", \"uuid\": \"55f6cc6b-20d5-5fbf-b601-3728aa8ad41c\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-07-12\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Port Fairy 100 ARI 2050 0.4m SLR Inundation", "abstract": "The Port Fairy Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Port Fairy coastal environment.\n\nThis data represents the inundation extent for the Port Fairy study area. It has been derived from the combined analysis of the results of \"bathtub\" inundation modelling (considering astronomical tide, barometric setup and wave setup) and \"dynamic coastal inundation numerical modelling\" for the coastal area of the Port Fairy township (estimating combined ocean and catchment flooding).\n\nThe following conditions were assumed:\n- 10 year Average Recurrence Interval (ARI) Riverine Boundary Condition\n- 100 year ARI Ocean Boundary Condition\n- 2050, 0.4 m Sea Level Rise \n\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.", "anzlicid": "ANZVI0803005635", "geonet_info_createdate": "2016-07-12", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d439e6fe270b57eaa4bb808dbc90559041c1d68d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1f4cb259-2850-517b-9157-85fdb87000cd", "publicationdate": "2021-07-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Expired Gold Mining Leases - 1860s to 1958", "alttitle": "GMLHST", "tempextentbegin": "2001-04-09T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:06:07+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34301\", \"uuid\": \"1f4cb259-2850-517b-9157-85fdb87000cd\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Expired Gold Mining Leases - 1860s to 1958", "abstract": "Contains mostly licences from 1860 to 1930\nWas digitized to help in identifying land where native title claims could be rejected.", "anzlicid": "ANZVI0803002428", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ddfadd754b2f65ff132fb5e64222f0a93b6d89c0", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8508ebb0-1299-5b99-a527-cdf3fa0837c0", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Water Body polygon features", "alttitle": "ISC2010_WATER_BODIES", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34378\", \"uuid\": \"8508ebb0-1299-5b99-a527-cdf3fa0837c0\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Water Body polygon features", "abstract": "The ISC2010_WATER_BODIES polygon features represent the areas of the stream bed that contained water at the time of the survey. Water body features less than 5m2 have been removed so that data volume is manageable.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005118", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ae6375c781494c82cd7aed2579468a0d0544de5f", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f64602d7-08e4-5530-a4d4-d70eb849dcd1", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Property Graphic Type Table", "alttitle": "PR_GRAPHIC_TYPE", "tempextentbegin": "2023-01-24T00:06:31+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:31+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36518\", \"uuid\": \"f64602d7-08e4-5530-a4d4-d70eb849dcd1\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Property Graphic Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003147", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ae3b169c9fe8ef649ccc4ccfcf2980335859718c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "5bf85f7b-f296-5671-b0ba-009cf588b3da", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:5,000 Edition 47", "alttitle": "MELWAY_PAGEGRID_5_ED47", "tempextentbegin": "2019-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2019-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36523\", \"uuid\": \"5bf85f7b-f296-5671-b0ba-009cf588b3da\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-10-04\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:5,000 Edition 47", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:5 000 city maps.", "anzlicid": "ANZVI0803004596", "geonet_info_createdate": "2018-10-04", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "687f4d2e0d976bdc601f034b3f0fdcc56041975b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5ef177dc-9bea-5b18-8555-8f66de2330bc", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-07-03", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Lite - Public Land Classification Polygon - 1:1,000,000 to 1:5,000,000", "alttitle": "VMLITE_PUBLIC_LAND_SU3", "tempextentbegin": "2006-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2008-07-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36542\", \"uuid\": \"5ef177dc-9bea-5b18-8555-8f66de2330bc\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-07-03\", \"changeDate\": \"2020-07-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Lite - Public Land Classification Polygon - 1:1,000,000 to 1:5,000,000", "abstract": "This layer is part of Vicmap Lite and contains polygon features delineating public land areas. This Vicmap Lite dataset is suited for use between scales of 1: 1 million and 1 : 5 million. The polygons were sourced from PLMMT100PLY. The level of attribute information, the number of features and the number of vertices has been simplified to suit the 1:1 million - 1 : 5 million scale range. The concept of a Scale Use Code has been introduced to help control the level of detail displayed.\n\nTHIS DATASET WAS LAST UPDATED IN AUGUST 2008", "anzlicid": "ANZVI0803003529", "geonet_info_createdate": "2020-07-03", "revisiondate": "2020-07-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8b88b4d843c38863abee8f5937c7473ec4216de3", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "4c1c6992-2be6-5d70-853d-c30407e394ea", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-02-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Regolith Regional Radiometric Signature Area Lines (1:100,000)", "alttitle": "RRRADSIG100_ARC", "tempextentbegin": "2001-06-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36546\", \"uuid\": \"4c1c6992-2be6-5d70-853d-c30407e394ea\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-09\", \"changeDate\": \"2016-02-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Regolith Regional Radiometric Signature Area Lines (1:100,000)", "abstract": "This data contains areas of regolith materials classified according to their radiometric response. The interpretation concentrates on areas of alluvial and colluvial sediments and is intended to give an indication of the provenance of the material contained in these deposits.", "anzlicid": "ANZVI0803003392", "geonet_info_createdate": "2016-02-09", "revisiondate": "2016-02-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "25ba72b7dff7883f94e840ae8ce11037cdc81254", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5999b66c-da42-53b9-9ac3-40c28cba1d3b", "publicationdate": "2022-09-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "CFA_PDD_RAPPEL", "alttitle": "CFA_PDD_RAPPEL", "tempextentbegin": "2018-10-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;planned", "topiccat": "boundaries;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34409\", \"uuid\": \"5999b66c-da42-53b9-9ac3-40c28cba1d3b\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-29\", \"changeDate\": \"2022-03-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "limitedDistribution", "defaulttitle": "CFA_PDD_RAPPEL", "abstract": "Boundaries indicating the Predetermined Rappel Dispatch Boundaries for Aircraft. The main area is in the east of the state.This dataset is upto date for 2021/22 season.", "anzlicid": "ANZVI0803005956", "geonet_info_createdate": "2019-11-29", "revisiondate": "2022-03-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "60a1f6adebb462c9d0a6bdb53d4c4747e6629332", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9c3af4a5-319e-5a44-a662-4da755882d8f", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-09-19", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcInfo", "type": "dataset", "title": "Petroleum Polygons and Text for the image TSHEOTWTWT - please refer to it's metadata", "alttitle": "TSHEOTWTWT_T", "tempextentbegin": "1994-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:06:47+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36572\", \"uuid\": \"9c3af4a5-319e-5a44-a662-4da755882d8f\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-19\", \"changeDate\": \"2013-09-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "limitedDistribution", "defaulttitle": "Petroleum Polygons and Text for the image TSHEOTWTWT - please refer to it's metadata", "abstract": "Petroleum Polygons and Text for the image TSHEOTWTWT - please refer to it's metadata", "anzlicid": "ANZVI0803002956", "geonet_info_createdate": "2013-09-19", "revisiondate": "2013-09-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "195197807ecbbc6a94b0c1bcdfd493c8571daf39", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "dc3dade1-803e-5804-87b4-681121c1ee22", "publicationdate": "2020-11-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-05-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Marginal Mile", "alttitle": "MARGINAL_MILE", "tempextentbegin": "2018-12-29T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34442\", \"uuid\": \"dc3dade1-803e-5804-87b4-681121c1ee22\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-06-12\", \"changeDate\": \"2021-05-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Marginal Mile", "abstract": "This dataset records where the Marginal Mile has been identified across Eastern Victoria. The data was created from a review across all government gazettes in 2019/20. This is a subset of the Fire Protected Area.\nThe marginal mile layer consists of private land within 1.5km of national park, State forest or protected public land in the east of the state. DELWP is responsible for fire prevention within the marginal mile and declares the prohibited period across 14 local government areas (LGAs) in the east annually for this tenure. Information included is LGAs, PLM 25, town and major road names.", "anzlicid": "ANZVI0803008645", "geonet_info_createdate": "2020-06-12", "revisiondate": "2021-05-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "dc6b8d1eb53336c41ffc33f32e86f198a01c0ae4", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "fa5a6f82-f3a4-5012-85ee-361707bc6c87", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Bank Full Width 100m Section Summary Table", "alttitle": "ISC2010_BANKFULL_WIDTH_S", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36583\", \"uuid\": \"fa5a6f82-f3a4-5012-85ee-361707bc6c87\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Bank Full Width 100m Section Summary Table", "abstract": "The ISC_BANKFULL_WIDTH_S table is the Statistical Summary table for the Bankfull Width metric at the 100m Section level.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005139", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4eaaaec7c3b7b5fad862354592c6b22d53249998", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "03ee0727-c130-5c80-828a-9dd720b54498", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, MapInfo, Non digital - plotted maps", "type": "dataset", "title": "Geophysics (1:100,000), Geological Interpretation of Geophysical Features Polygon", "alttitle": "GPGEOL100_POLYGON", "tempextentbegin": "1994-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36603\", \"uuid\": \"03ee0727-c130-5c80-828a-9dd720b54498\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-29\", \"changeDate\": \"2022-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geophysics (1:100,000), Geological Interpretation of Geophysical Features Polygon", "abstract": "This dataset contains interpreted geological data, using combined interpretations of airborne magnetic, radiometric and gravity survey data, mapped at 1:100,000. \n\nAt scales larger than 1:120,000 the display is a combination of both 1:100,000 and 1:250,000 geophysical mapping. Recent 1:250,000 geophysical mapping has been of such quality and detail it has been used to supersede older coincident 1:100,000 mapping. This occurs in the following areas: St Arnaud 7524, Dunolly 7624, Charlton 7525, Wedderburn 7625 and part of Ararat 7423 are superseded by St Arnaud SJ54-4. Bendigo 7724, Heathcote 7824 and Nagambie 7924 are superseded by Bendigo SJ55-1. \n\nBalmoral 7223, Ararat 7423, Horsham SJ54-3 and St Arnaud SJ54-4 supersede Grampians 7323 where there is overlap.\n\nThis data has been collected by the Geological Survey of Victoria. This dataset is accompanied by other datasets representing sub-surface geological polygons, structural lines, miscellaneous lines and metamorphism.", "anzlicid": "ANZVI0803003420", "geonet_info_createdate": "2018-03-29", "revisiondate": "2022-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "42725e33b473f01f2e54b63be69c3679e3dd55bf", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "285f8200-c14c-5a99-a220-61754807c48c", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available on request", "type": "dataset", "title": "Shallow Inlet Seagrass 1999", "alttitle": "SEAGRASS_SHALLOW_INLET_1999", "tempextentbegin": "1998-05-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "1999-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36614\", \"uuid\": \"285f8200-c14c-5a99-a220-61754807c48c\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-25\", \"changeDate\": \"2015-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Shallow Inlet Seagrass 1999", "abstract": "This layer contains polygons defining the spatial extent, species distribution and density of seagrass meadows within Shallow Inlet mapped from 1999 aerial photography and ground-truthing.", "anzlicid": "ANZVI0803004104", "geonet_info_createdate": "2015-11-25", "revisiondate": "2015-11-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b12aee3273fd708656dcb38c93ffed8697d4982f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c2d93381-480c-53a2-b41d-03720d542ca1", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-02-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, Digital - ArcView, Digital - MapInfo", "type": "dataset", "title": "Miscellaneous geological lines and points (1:100,000)", "alttitle": "MISCL100", "tempextentbegin": "1969-12-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36616\", \"uuid\": \"c2d93381-480c-53a2-b41d-03720d542ca1\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-09\", \"changeDate\": \"2016-02-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Miscellaneous geological lines and points (1:100,000)", "abstract": "The data displays miscellaneous geological line and point data not covered by other geological datasets.\n\nThe data have been collected by the Geological Survey of Victoria. The dataset is accompanied by other datasets representing geology outcrop and boundaries, structural lines, miscellaneous polygons, metamorphism, and placer deposits.", "anzlicid": "ANZVI0803002515", "geonet_info_createdate": "2016-02-09", "revisiondate": "2016-02-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "90d0c22b624574cb2247adaba5611589f43c2412", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "dc891fc4-05d7-5ae8-af7d-f845c0a678eb", "publicationdate": "2021-07-01", "publishedforgroup": "12264;0", "geonet_info_changedate": "2022-01-13", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Neighbourhood Region - Property Sales & Valuations (PSV)", "alttitle": "NEIGHBOURHOOD_PSV", "tempextentbegin": "2010-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:01+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "obsolete", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34480\", \"uuid\": \"dc891fc4-05d7-5ae8-af7d-f845c0a678eb\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-01-16\", \"changeDate\": \"2022-01-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Obsolete", "mdclassification": "unclassified", "defaulttitle": "Neighbourhood Region - Property Sales & Valuations (PSV)", "abstract": "This dataset was withdrawn in Jauary, 2022 as per Vicmap Change Notice 275.\n\nThis layer contains polygon features delineating neighbourhood areas. A neighbourhood is also known as an unbounded locality. It does not have officially recognised and registered boundaries. It is therefore important to note that that these polygons are simply an interpretation of the extent of the neighbourhood, based on sales data for that neighbourhood. \n\nThe neighbourhood areas may cross over one or more bounded localities, and may represent estate names or names that the general public have given to an area.\n\nAll neighbourhood names within this dataset are gazetted by the Office of Geographic Names (OGN)\n\nThis dataset was withdrawn in January, 2022 as it was created for a Departmentall application which no longer requires this dataset.\n\nThe dataset was incomplete and had not been maintaned for many years..", "anzlicid": "ANZVI0803004776", "geonet_info_createdate": "2017-01-16", "revisiondate": "2022-01-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7c03f58da2cec90ce910de2ea9e116b2fd0d30b0", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0aa49986-3076-5362-8c8f-73d96d308e96", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Large Trees Reach Summary Table", "alttitle": "ISC2010_LARGE_TREES_R", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34429\", \"uuid\": \"0aa49986-3076-5362-8c8f-73d96d308e96\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Large Trees Reach Summary Table", "abstract": "The ISC2010_LARGE_TREES_R table is the Statistical Summary table for the Large Trees Metric at the Reach level.\n\nThe ISC2010_LARGE_TREES_R table is designed to JOIN to the ISC2010_RIVER_CENTRELINES_R feature class.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005130", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "3a23deb4023c03fbcc6582e404ac789ada947cf7", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1b5cb827-e09b-5a42-9ab0-557ea864d013", "publicationdate": "2023-01-22", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Mining Inspectorates for Minerals Regulation Branch within Minerals and Petroleum - Victoria", "alttitle": "INSPECT", "tempextentbegin": "1989-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:06:52+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries;economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36588\", \"uuid\": \"1b5cb827-e09b-5a42-9ab0-557ea864d013\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Mining Inspectorates for Minerals Regulation Branch within Minerals and Petroleum - Victoria", "abstract": "Mining Inspectorates for Minerals Regulation Branch within Minerals and Petroleum - Victoria", "anzlicid": "ANZVI0803002203", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1a606cb799763aa2278447c8c01c2fb9178b4188", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "654a7653-a99b-5a5b-b085-222664808399", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-28", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Irrigation District", "alttitle": "IRRIGATION_DISTRICT", "tempextentbegin": "2005-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:54+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;planned", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34453\", \"uuid\": \"654a7653-a99b-5a5b-b085-222664808399\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-10-22\", \"changeDate\": \"2022-07-28\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "unclassified", "defaulttitle": "Irrigation District", "abstract": "Irrigation district administrative boundaries mapped by Victorian water authorites based on geographic features. Input scales vary by water authority.", "anzlicid": "ANZVI0803003049", "geonet_info_createdate": "2013-10-22", "revisiondate": "2022-07-28", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4a1538ab76f4088449725226852668d118ee6033", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "dd0a764e-1b7d-53fc-b2e4-cb9e2bfce57e", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-05-06", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Tree Cover simplified for display at Statewide scale", "alttitle": "TREE100_VIC", "tempextentbegin": "1989-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "1993-04-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34458\", \"uuid\": \"dd0a764e-1b7d-53fc-b2e4-cb9e2bfce57e\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-05-06\", \"changeDate\": \"2016-05-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Tree Cover simplified for display at Statewide scale", "abstract": "This dataset is a simplified version of TREE100 with areas less than 20,000,000 sqm deleted and the remaining features generalized using the bendsimplify algorithm with a 5000 metre tolerance.", "anzlicid": "ANZVI0803002852", "geonet_info_createdate": "2016-05-06", "revisiondate": "2016-05-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fac1b28d665bc844dc12fea9a1a2284e8dd2f08f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "13afa68e-e50e-5a55-ae6f-70b1cc54987d", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-01-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Beneficial Use - Upper Tertiary", "alttitle": "BU_UTER", "tempextentbegin": "2005-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:56+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36598\", \"uuid\": \"13afa68e-e50e-5a55-ae6f-70b1cc54987d\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-01-04\", \"changeDate\": \"2017-01-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Beneficial Use - Upper Tertiary", "abstract": "This layer is part of a set that defines the beneficial use of Victoria's groundwater resources.\nAccording to the Victorian Environmental Protection Authority (EPA), a beneficial use is a use to the environment, or a segment of the environment which is conductive to public benefit, welfare, safety, health or aesthetic enjoyment and which requires protection from the effects of waste discharges, emissions or deposits. A beneficial use may be an existing or potential use. A resource may have more than one beneficial use.\nThe State's groundwater resources have a number of beneficial uses. These uses primarily depend on groundwater quality and aquifer yield and can be assigned to broad water quality classes.", "anzlicid": "ANZVI0803003052", "geonet_info_createdate": "2017-01-04", "revisiondate": "2017-01-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f4f661342d1e23e8ef3fe08a0c176153c7250e8b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "288f1480-90fc-59b3-a3dd-9c278fd813c8", "publicationdate": "2021-01-08", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-05-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "WMS", "type": "dataset", "title": "Areas of Strategic Importance for Growling Grass Frog habitat", "alttitle": "MSA_BCS_GGF_ASI", "tempextentbegin": "2016-12-10T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:56+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;biota;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34463\", \"uuid\": \"288f1480-90fc-59b3-a3dd-9c278fd813c8\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-05-13\", \"changeDate\": \"2020-05-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Areas of Strategic Importance for Growling Grass Frog habitat", "abstract": "The Biodiversity Conservation Strategy for Melbourne's Growth Corridors (DEPI 2013a) identified measures for protecting, enhancing and connecting important populations of Growling Grass Frogs within conservation areas and mitigating the losses of habitat that will occur as a result of urban development in Melbourne's growth corridors approved under the strategic assessment. \n\nThe purpose of the Growling Grass Frog Masterplan for Melbourne's Growth Corridors (Masterplan) is to provide guidance on implementing protection measures and investing in habitat creation and enhancement within Growling Grass Frog conservation areas. \n\nThis dataset represents areas within the Growling Grass Frog conservation corridors for which particular protection measures are to be implemented.", "anzlicid": "ANZVI0803005661", "geonet_info_createdate": "2020-05-13", "revisiondate": "2020-05-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1e8571b6f244b947d8731c7a7a4d9a8b441acf3d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ec4a233d-88d9-5533-b77f-23fe801d5233", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-11-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Corner Inlet Depth Contour Lines at 1:25,000", "alttitle": "BATHYMETRY_CORNER_INLET_ARC", "tempextentbegin": "1992-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:34+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34388\", \"uuid\": \"ec4a233d-88d9-5533-b77f-23fe801d5233\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-11-13\", \"changeDate\": \"2014-11-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Corner Inlet Depth Contour Lines at 1:25,000", "abstract": "This layer contains line features which represent depth contours (bathymetry) in Corner Inlet.", "anzlicid": "ANZVI0803004013", "geonet_info_createdate": "2014-11-13", "revisiondate": "2014-11-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ddc23a8ad7b8b09c44df82ee1ea3f4a44d534f12", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "aed66f1b-94a4-506f-8d15-0e82d901d90d", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-02-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, Digital - MapInfo (planned for 2001), Non digital - plotted maps", "type": "dataset", "title": "Regolith Detail type lines (1:50,000)", "alttitle": "RDREGO100_ARC", "tempextentbegin": "2001-06-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36534\", \"uuid\": \"aed66f1b-94a4-506f-8d15-0e82d901d90d\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-09\", \"changeDate\": \"2016-02-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Regolith Detail type lines (1:50,000)", "abstract": "The data contains primary geological data, namely regolith-landform units and boundary types separating regolith-landform units.\n\nThe dataset is part of the geological mapping dataset, which includes datasets representing geological rock units and boundaries, regolith-landform units and boundaries, structural lines, miscellaneous lines and points, miscellaneous polygons, metamorphism and placer deposits.\n\nThe data have been collected by the Geological Survey of Victoria. Data have been captured in projects covering special interest areas, and have been recorded in the field by hand at scales between 1:10,000 and 1:25,000 then prepared for hard copy printing at a range of scales.", "anzlicid": "ANZVI0803003396", "geonet_info_createdate": "2016-02-09", "revisiondate": "2016-02-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1219654563214424b0d3977df4e0b943dcab9517", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "b899190b-5115-5ce3-b557-993e8cf20977", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-05-13", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "WMS", "type": "dataset", "title": "Growling Grass Frog Sub-Regional Strategy areas within the Biodiversity Conservation Strategy", "alttitle": "MSA_BCS_SRS_GGF", "tempextentbegin": "2013-04-16T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:06:33+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36526\", \"uuid\": \"b899190b-5115-5ce3-b557-993e8cf20977\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-05-13\", \"changeDate\": \"2020-05-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Growling Grass Frog Sub-Regional Strategy areas within the Biodiversity Conservation Strategy", "abstract": "This dataset identifies land in Melbourne's growth corridors that is suitable habitat for the Growling Grass Frog, and designates this land into two categories:\n- Habitat that will be protected and managed for the conservation of the GGF (Category 1 habitat). These areas must be protected and enhanced to ensure the long-term viability of important populations of Growling Grass Frog within the growth corridors.\n- Habitat that can be cleared for urban development, but for which compensatory habitat is required by the Commonwealth Government (Category 2 habitat).\n\nThe protection and management of Category 1 habitat will achieve the conservation outcomes for the Growling Grass Frog, and will satisfy the protection requirements of the prescription (See Appendix 1 of the GGF Sub-Regional Strategy).", "anzlicid": "ANZVI0803004903", "geonet_info_createdate": "2020-05-13", "revisiondate": "2020-05-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4b3bef2b622e61b6b2e93b26bb9df35cf85652b2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e8e8a13e-efdb-5468-bacc-bbc9ee511cc2", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - Country Fire Authority (CFA) Region Polygon", "alttitle": "CFA_REGION", "tempextentbegin": "2012-10-15T13:00:00+00:00", "resowner": "Country Fire Authority;Country Fire Authority", "tempextentend": "2023-01-24T00:07:28+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;boundaries;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34567\", \"uuid\": \"e8e8a13e-efdb-5468-bacc-bbc9ee511cc2\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - Country Fire Authority (CFA) Region Polygon", "abstract": "Part of the Vicmap Admin dataset series. This layer contains polygon features delineating the current Country Fire Authority Region Boundaries.\n\nIn 2010, CFA moved to align their administrative boundaries to the Victorian Government Regional Departmental Boundaries. As a result of this direction, from 1st July 2010, what was once known as CFA Areas will now be known as CFA Regions.\n\nThere are three exceptions in this dataset. In June 2011, Bass Coast Shire became part of Southern Metropolitan Region when the Victorian Government Regional Departmental Boundaries indicate that it should be part of Gippsland Region. In October 2012, Yarriambiack Shire was divided using the east-west rabbit fence (same as the Total Fire Ban District Boundary) which impacts on the Loddon Mallee and Grampians Regions boundary. In August 2013, the gazetted boundary prior to the mapping changes made as part of the Boundary Alignment Project at Inverloch Brigade, were reinstated impacting on the boundary ajoining Southern Metropolitan and Gippsland Regions.\n\nOn the 2nd October 2014, CFA's eight Regions became five. This involved the merger of Hume and Eastern Metropolitan Regions to form North East Region, and Loddon Mallee and Northern & Western Metropolitan Regions to form North West Region. The other Regions were also renamed. These changes were a part of the Creating our Future Together (COFT) Program.", "anzlicid": "ANZVI0803004759", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "eec34a8b834997c558b7301986755ef5d2f59896", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "871a5706-7282-5897-accd-cff576e71055", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available on request", "type": "product", "title": "Melbourne Metro Tunnel Project Package of station, tunnel and track data.", "alttitle": "MTP_EES_METRO_TUNNEL_PROJECT", "tempextentbegin": "2016-04-30T14:00:00+00:00", "resowner": "Melbourne Metro Rail Authority", "tempextentend": "2023-01-24T00:07:29+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34570\", \"uuid\": \"871a5706-7282-5897-accd-cff576e71055\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-03-13\", \"changeDate\": \"2022-02-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Melbourne Metro Tunnel Project Package of station, tunnel and track data.", "abstract": "This package of Melbourne Metro Tunnel Project data includes datasets for:\nFuture Station Entrances (MTP_EES_FUTURE_STATION_ENTRANCES)\nStation Entrances (MTP_EES_STATION_ENTRANCES)\nTunnel Entrances (MTP_EES_TUNNEL_ENTRANCES)\nUnderground Rail Track (MTP_EES_UNDERGROUND_RAIL_TRACK)\nUnderground Stations (MTP_EES_UNDERGROUND_STATIONS)\n\nThe Concept Design shown in this data reflects the indicative design shown in the Project's Environmental and Effects Statement (EES) which was publicly circulated with the community in May 2016.\n\nThe Metro Tunnel Project comprises two twin 9 kilometre tunnels with five new underground stations, including two city stations directly connected to Flinders Street and Melbourne Central. It will connect the Sunbury and Cranbourne / Pakenham lines for the first time, creating a new end-to-end train line through the inner city. Construction of the Metro Tunnel began in 2017 and it is due to be completed by 2026.\n\nThe Metro Tunnel Project comprises various works packages. As the project progresses and designs are further developed and approved, an updated dataset will be made available.\n\n\nDATA TO BE AVAILABLE SOON\n\n\nDATA TO BE AVAILABLE SOON", "anzlicid": "ANZVI0803005822", "geonet_info_createdate": "2019-03-13", "revisiondate": "2022-02-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "41b389c50f4c199b5622e48c32f4f1107439709d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7beba4cc-213c-596b-9370-dd10725f4a93", "publicationdate": "2020-07-30", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-07-20", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Coastal Places of Interest", "alttitle": "COASTAL_POI", "tempextentbegin": "2011-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-01-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36717\", \"uuid\": \"7beba4cc-213c-596b-9370-dd10725f4a93\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-07-06\", \"changeDate\": \"2020-07-20\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Coastal Places of Interest", "abstract": "Victorian State-wide dataset containing features of interest including boating clubs, camping grounds, caravan parks, historic sites, lifesaving clubs and lookouts as identified by the Victorian Regional Coastal Boards and reviewed as part of the Future Coasts SECAP project.", "anzlicid": "ANZVI0803008670", "geonet_info_createdate": "2020-07-06", "revisiondate": "2020-07-20", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "35d057439c0c3511294c3a5e84a4591f6e109054", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e3b65846-2af2-5d0c-b7a6-c64c1b9934fe", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Vegetation Width 100m Section Summary Table", "alttitle": "ISC2010_VEGETATION_WIDTH_S", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34498\", \"uuid\": \"e3b65846-2af2-5d0c-b7a6-c64c1b9934fe\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Vegetation Width 100m Section Summary Table", "abstract": "The ISC2010_VEGETATION_WIDTH_S table is the Statistical Summary table for the Vegetation Width Metric at the 100m Section level.\n\nThe ISC2010_VEGETATION_WIDTH_S table is designed to JOIN to the ISC2010_RIVER_CENTRELINES_S feature class.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005145", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "076dc1849be3dd4cb91c4ae0f405dfd5361de539", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9ee9d41a-93dc-5e13-9ad8-69c64c22249d", "publicationdate": "2022-07-20", "publishedforgroup": "12264;0", "geonet_info_changedate": "2022-07-28", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "shapefile ArcSDE", "type": "dataset", "title": "Melbourne Water Corporation", "alttitle": "MELBOURNE_WATER_CORP", "tempextentbegin": "2007-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2007-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36643\", \"uuid\": \"9ee9d41a-93dc-5e13-9ad8-69c64c22249d\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-01-30\", \"changeDate\": \"2022-07-28\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Melbourne Water Corporation", "abstract": "This data contains the spatial boundaries for Melbourne Water's area of responsibility for drainage and waterway assets.", "anzlicid": "ANZVI0803005830", "geonet_info_createdate": "2020-01-30", "revisiondate": "2022-07-28", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "821b38147474a52d6a685046603baa6c1bb68018", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "eba9f51a-194f-5b2e-b508-799dade349e0", "publicationdate": "2019-03-22", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-01-22", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "type": "dataset", "title": "ANZSIC_BUSINESS_CODE", "alttitle": "ANZSIC_BUSINESS_CODE", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2100-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34532\", \"uuid\": \"eba9f51a-194f-5b2e-b508-799dade349e0\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-01-22\", \"changeDate\": \"2019-01-22\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "ANZSIC_BUSINESS_CODE", "abstract": "The dataset acts as the lookup table for the SANDS_MCDOUGALL dataset", "anzlicid": "ANZVI0803007957", "geonet_info_createdate": "2019-01-22", "revisiondate": "2019-01-22", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b48a79a757d8ad4c61619260df4f8a8ddce065f0", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "42dd08cb-6670-57c6-af53-0fcf81500165", "publicationdate": "2019-12-17", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-10-07", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "Feature Class", "type": "dataset", "title": "Victorian Environmental Flows Monitoring and Assessment Program monitoring sites", "alttitle": "RIMP_SITES", "tempextentbegin": "2016-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:18+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36673\", \"uuid\": \"42dd08cb-6670-57c6-af53-0fcf81500165\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-10-07\", \"changeDate\": \"2019-10-07\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "limitedDistribution", "defaulttitle": "Victorian Environmental Flows Monitoring and Assessment Program monitoring sites", "abstract": "The Victorian Environmental Flows Monitoring and Assessment Program (VEFMAP) was estasblished in 2005 and has been undertaken in a series of stages. VEFMAP represents a large-scale, long-term monitoring program designed to assess ecosystem responses to changes in flow regime in regulated, Victorian rivers that receive environmental water. This data set maps the location of monitoring sites included in stage 6 of VEFMAP from 2017.", "anzlicid": "ANZVI0803008547", "geonet_info_createdate": "2019-10-07", "revisiondate": "2019-10-07", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c2a5ed8df81720f43ed7337231d3d81cf7434c97", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3e8705c7-1bc3-5a33-8325-d4aa79b49c2b", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-05-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcGIS Feature Class", "type": "dataset", "title": "Wind erosion susceptibility mapping for north west Victoria", "alttitle": "NW_EROSION_SUSCEPTIBILITY", "tempextentbegin": "2011-06-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2012-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "farming;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36681\", \"uuid\": \"3e8705c7-1bc3-5a33-8325-d4aa79b49c2b\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-14\", \"changeDate\": \"2019-05-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Wind erosion susceptibility mapping for north west Victoria", "abstract": "A polygonal map of wind erosion susceptibility in the Victorian Mallee.\n\nThe dataset was created by assigning relative susceptibility classes to landform component data mapped during the disaggregation of land systems project (refer to separate metadata entry). The classifications represent the inherent susceptibility of the component to wind erosion based on its exposure to erosive winds and its 'likely' soil texture grade. In some instances a landform component has been split into facets in order to assign varying classes of susceptibility across the component.\n\nThe project was sponsored by the Mallee Catchment Management Authority with funding from the Federal government's Caring for our Country initiative.\n\nThe final project report, \"Mallee wind erosion susceptibility mapping\" together with the \"Disaggregation of landform components within land systems of the Mallee\", and the Rowan and Downes (1963) report , \"A study of the land of north-western Victoria\", should be referred to when analysing or utilising this dataset.\n\nRegional Map Units (RMUs) in the Mallee developed during the land system disaggregation project and refined in this project have been ranked for their overall wind erosion susceptibility. These units and the finer-scale grid data can be used to make spatially strategic decisions for investment in research, monitoring, protection and management relating to wind erosion in the region.", "anzlicid": "ANZVI0803005565", "geonet_info_createdate": "2019-05-14", "revisiondate": "2019-05-14", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bb473ededddb05b205e8171012e44907b87775de", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "92b712f7-67d5-5cb8-b90f-e73a3dd99a65", "publicationdate": "2018-02-01", "publishedforgroup": "12264;0", "geonet_info_changedate": "2016-02-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Geological Structures, Ovens Valley", "alttitle": "GEOL_STRUCT_OVENS_VALLEY", "tempextentbegin": "2011-06-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34547\", \"uuid\": \"92b712f7-67d5-5cb8-b90f-e73a3dd99a65\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-17\", \"changeDate\": \"2016-02-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological Structures, Ovens Valley", "abstract": "This dataset consists of structural lineaments with a predominant WSW to ENE orientation and lesser WNW to ESE orientation for the Ovens Valley of Victoria.\n\nThe dataset was compiled by GHD to inform the report 'Potential Influences of Geological Structures on Groundwater Flow Systems' for DEPI's Secure Allocation Future Entitlements (SAFE) Project.", "anzlicid": "ANZVI0803005025", "geonet_info_createdate": "2016-02-17", "revisiondate": "2016-02-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5db6da97b53409e1929b257acf88521f0737fe5e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "34943d05-0534-5e29-88fb-1c0395316968", "publicationdate": "2021-12-22", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-07-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "digital", "type": "dataset", "title": "Wetland landscape profiles", "alttitle": "WETLAND_LANDSCAPE", "tempextentbegin": "2010-09-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2013-11-26T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34557\", \"uuid\": \"34943d05-0534-5e29-88fb-1c0395316968\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-07-13\", \"changeDate\": \"2015-07-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Wetland landscape profiles", "abstract": "Wetland landscape profiles represent a regionalisation of wetlands at the landscape scale. They are based on variation in regional wetland vegetation as described in Appendix 3 of Department of Sustainability and Environment (2012) Index of Wetland Condition assessment of wetland vegetation update - December 2012. Department of Sustainability and Environment, East Melbourne, Victoria.", "anzlicid": "ANZVI0803005100", "geonet_info_createdate": "2015-07-13", "revisiondate": "2015-07-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "65d6037c00a08c8a3e07905f6b36b284ac3cb3af", "fields": {"available_formats": "ECW,GeoTIFF,JPEG,JPEG 2000,TIFF", "resclassification": "unclassified", "uuid": "f929f31a-dff9-501e-90b3-ef1cae17d695", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL geotiff", "type": "dataset", "title": "Soil Grids of Victorian Total Organic Carbon %", "alttitle": "SOIL_TOTAL_ORGANIC_CARBON", "tempextentbegin": "1957-12-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2016-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34561\", \"uuid\": \"f929f31a-dff9-501e-90b3-ef1cae17d695\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-14\", \"changeDate\": \"2021-07-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "unclassified", "defaulttitle": "Soil Grids of Victorian Total Organic Carbon %", "abstract": "A set of Digital Soil Maps (mean, 5th and 95th percentile prediction values) of total organic carbon % across Victoria in geotiff format.\n\nGrids of key soil properties have been produced for Victoria. These grids, in raster format, provide prediction and confidence interval values for key soil properties at a 90 m grid resolution for six set depths; 0 to 5 cm, 5 to 15 cm, 15 to 30 cm, 30 to 60 cm, 60 to 100 cm and 100 to 200 cm, across Victoria. In the case of Total Organic Carbon % mapping, prediction maps from only the first three depths have been published due to poor model validation for the lower three depths. This is in part due to the shoartage of calibration data available for modelling at these depths.\n\nThe grids have been designed to meet the specifications created by GlobalSoilMap (www.globalsoilmap.net) to develop and deliver detailed soil information in a consistent form.\n\nThe grids are a spatial interpolation of key soil properties to support modelling and decision making in resource management, agricultural production, land use policy and planning, and in further research such as ecosystem modelling.\n\nThe methodology used to develop the Soil Grids of Victoria has been based on that refined by the Australian Soil and Landscape Grid. Data and knowledge embedded into existing soil related datasets, e.g. soil profile and land mapping collections, have been key inputs. \n\nWhilst the new maps show an immense amount of fine scale detail, and are our best spatially continuous and exhaustive estimates of soil attributes across all of Victoria, they are most appropriately used for assessments of regional to state-wide trends of soil properties and their relationship with their environment and pedogenesis. Care should be taken when using the grids for local assessments and it is recommended that the confidence intervals are included at this scale.", "anzlicid": "ANZVI0803005804", "geonet_info_createdate": "2019-05-14", "revisiondate": "2021-07-14", "spatialrepresentationtype_text": "Grid"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5682b5eda3c7d5efd49d909fd35b8ec38400dbdd", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "64740ff7-08ee-53c0-9eec-8f4193e38de2", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2018-04-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "shapefile ArcSDE", "type": "dataset", "title": "Dams of Victoria", "alttitle": "DAM", "tempextentbegin": "2007-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2007-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34488\", \"uuid\": \"64740ff7-08ee-53c0-9eec-8f4193e38de2\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-04-13\", \"changeDate\": \"2018-04-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Dams of Victoria", "abstract": "Dam locatons in Victoria", "anzlicid": "ANZVI0803005823", "geonet_info_createdate": "2018-04-13", "revisiondate": "2018-04-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "33053da61f8be92ca3146041ceef5b4a9eef8878", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5a4eb5bf-fe2f-5754-927d-3b8d78c3cb2c", "publicationdate": "2023-01-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "product", "title": "Minerals - Earth Resources Spatial Data Collection for the Datamart.", "alttitle": "DM_MIN_MINERALS", "tempextentbegin": "1998-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:07:04+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34489\", \"uuid\": \"5a4eb5bf-fe2f-5754-927d-3b8d78c3cb2c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Minerals - Earth Resources Spatial Data Collection for the Datamart.", "abstract": "MRSDA Exploration Graticules, Mineral points and regions, Heavy Mineral Sands areas and lines, Mining and Mineral Operation Locations, Extractive Industry Interest Areas, Deep and Shallow Leads and Shallow Workings.\nCollected for Earth Resources within DSDBI", "anzlicid": "ANZVI0803003354", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a8981280ac5580386a79bf9a0b9f70d9b48d9ada", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ed4688fc-0acd-549e-a17b-e6929bcc03ff", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-05-06", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Forest Management Area boundaries", "alttitle": "FMA25", "tempextentbegin": "1999-09-12T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:05+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34492\", \"uuid\": \"ed4688fc-0acd-549e-a17b-e6929bcc03ff\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-08\", \"changeDate\": \"2021-05-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Forest Management Area boundaries", "abstract": "Contains polygon features delineating boundaries and describing forest management areas. All arc features are identified and coded according to the AS2482 standard.", "anzlicid": "ANZVI0803002451", "geonet_info_createdate": "2017-03-08", "revisiondate": "2021-05-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "003774d5c321dae91b80f543ece95f9a07ee217f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "4b78c2e0-5134-5514-a1a6-adc46b2cdb61", "publicationdate": "2023-01-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-03", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcInfo", "type": "dataset", "title": "Native Title Determination Outcomes", "alttitle": "NT_DETOUT", "tempextentbegin": "2001-01-09T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2021-01-13T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Unknown", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36633\", \"uuid\": \"4b78c2e0-5134-5514-a1a6-adc46b2cdb61\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-06-20\", \"changeDate\": \"2022-07-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Native Title Determination Outcomes", "abstract": "Obtained from National Native Title Tribunal\nNative Title Determination Outcomes\nYou can download the data here:\n\n", "anzlicid": "ANZVI0803008487", "geonet_info_createdate": "2019-06-20", "revisiondate": "2022-07-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "3cd81683c15488551ced5eb30495c91819bdcb71", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0c1caffe-84f2-5777-96ea-bff90d587587", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-10-24", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL: ESRI ArcSDE export, ESRI Shapefile, MapInfo TAB, Oracle Spatial", "type": "dataset", "title": "Victorian Coastal Inundation Sea Level Rise 2100", "alttitle": "SLR82CM_2100", "tempextentbegin": "2009-09-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:06+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34495\", \"uuid\": \"0c1caffe-84f2-5777-96ea-bff90d587587\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-10-24\", \"changeDate\": \"2017-10-24\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Coastal Inundation Sea Level Rise 2100", "abstract": "The Victorian Coastal Inundation Dataset (the product) is a digital dataset consisting of eight spatial layers modelling the extent of land subject to coastal inundation due to projected sea level rise from 2009 to 2100.\nThis product is recommended for use at a scale of approximately 1:75,000 or less detail to reflect the limitations in the modelling and the recommended catchment to regional scale of inundation assessments with this product. The product is NOT suitable for assessments of potential risks at property level.\n\nThe datasets available are:\nSea Level Rise:\n- SLR00CM_2009 - Current (2009) sea level \n- SLR20CM_2040 - Projected 20cm sea level rise by 2040 \n- SLR47CM_2070 - Projected 47cm sea level rise by 2070 \n- SLR82CM_2100 - Projected 82cm sea level rise by 2100 \n\nStorm tide (1-in-100 year) with added wind forcing plus sea level rise\n- SLR00CM_ST_2009 - Current (2009) inundation to 1-in-100 year storm tide level \n- SLR20CM_ST_2040 - Inundation to 1-in-100 year storm tide level with storm surge increased by 6% plus 20 cm sea level rise \n- SLR47CM_ST_2070 - Inundation to 1-in-100 year storm tide level with storm surge increased by 13% plus 47 cm sea level rise \n- SLR82CM_ST_2100 - Inundation to 1-in-100 year storm tide level with storm surge increased by 19% plus 82 cm sea level rise\n\nInteractive Map:-\nhttp://mapshare.maps.vic.gov.au/gvh270hydra/\n> Future Coasts (Modelled)\n\nThis data has been computed to support the Victorian Governments Future Coasts Project.", "anzlicid": "ANZVI0803004730", "geonet_info_createdate": "2017-10-24", "revisiondate": "2017-10-24", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "73e1d67aff0f8f2b8da4ceca32a25fafb3a7ad48", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e703ec97-dd46-5f19-b5e8-b3c3a91ed90c", "publicationdate": "2019-03-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "VAF_EXTENT_110LMTD", "alttitle": "VAF_EXTENT_110LMTD", "tempextentbegin": "1979-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-03-14T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36728\", \"uuid\": \"e703ec97-dd46-5f19-b5e8-b3c3a91ed90c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "VAF_EXTENT_110LMTD", "abstract": "This dataset relates to the Victorian Aquifer Framework (VAF) 3D Surface for the Lower Mid Tertiary Aquitard. It represents the mapped extent of the aquitard.\n\nPlease refer to the master metadata record VAF 'Victorian Aquifer Framework (VAF) 3D Surfaces' for detailed information.", "anzlicid": "ANZVI0803008448", "geonet_info_createdate": "2019-11-19", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "24425441b8fd7fbe5a88b9f4d17ff005fc27e522", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "bc822a9c-3766-57ac-a034-bcad3fb66d86", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - Local Government Area (LGA) Polygon Aligned to Topographic Features", "alttitle": "AD_LGA_AREA_POLYGON", "tempextentbegin": "1997-08-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:34+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;planning cadastre;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34590\", \"uuid\": \"bc822a9c-3766-57ac-a034-bcad3fb66d86\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-06-17\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - Local Government Area (LGA) Polygon Aligned to Topographic Features", "abstract": "Part of the Vicmap Admin dataset series. This dataset contains Local Government Boundaries (LGA's) polygons. LGA's are as defined by Dept. for Victorian Communities (DVC).\nAligned to Road Network - Vicmap Transport.", "anzlicid": "ANZVI0803002507", "geonet_info_createdate": "2020-06-17", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5e03c115ddd2df0ed259e59151213fec90560a86", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "bb17b3e0-e3d1-557a-8113-615dcbbcc521", "publicationdate": "2018-04-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-11-12", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Salvage and Translocation Protocol for the Biodiversity Conservation Strategy", "alttitle": "MSA_BCS_SLTRP", "tempextentbegin": "2013-07-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2013-08-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;planned", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36731\", \"uuid\": \"bb17b3e0-e3d1-557a-8113-615dcbbcc521\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-05-13\", \"changeDate\": \"2020-11-12\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "unclassified", "defaulttitle": "Salvage and Translocation Protocol for the Biodiversity Conservation Strategy", "abstract": "The Biodiversity Conservation Strategy for Melbourne's Growth Corridors (BCS) prepared as part of the Melbourne Strategic Assessment specifies that salvage and/or translocation of plants and animals may be required before the removal of native vegetation or habitat for urban development in Melbourne's growth corridors. \n\nThis dataset identifies land parcels under the Biodiversity Conservation Strategy that may be subject to the salvage and translocation process, as defined by the Salvage and Translocation Protocol for Melbourne's Growth Corridors (DEPI, 2013).\n\nSalvage may be required for the following target species and communities listed under the Commonwealth Environment Protection and Biodiversity Conservation Act 1999 (EPBC Act) and Victorian Flora and Fauna Guarantee Act 1988 (FFG Act):\n- Spiny Rice-flower, Matted Flax-lily and other grassland plants\n- Striped Legless Lizard\n- Seasonal Herbaceous Wetlands (Freshwater) of the Temperate Lowland Plains.\n\nLand parcels which contain a set of conditions for each of the above species/communities will trigger a salvage and translocation procedure to be enacted in accordance with the Protocol.", "anzlicid": "ANZVI0803005057", "geonet_info_createdate": "2020-05-13", "revisiondate": "2020-11-12", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "541009da6d0fef8c3c4ce86d8942eb6f871a5b49", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "7bf2441a-a703-597f-9bca-79ace7de179e", "publicationdate": "2023-01-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-08-26", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "BORES_PUBLIC or non confidential bores. As per data.vic, spatial datamart and fme. 2010 Microsoft Access copy exists in Earth Resources Publication system", "type": "dataset", "title": "Boreholes (from Earth Resource's database)", "alttitle": "BORES", "tempextentbegin": "1869-12-31T14:20:08+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:07:16+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;economy;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34526\", \"uuid\": \"7bf2441a-a703-597f-9bca-79ace7de179e\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-08-26\", \"changeDate\": \"2019-08-26\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Boreholes (from Earth Resource's database)", "abstract": "Contains mineral, petroleum, coal & groundwater boreholes. Minerals boreholes (and, to a lesser extent, petroleum wells) are actively maintained in the dataset. The custodial role for groundwater and coal boreholes is in the private sector, and these parts of the dataset are not actively maintained.\n\nMineral, petroleum and coal boreholes are updated on an irregular basis: Mineral borehole data are supplied by individual companies usually when their overlaying Exploration Licence expires; Coal borehole data have been updated from GHD Pty Ltd's (formerly GEO-ENG) data. Groundwater boreholes have not been updated since 1990 when the custodial role was given to Sinclair Knight Merz Pty Ltd (SKM) - refer to BORES100.\n\nThe origin of data varies considerably. Prior to 1980 borehole data was recorded by the Geological Survey of Victoria (GSV) on 1 inch:1 mile plans and hard-copy borehole records. This included data for water boreholes drilled by public and private sector, all boreholes drilled by GSV, petroleum wells, and some private-sector mineral exploration boreholes. In areas where drilling was of particularly high density, locations were recorded on these plans as a single point or as occurring within an outlined area.\n\nThe parish was traditionally used as the primary classifier for numbering boreholes. Some minor anomalies exist where a borehole and parish boundary may be on one side of a road or the other, or where parish boundaries have been moved.\n\nIn 1980 the location data was moved to 1:100,000 AMG plans. In the mid-1980s a program of electronic capture commenced. Borehole locations were digitised from the 1:100,000 plans with an accuracy of +/-300m. For the areas of high borehole density where boreholes were plotted on a single point, often only the first ten and last ten were recorded in the database. Boreholes whose parish was known but exact location was unknown were also recorded, but do not have a location.\n\nGroundwater boreholes:\nExtensive hydrological data was originally held by GSV, but these data are now held by SKM. \n\nCoal boreholes:\nLocation and lithological data for coal boreholes has been provided by Geo-Eng and the old State Electricity Commission of Victoria.\n\nMineral exploration boreholes:\nThe capture of mineral exploration borehole data from open-file exploration reports commenced in 2001 and will progressively cover the state over a number of years. The data are being captured at an whatever accuracy the source allows, typically between 20 and 250 m. Assay data have been consistently captured. Other downhole data, such as lithology, have not been consistently captured.\n\nTenement information for the small number of private-sector mineral exploration boreholes captured prior to 2001 was lost in the migration from the original VAX database to the current Ingres corporate database.\n\nHeavy mineral sand exploration: complete coverage up for data up to April 2002; updates planned for late 2003.\nOther mineral exploration: coverage as follows - \n St Arnaud, Charlton, Wedderburn 1:100 000 mapsheets - 31 March, 2001;\n Dunolly, Rupanyup, Donald, Ararat, Grampians, Willaura 1:100 000 mapsheets -\t30 August 2001;\n Warburton 1:250 000 mapsheet - 30 June 2002 (available mid-2003);\n Ballarat, Creswick, Skipton, Beaufort 1:100 000 mapsheets - 30 June 2002 (available mid-2003);\n Bendigo 1:250 000 - 31 October 2002 (available mid-2003)\n\n\nGroundwater data can be obtained at the following site \nhttp://www.dse.vic.gov.au/waterdata", "anzlicid": "ANZVI0803002211", "geonet_info_createdate": "2019-08-26", "revisiondate": "2019-08-26", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e83944fdd4817e32c2b7c243d789f9b744ce809e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1b8b243f-fc5e-58cc-891f-2b465b830df5", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-11-03", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "type": "dataset", "title": "Seismic Cross Section Lines", "alttitle": "XSEC_SEIS", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2004-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36666\", \"uuid\": \"1b8b243f-fc5e-58cc-891f-2b465b830df5\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-11-03\", \"changeDate\": \"2016-11-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Seismic Cross Section Lines", "abstract": "Seismic Cross Section Lines. The lines are an index of traces along Seismic Sections where special cross sectional diagrams have been produced.", "anzlicid": "ANZVI0803002970", "geonet_info_createdate": "2016-11-03", "revisiondate": "2016-11-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "11498ab61d4882e4160d0e382f63d96ae387d1e3", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "4a25d76d-7f86-5586-9d60-4c595a2ccd15", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "2014 Flood Model Extents", "alttitle": "FLOOD_MODEL_EXTENT", "tempextentbegin": "2013-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-03-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34527\", \"uuid\": \"4a25d76d-7f86-5586-9d60-4c595a2ccd15\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-09-21\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2014 Flood Model Extents", "abstract": "Polygon features showing the geographic footprint of flood studies carried out in Victoria from 2000 - 2014.\nInformation in this layer is a snapshot of flood studies as at 2014.\n\nEach extent has a unique ID which is derived from the name and date of the study. \n\nThe name of the study, company name and the date of the study are recorded in the attributes.\n\nThis is Polygon data or a Shapefile.", "anzlicid": "ANZVI0803005297", "geonet_info_createdate": "2015-09-21", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "755abe9be87f03177937c04755cb8eb73b6b7ec9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6794c4c3-23ea-5bf2-99c6-0440deec348d", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Planned Burns 2010/11 - 2012/13", "alttitle": "BURNPLAN11", "tempextentbegin": "2010-04-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:13+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "environment;biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36659\", \"uuid\": \"6794c4c3-23ea-5bf2-99c6-0440deec348d\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-08\", \"changeDate\": \"2017-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "unclassified", "defaulttitle": "Planned Burns 2010/11 - 2012/13", "abstract": "Last updated 31/07/2010\n\nThis dataset represents the spatial extent of prescribed burns planned for ignition on Public Land in Victoria. This data is prepared annually for prescribed burns planned for the immediate three-year period. This data set also includes landscape burns which are symbolised in the Fireplan map service with a cyan outline.", "anzlicid": "ANZVI0803004148", "geonet_info_createdate": "2017-03-08", "revisiondate": "2017-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "3ac5e0802e2229dede833aa83675c22666793591", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "11758f80-10e7-5fbc-a575-bbf8a94b68c9", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "product", "title": "Regolith Landform Interpretations - Earth Resources Spatial Data Collection for the Datamart.", "alttitle": "DM_MIN_REGO_LF_INTERP", "tempextentbegin": "1998-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:07:32+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36721\", \"uuid\": \"11758f80-10e7-5fbc-a575-bbf8a94b68c9\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Regolith Landform Interpretations - Earth Resources Spatial Data Collection for the Datamart.", "abstract": "Datasets related to Regolith. Observation Points, regional and detail types and boundaries, regional duricrust, regional radiometric signatures.\nCollected for Earth Resources within DSDBI", "anzlicid": "ANZVI0803003386", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "be94f082a8f6a68c20264b8a636e5e274098601e", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6c79d13c-ffb3-538b-9157-37a7df48827a", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Hydrography Structure Type Line Table", "alttitle": "HY_STRUCTURE_TYPE_LINE", "tempextentbegin": "2023-01-24T00:07:32+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:32+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36722\", \"uuid\": \"6c79d13c-ffb3-538b-9157-37a7df48827a\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Hydrography Structure Type Line Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003190", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2257ca91a1b791f63eed51f59694317af1f545e0", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6e41efa6-72a5-5673-b4ca-14e435d848f8", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-04-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Hunting Area Dataset Permitted Hog Deer Hunting", "alttitle": "HUNT25_HOG_DEER", "tempextentbegin": "2018-06-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:58+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36812\", \"uuid\": \"6e41efa6-72a5-5673-b4ca-14e435d848f8\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-06\", \"changeDate\": \"2022-04-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Hunting Area Dataset Permitted Hog Deer Hunting", "abstract": "This hunting area dataset depicting areas where Hog Deer hunting is permitted, have boundaries largely derived from the PLM25 dataset which are supplemented with additional boundaries based on legislative restrictions on hunting. The dataset identifies the conditions under which hunting of given Game and Pest animal groups and species is permitted. \nThe rules used to produce this product were developed by the legislation unit with the Land Management Division of the Department of Environment , Land, Water and Planning in consultation with the Game Management Authority, VicPolice, Parks Victoria and other relevant government authorities. These rules are based on requirements in the Forest Act, National Park Act, Crown land (Reserve) Act, Land Act, Wildlife Act.\nNote : Hunters are personally responsible for acting in accordance with the Firearms Act 1996\n(including informing themselves about any prohibited locations within the areas shown on this map)\nand other relevant laws; obtaining the required hunting licence; and for hunting only within season.\nMore information can be obtained from the Game Management Authority's web site.\n\nVicmap Basemap Services | State Government of Victoria | @DELWP", "anzlicid": "ANZVI0803005899", "geonet_info_createdate": "2019-11-06", "revisiondate": "2022-04-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7849361888c27e16838742aaddbbb567fc17e843", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "540498e5-728c-52e4-a6fd-f9a0231d3a0c", "publicationdate": "2019-03-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "VAF_EXTENT_106UTD", "alttitle": "VAF_EXTENT_106UTD", "tempextentbegin": "2012-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2013-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36823\", \"uuid\": \"540498e5-728c-52e4-a6fd-f9a0231d3a0c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "VAF_EXTENT_106UTD", "abstract": "This dataset relates to the Victorian Aquifer Framework (VAF) 3D Surface for the Upper Tertiary Aquitard. It represents the mapped extent of the aquitard.\n\nPlease refer to the master metadata record VAF 'Victorian Aquifer Framework (VAF) 3D Surfaces' for detailed information.", "anzlicid": "ANZVI0803008454", "geonet_info_createdate": "2019-11-19", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fb3983220c84a55a884a108288aec847c636092f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d6694979-f301-5036-b324-e6f89c5d94fd", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Elevation - Ground Type Polygon", "alttitle": "EL_GRND_TYPE_AREA_POLYGON", "tempextentbegin": "2023-01-24T00:08:02+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:02+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;environment;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34682\", \"uuid\": \"d6694979-f301-5036-b324-e6f89c5d94fd\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2019-09-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Elevation - Ground Type Polygon", "abstract": "This layer is part of Vicmap Elevation 10-20 Contours & Relief, a subset of Vicmap Elevation. It contains polygon features representing\nIncludes. Rocky Outcrops, Sand & Surface Area void", "anzlicid": "ANZVI0803002893", "geonet_info_createdate": "2019-09-04", "revisiondate": "2019-09-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f3d3710305b34d1ac01ea1e30336614a592f1c43", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "95232ca3-135d-5940-a231-a7ef13858834", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Crown Land Managment Tenure Type Table", "alttitle": "CL_TENURE_TYPE", "tempextentbegin": "2023-01-24T00:07:42+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:42+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36755\", \"uuid\": \"95232ca3-135d-5940-a231-a7ef13858834\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Crown Land Managment Tenure Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003222", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "20237650addd033066a089611d810abc40bbb63b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8820ef11-ed0b-5c0d-ad4b-79a4953f56c2", "publicationdate": "2022-06-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-05-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "WMS", "type": "dataset", "title": "Melbourne Strategic Assessment Extent", "alttitle": "MSA_EXTENT", "tempextentbegin": "2013-04-16T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:43+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36759\", \"uuid\": \"8820ef11-ed0b-5c0d-ad4b-79a4953f56c2\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-05-13\", \"changeDate\": \"2020-05-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Melbourne Strategic Assessment Extent", "abstract": "This dataset provides the spatial extent of the Melbourne Strategic Assessment.\n\nThe State Government's program, as define in the 'Delivering Melbourne's Newest Sustainable Communities - Program Report' (DPCD, 2009), means the Urban Growth Boundary Review for Melbourne for the development of land, including associated transport infrastructure, within the following areas:\n> investigation areas for the expansion of the 2005 Urban Growth Boundary\n> areas inside the 2005 Urban Growth Boundary for which a planning scheme amendment to introduce a Precinct Structure Plan had not commenced as at 26 May 2009 (the existing 28 precincts)\n> areas in the outer Metropolitan Ring Transport Corridor/E6 Road Reservation and the Regional Rail Link corridor between west of Werribee and Deer Park\n\nIn accordance with the definition of the Program, this includes Melbourne's four growth areas within the expanded 2010 Urban Growth Boundary given effect by Planning Scheme Amendment VC68. These growth areas and the 28 precincts comprise: \n> Melbourne's western growth area - Melton and Wyndham \n> Melbourne's north-western growth area - Sunbury \n> Melbourne's northern growth area - Hume, Whittlesea and Mitchell \n> Melbourne's south-eastern growth area - Casey and Cardinia.", "anzlicid": "ANZVI0803004901", "geonet_info_createdate": "2020-05-13", "revisiondate": "2020-05-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e04bd50a34a9ba17a32ae032c7395db8f1c35b96", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7c8b2d43-826c-578b-abc5-05e97585c46b", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-11-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital: ArcView, ArcInfo & MapInfo", "type": "dataset", "title": "Victorian Coal Fields", "alttitle": "COALINVFLDS", "tempextentbegin": "2007-02-06T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2023-01-24T00:07:46+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36771\", \"uuid\": \"7c8b2d43-826c-578b-abc5-05e97585c46b\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-09\", \"changeDate\": \"2015-11-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Coal Fields", "abstract": "Details the location and attributes of each coalfield in Victoria. \nSpatial accuracy defined as attribute \"Loc_Acc\".\nThis dataset has 3 lookup tables: COALINVFLDS_BLACK and COALINVFLDS_BROWN. Note that 1 field can have many seams. Also COALINVFLDS_WATERUSE LUT joins to this dataset.\nFor all COALINV data the LUT table COALINV_KEY contains the key info for each dataset.\n\nData is from the \"Victorian Coal - A 2006 Inventory of Resources\"\nAvailable via the online store\nOn Line store", "anzlicid": "ANZVI0803003497", "geonet_info_createdate": "2015-11-09", "revisiondate": "2015-11-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e02719fd5e4208cc9055d99373a2eb5bd3ddcee4", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6b587fd5-1b2e-513c-a9ba-3ce5ba2abcc5", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - Parish Polygon", "alttitle": "PARISH_POLYGON", "tempextentbegin": "2023-01-24T00:07:47+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:47+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36774\", \"uuid\": \"6b587fd5-1b2e-513c-a9ba-3ce5ba2abcc5\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - Parish Polygon", "abstract": "Part of the Vicmap Admin dataset series. This layer contains polygon features delineating parish boundaries as defined by CLM, Dept. of Sustainability & Environment.", "anzlicid": "ANZVI0803002716", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c57e7c70730dc3d6809acdfbf7d53a3d56ce75ff", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c9055ecd-a590-505f-a43f-7f71c747afef", "publicationdate": "2023-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-04-24", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Current Retention Licences", "alttitle": "RL", "tempextentbegin": "2012-01-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:07:56+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34665\", \"uuid\": \"c9055ecd-a590-505f-a43f-7f71c747afef\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-04-24\", \"changeDate\": \"2015-04-24\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Current Retention Licences", "abstract": "Regions showing the extent of mineral Retention Licences currently lodged with Earth Resources Regulations.\nThe boundaries are derived from a combination of entering graticular boundaries (exact MGA co-ordinates) and digitizing along areas of land status (Earth Resources version of plm25) which are unable to be mined or explored. Refer to the Mineral Resources (Sustainable Development) Act (MRSDA) 1990 for more detail.", "anzlicid": "ANZVI0803004652", "geonet_info_createdate": "2015-04-24", "revisiondate": "2015-04-24", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "738d66457dac31ec80a1852c1cdd75eb65af16a9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a3fd9476-587b-517e-8b4d-0d0128c4a1ed", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-05-30", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcGIS shapefile", "type": "dataset", "title": "Land units of the Victorian Wimmera", "alttitle": "WIMMERA_LRA", "tempextentbegin": "2003-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2006-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34684\", \"uuid\": \"a3fd9476-587b-517e-8b4d-0d0128c4a1ed\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-30\", \"changeDate\": \"2019-05-30\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Land units of the Victorian Wimmera", "abstract": "This dataset is the primary data output from the Wimmera land resource assessment project undertaken in 2004-06. It contains soil and land information at a scale of 1:100 000 for all freehold land in the Wimmera region of Victoria.\n\nThe dataset was developed by the project \"A Land Resource Assessment of the Wimmera Region\" conducted by Robinson et al. (2006). This project was undertaken by DPI's PIRVic Division for the Wimmera Catchment Management Authority to provide consistent land resource information across the region. It utilised data from existing soil surveys at varying scales and intensity conducted over the previous 60 years, remote sensing information and additional field work to develop updated 1:100 000 scale soil/landform mapping across the region.\n\nThe nominal scale of the dataset is appropriate for broadscale assessment of land capability and regional planning.\n\nAt the map scale of this dataset soil-landform units are not homogeneous. For each defined soil-landform unit, soil types were identified and an assessment of their risk of degradation (compaction, erosion, sodicity and acidity) was made.\n\nImportantly it should be noted that soil attributes (for example texture, sodicity, pH) are expected to vary between acquired soil sites. As the variability of soil attributes within a map unit is difficult to predict, it is important to note that representative soils should be used as a guide only.\n\nThe study report describing the project methodology and dataset attributes is available from the Victorian Resources Online website.\n\nDOI 10.4226/92/58e729e8aea3e", "anzlicid": "ANZVI0803005180", "geonet_info_createdate": "2019-05-30", "revisiondate": "2019-05-30", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ad3f62802af6b7591f63482f3177568cdf2e9eba", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7adbc995-a891-5857-b296-c288170b5aac", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available on request", "type": "dataset", "title": "Melbourne Metro Tunnel Project Underground Stations", "alttitle": "MTP_EES_UNDERGROUND_STATIONS", "tempextentbegin": "2016-04-30T14:00:00+00:00", "resowner": "Melbourne Metro Rail Authority", "tempextentend": "2023-01-24T00:08:04+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34689\", \"uuid\": \"7adbc995-a891-5857-b296-c288170b5aac\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-03-13\", \"changeDate\": \"2022-02-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Melbourne Metro Tunnel Project Underground Stations", "abstract": "This polygon layer represents the location of underground stations for the Melbourne Metro Tunnel Project.\n\nThe Concept Design shown in this data reflects the indicative design shown in the Project's Environmental and Effects Statement (EES) which was publicly circulated with the community in May 2016.\n\nThe Metro Tunnel Project comprises two twin 9 kilometre tunnels with five new underground stations, including two city stations directly connected to Flinders Street and Melbourne Central. It will connect the Sunbury and Cranbourne / Pakenham lines for the first time, creating a new end-to-end train line through the inner city. Construction of the Metro Tunnel began in 2017 and it is due to be completed by 2026.\n\nThe Metro Tunnel Project comprises various works packages. As the project progresses and designs are further developed and approved, an updated dataset will be made available.", "anzlicid": "ANZVI0803005821", "geonet_info_createdate": "2019-03-13", "revisiondate": "2022-02-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "065f3d342e9b8d25a736bb4890dc1020d4ee7bfd", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "90747f51-f03d-510a-8023-313ff87810e7", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Vicmap Lite Scale Use Table", "alttitle": "VL_SCALE_USE", "tempextentbegin": "2023-01-24T00:08:06+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:06+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34694\", \"uuid\": \"90747f51-f03d-510a-8023-313ff87810e7\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Vicmap Lite Scale Use Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003545", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "41c763cd033fd061411d393172257b3189687ed3", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "23a026db-0a7a-5edd-a536-a6f47e4df9f5", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo, MapInfo and ArcView.", "type": "dataset", "title": "Mineral Points (1:1,000,000)", "alttitle": "MINERALP", "tempextentbegin": "1989-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "1992-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36740\", \"uuid\": \"23a026db-0a7a-5edd-a536-a6f47e4df9f5\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Mineral Points (1:1,000,000)", "abstract": "Location of known mineral occurrences and deposits presented in the 1:1,000,000 Minerals of Victoria map compiled in 1993 by the Geological Survey of Victoria.\n\nNOTES CONCERNING MAPSHARE DISPLAY\nWill only display at scales smaller than 1:500,000", "anzlicid": "ANZVI0803002239", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "cc67912f9ec947d67a0e1d09748f1b01830f0c25", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9ffa546c-ea9d-56f1-be0e-c43530775337", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Bare Ground polygon features", "alttitle": "ISC2010_BARE_GROUND", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34608\", \"uuid\": \"9ffa546c-ea9d-56f1-be0e-c43530775337\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Bare Ground polygon features", "abstract": "The ISC2010_BARE_GROUND polygon features represent the parts of the assessed bank face that do not have vegetation cover. The bank face is defined as the area between the Top and Toe of the bank. Areas of Bare Ground less than 5m2 have been removed so that data volume is manageable.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005126", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b22d7086f56de27742d4e21e47a91236760c19e9", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "52624f57-dd6e-5d6f-bf4d-70ba30d30892", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Vicnames Feature Table", "alttitle": "GNR_FEATURE", "tempextentbegin": "2023-01-24T00:07:40+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:40+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34613\", \"uuid\": \"52624f57-dd6e-5d6f-bf4d-70ba30d30892\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Vicnames Feature Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003230", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "028873aa0da34f58f4014a2d310f76d3691e0262", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5b60fa0b-7a53-5a0d-824a-d17d1e3920d1", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Boundary of Fire Severity Classes (FIRE_SEV03) for Alpine fires January/February 2003.", "alttitle": "FIRE_SEV03BND", "tempextentbegin": "2023-01-24T00:07:41+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:41+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36753\", \"uuid\": \"5b60fa0b-7a53-5a0d-824a-d17d1e3920d1\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-08\", \"changeDate\": \"2022-02-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Boundary of Fire Severity Classes (FIRE_SEV03) for Alpine fires January/February 2003.", "abstract": "The Victorian Alpine Fires 2003 were ignited on 8th January 2003 by a series of lightning strikes across north-eastern Victoria. This layer depicts the boundary of Landsat TM7 based fire severity mapping for this fire (FIRE_SEV03). This layer does not necessarily co-incide completely with the actual fire boundary which is held as fire number 39 in the fire100_2003 fire history dataset.", "anzlicid": "ANZVI0803002781", "geonet_info_createdate": "2017-03-08", "revisiondate": "2022-02-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "25204ad58aa095859223e84e69e5ac25f368ea75", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d1c9b14d-8509-5f62-bef7-b6ba9bbfb36a", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Modelled Forest Classes", "alttitle": "OGMAP100", "tempextentbegin": "1997-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:09+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36849\", \"uuid\": \"d1c9b14d-8509-5f62-bef7-b6ba9bbfb36a\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-08\", \"changeDate\": \"2017-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Modelled Forest Classes", "abstract": "This layer identifies categories of modelled forest categories determined through an analysis of readily available authoritative forest disturbance datasets on public land. The dataset identifies areas likely to contain old-growth forest, amongst other forest categories.", "anzlicid": "ANZVI0803002320", "geonet_info_createdate": "2017-03-08", "revisiondate": "2017-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1a7f7e5437e1ba9c0557a7574e1d6b0ef1629efc", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "74bd786e-b010-58fd-8c52-5caef06d0918", "publicationdate": "2020-04-08", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-04-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Comprehensive, Adequate and Representative (CAR) Reserve for the Regional Forest Agreements", "alttitle": "CAR_RESERVE_2020", "tempextentbegin": "2020-03-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:11+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;planned", "topiccat": "biota;farming;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34710\", \"uuid\": \"74bd786e-b010-58fd-8c52-5caef06d0918\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-04-08\", \"changeDate\": \"2020-04-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "unclassified", "defaulttitle": "Comprehensive, Adequate and Representative (CAR) Reserve for the Regional Forest Agreements", "abstract": "The CAR Reserve dataset is derived from the PLM25 and FMZ100 datasets that were extracted in December 2019 and represents the approximate location and extent of areas reserved in dedicated and informal reserves, current as at 31 March 2020. The dedicated reserve reflects the spatial extent of Parks and Reserves from PLM25. The informal reserve reflects spatial extent of Special Protection Zone (SPZ) from the FMZ100 layer. Values protected by prescription, which form part of the informal reserve component of the CAR reserve are not presented in the dataset as values protected by prescription are subject to field verification.", "anzlicid": "ANZVI0803008634", "geonet_info_createdate": "2020-04-08", "revisiondate": "2020-04-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ef4efde2bc7868d91acbefa54095a7317e0ca8d0", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "14d7189a-a1ac-5a29-8e42-f4237b795ab0", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-05-30", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcGIS feature class", "type": "dataset", "title": "Landform component mapping of north west Victoria", "alttitle": "NW_LANDFORM", "tempextentbegin": "2009-06-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2011-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "farming;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34635\", \"uuid\": \"14d7189a-a1ac-5a29-8e42-f4237b795ab0\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-30\", \"changeDate\": \"2019-05-30\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Landform component mapping of north west Victoria", "abstract": "A polygonal dataset of mapped landforms in the Victorian Mallee.\n\nThe dataset was created from the disaggregation of land systems originally defined by Rowan and Downes (1963). The disaggregation primarily involved an analysis of a 10 metre grid Digital Elevation Model (DEM) provided by the Department of Sustainability and Environment. The analysis included the use of the UPNESS index from the Fuzzy Landscape Analysis GIS (FLAG) model, Multi-resolution Valley Bottom Flatness (MrVBF) index, DEM derivative surfaces (such as slope, curvature, aspect and relative elevation) in combination with expert opinion, field observations and other supplementary datasets (such as aerial imagery, radiometrics, vegetation and GMU).\n\nThe dataset was created in a staged approach through 4 project phases. The project was sponsored by the Mallee Catchment Management Authority with funding from the Federal government's Caring for our Country initiative.\n\nThe final project report, \"Disaggregation of landform components within land systems of the Mallee\", and the Rowan and Downes (1963) report , \"A study of the land of north-western Victoria\", should be referred to when analysing or utilising this dataset.\n\nThe landform component mapping was supplemented and refined during a \"Wind erosion susceptibility mapping\" project conducted in 2011. Details of changes are included in the associated project report (refer to that metadata record).", "anzlicid": "ANZVI0803005564", "geonet_info_createdate": "2019-05-30", "revisiondate": "2019-05-30", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "85d11cac67da459f3a25c87dacb1ca1800b9fd40", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "b4d00a3c-2c20-591e-a5b3-6c8e6e5e4bda", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Hydrography Substance Extracted Table", "alttitle": "HY_SUBSTANCE_EXTRACTED", "tempextentbegin": "2023-01-24T00:07:47+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:07:47+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36776\", \"uuid\": \"b4d00a3c-2c20-591e-a5b3-6c8e6e5e4bda\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Hydrography Substance Extracted Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003191", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "447c1ce12ed44d987ad47fbc109ca5e9ca8732df", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e7252715-ec91-5956-bea0-b8ff496a6653", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo coverage/ArcView shapefile/MapInfo table", "type": "dataset", "title": "Final VEAC boundary for the River Red Gum Forests Investigation", "alttitle": "RIVER_RED_GUM_BND", "tempextentbegin": "2006-03-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2006-05-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36778\", \"uuid\": \"e7252715-ec91-5956-bea0-b8ff496a6653\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-08\", \"changeDate\": \"2017-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Final VEAC boundary for the River Red Gum Forests Investigation", "abstract": "This boundary has been created at 1:25,000 showing the River Red Gum Forests Investigation, for the Victorian Environmental Assessment Council.\nThe Minister, under Section 15 of the Victorian Environmental Assessment Council Act 2001 required VEAC to carry out an investigation of the public land of Victoria\u0092s River Red Gum Forests occurring on public land in northern Victoria. The area investigated was the river red gum ecosystem stretching from the South Australian border in the west to Wodonga in the north-east along the Murray River and down its major tributaries.", "anzlicid": "ANZVI0803003099", "geonet_info_createdate": "2017-03-08", "revisiondate": "2017-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f953b602c3f8d198caa05e995a79aa00c3a2838b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "739a18cc-d98f-5da7-9b72-b6426aad3c8d", "publicationdate": "2022-12-03", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-11", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Crown Land Tenure - Government Road Polygon", "alttitle": "GOV_ROAD_POLYGON", "tempextentbegin": "1990-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:13+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34716\", \"uuid\": \"739a18cc-d98f-5da7-9b72-b6426aad3c8d\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-08-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Crown Land Tenure - Government Road Polygon", "abstract": "Part of the Vicmap Crown Land Tenure dataset series. This dataset plays a key role in the management of Victoria's Crown land. It is being created (June 2003 - Feb 2004) from migrating LCMP layers into the Vicmap structure. At this stage it does not cover Metropolitan Melbourne.\n\nThe layer provides information about Crown Roads.\n\nThe dataset is continually maintained, obtaining maintenance from authoritative sources within State Government.\n\nGOV_ROAD_POLYGON is a polygon layer depicting Government Roads including roads as laid out on Parish Plans & proclaimed as Road in Government Gazettes.\n\nThe Vicmap Parcel and VM_CROWN_SIMPLE layer is also recording \"G\" CROWN_STATUS Parcels that are Government Roads parcelled by the Crown Land Registry unit.", "anzlicid": "ANZVI0803002917", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-08-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bd1c55c4760cdb61d7e52b6aa7af738179beb939", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c0559b38-c8b7-5f05-89ca-02c878345c1d", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Victorian Bushfires Severity Map 2009 (Polygons)", "alttitle": "FIRE_SEV09_POLY", "tempextentbegin": "2009-03-26T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2009-07-16T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34726\", \"uuid\": \"c0559b38-c8b7-5f05-89ca-02c878345c1d\", \"schema\": \"iso19115-3\", \"createDate\": \"2009-11-17\", \"changeDate\": \"2022-02-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Bushfires Severity Map 2009 (Polygons)", "abstract": "The vector dataset is based on the filtered version (3x3 pixel filter) of the class fire severity classification raster product as derived from a classification of a SPOT and Landsat TM woodlands fire severity indexes to map the fire severity of the February 2009 Victorian bush fires using ground control and air photograph analysis provided by DSE to Ecowise for validation. The noise filtered classification is the final product derived using SPOT 4/5 satellite imagery with Landsat 5 imagery used on small areas where cloud or where SPOT imagery coverage was unavailable. . The five of the eight classes have been labeled based on severity classes provided with the ground survey data. The remaining classes account for vegetation structures with no specific burn severity assigned. The area covered by the classification is approximately 460 by 300 km and is clipped to the extents of the fire effected lands (approximately 400 000 hectares).", "anzlicid": "ANZVI0803003677", "geonet_info_createdate": "2009-11-17", "revisiondate": "2022-02-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "95e2a311d778e242d095d3933009d15a89e6a2c2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "72c744a8-6abc-58d6-82f8-b25b55cec63c", "publicationdate": "2018-07-17", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-06-26", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "GDA94, decimal degrees based on GRS80", "type": "dataset", "title": "Coastal Protection Structures", "alttitle": "COAST_PROTECTION_STRUCT_LINE", "tempextentbegin": "2023-01-24T00:08:17+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:17+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "environment;oceans;geoscientific information;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34728\", \"uuid\": \"72c744a8-6abc-58d6-82f8-b25b55cec63c\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-06-26\", \"changeDate\": \"2020-06-26\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "unclassified", "defaulttitle": "Coastal Protection Structures", "abstract": "A dataset depicting coastal protective structures captured by the Department of Primary Industries for the Future Coasts Program in 2011 using aerial photography available in the DSE image repository, known as the Coordination Image Program (CIP). This dataset was further reviewed as part of the Future Coasts SECAP project (2011/2012). Information on the condition of a number of protection structures is available as a separate (restricted) database that links to this spatial dataset.\n\nThe data was reviewed in 2017, adding asset IDs to enable linking to asset management data.", "anzlicid": "ANZVI0803004743", "geonet_info_createdate": "2020-06-26", "revisiondate": "2020-06-26", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "509ebd8db709d3862f717520f5e6948f39556962", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ca6894d6-87fe-563c-a86c-c81d6bbbb64d", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-03-03", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Features - Geomark Polygon", "alttitle": "GEOMARK_POLYGON", "tempextentbegin": "2014-08-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:47+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;utilities communication;location;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34827\", \"uuid\": \"ca6894d6-87fe-563c-a86c-c81d6bbbb64d\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-03-03\", \"changeDate\": \"2016-03-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Features - Geomark Polygon", "abstract": "Polygon location of named or could be named Victorian topographic features. Inclusions are rivers, water bodies, transport (excluding roads), geographic features and most of the Vicmap Features of Interest polygon content. These features all reside within the Vicmap Framework Products. \nFeatures are combined to create one piece of geometry based on name and type. \nPolygons represent larger area features that have been captured in more detail. Examples include lakes, sports grounds, botanic gardens, municipal reserves and shopping precincts.", "anzlicid": "ANZVI0803005315", "geonet_info_createdate": "2016-03-03", "revisiondate": "2016-03-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "68a3e435f8c5b4dffceb8d74bee1d4ba3b96a740", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "41e89498-e053-5ad5-ad73-466b0d8a15b6", "publicationdate": "2022-11-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-28", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcVIew", "type": "dataset", "title": "Hydrogen facility Locations for Victoria Properties", "alttitle": "REN_HYDROGEN_FARM_PROPERTIES", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-03-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46250\", \"uuid\": \"41e89498-e053-5ad5-ad73-466b0d8a15b6\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-25\", \"changeDate\": \"2022-07-28\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Hydrogen facility Locations for Victoria Properties", "abstract": "Hydrogen facility Locations for Victoria.\n\n\nThe locations are a single polygon for the centre of the Hydrogen Facility", "anzlicid": "ANZVI0803008906", "geonet_info_createdate": "2021-03-25", "revisiondate": "2022-07-28", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "44dae927b6713483d835c8f8266a8048bde0c134", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "fbf40d11-6d85-526b-af0d-1682b5140314", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - State Assembly Polygon 1991", "alttitle": "STATE_ASSEMBLY_1991", "tempextentbegin": "1996-12-31T13:00:00+00:00", "resowner": "Victorian Electoral Commission", "tempextentend": "2001-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34828\", \"uuid\": \"fbf40d11-6d85-526b-af0d-1682b5140314\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - State Assembly Polygon 1991", "abstract": "State wide data showing Lower House boundaries and names 1991. These are the Legislative Assembly Electoral Districts referred to as the Lower House Boundaries.\n\nSUPERSESED dataset by VMADMIN_STATE_ASSEMBLY_2001", "anzlicid": "ANZVI0803002613", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "92b523c821b879e08bffd04f8b8f65828607417a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "2a497a3e-ce4a-5304-b263-5fd962a97129", "publicationdate": "2022-11-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-28", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcVIew", "type": "dataset", "title": "Pumped hydro facility Locations for Victoria Properties", "alttitle": "REN_PUMPED_HYDRO_FARM_PROPERTY", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-03-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46251\", \"uuid\": \"2a497a3e-ce4a-5304-b263-5fd962a97129\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-25\", \"changeDate\": \"2022-07-28\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Pumped hydro facility Locations for Victoria Properties", "abstract": "Pumped hydro facility Locations for Victoria.\n\n\nThe locations are a single polygon for the centre of the Pumped hydro Facility", "anzlicid": "ANZVI0803008908", "geonet_info_createdate": "2021-03-25", "revisiondate": "2022-07-28", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d315f21770e9431e5eaf569ad650eb8dd1b2fe56", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "bd063785-a8aa-54ea-867a-8237c8f64527", "publicationdate": "2021-03-30", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "MapInfo, ESRI Shape", "type": "dataset", "title": "Urban Development Program - Proposed Industrial Areas 2019", "alttitle": "IND2019_PROPOSED_AREAS", "tempextentbegin": "2019-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46260\", \"uuid\": \"bd063785-a8aa-54ea-867a-8237c8f64527\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-29\", \"changeDate\": \"2022-08-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Urban Development Program - Proposed Industrial Areas 2019", "abstract": "Land identified as future industrial areas. Used in conjunction with Industrial land dataset.\nUrban Development Program (UDP).", "anzlicid": "ANZVI0803008910", "geonet_info_createdate": "2021-03-29", "revisiondate": "2022-08-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "87005b80109610f8427c472f4abe461a7deb3ce5", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2f87100a-528b-54f7-9f15-d2c965a510cd", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Framwork Shoreline Datum Table", "alttitle": "FR_SHORELINE_DATUM", "tempextentbegin": "2023-01-24T00:08:52+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:52+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34843\", \"uuid\": \"2f87100a-528b-54f7-9f15-d2c965a510cd\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Framwork Shoreline Datum Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003228", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8dc35b5a2f0624d4aa1be7317825fa137154d344", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "052153d3-372e-5078-8150-1838b0dc4807", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-04-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Hunting Area Dataset Permitted Pest Hunting", "alttitle": "HUNT25_PESTS", "tempextentbegin": "2018-06-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:37+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34793\", \"uuid\": \"052153d3-372e-5078-8150-1838b0dc4807\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-06\", \"changeDate\": \"2022-04-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Hunting Area Dataset Permitted Pest Hunting", "abstract": "This hunting area dataset depicting areas where Pest hunting (Red Fox, European Hare, European Rabbit, Goat, Pig, Wild Dogs) is permitted, have boundaries largely derived from the PLM25 dataset which are supplemented with additional boundaries based on legislative restrictions on hunting. The dataset identifies the conditions under which hunting of given Game and Pest animal groups and species is permitted. \nThe rules used to produce this product were developed by the legislation unit with the Land Management Division of the Department of Environment , Land, Water and Planning in consultation with the Game Management Authority, VicPolice, Parks Victoria and other relevant government authorities. These rules are based on requirements in the Forest Act, National Park Act, Crown land (Reserve) Act, Land Act, Wildlife Act.\nNote : Hunters are personally responsible for acting in accordance with the Firearms Act 1996\n(including informing themselves about any prohibited locations within the areas shown on this map)\nand other relevant laws; obtaining the required hunting licence; and for hunting only within season.\nMore information can be obtained from the Game Management Authority's web site.\n\nVicmap Basemap Services | State Government of Victoria | @DELWP", "anzlicid": "ANZVI0803005894", "geonet_info_createdate": "2019-11-06", "revisiondate": "2022-04-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a18d487561291975fb5002372e3666d9165f4b3a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "50e39451-8c46-5d9d-9088-4e2f3b29d80a", "publicationdate": "2021-02-25", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-23", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcVIew", "type": "dataset", "title": "Wind Farm Exclusion Zone", "alttitle": "WIND_FARM_EXCLUSION_ZONE", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-11-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46153\", \"uuid\": \"50e39451-8c46-5d9d-9088-4e2f3b29d80a\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-02-24\", \"changeDate\": \"2021-07-23\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Wind Farm Exclusion Zone", "abstract": "Wind Farm cables for Victoria\n\nWind energy has the potential to provide a significant proportion of Victoria's growth in renewable energy generation over the next coming years. The Government supports the development of wind energy in appropriate locations.\n\nPlanning Scheme Amendment VC82, make it clear where in Victoria a wind energy facility may be considered. The planning reform guarantees the residents of rural and regional Victoria certainty and fairness in wind farm planning decisions and ensures that communities are given a say in major planning applications.\n\nThe linear features of cabling that connects Turbines to substation", "anzlicid": "ANZVI0803008875", "geonet_info_createdate": "2021-02-24", "revisiondate": "2021-07-23", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "765d88846b83e7dc13db5a1998417aec97963ec4", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "cb8f5b10-2ee2-5a4d-9dd5-ad450a9718c3", "publicationdate": "2021-03-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Declared Distinctive Areas and Landscapes", "alttitle": "DECLARED_DALS", "tempextentbegin": "2019-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2020-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46164\", \"uuid\": \"cb8f5b10-2ee2-5a4d-9dd5-ad450a9718c3\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-01\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Declared Distinctive Areas and Landscapes", "abstract": "Areas indentified to safeguard the state's distinctive areas and landscapes\n\nThis layer is indicative only and designed only for cartographic use. It should not be used for any detailed analysis work.", "anzlicid": "ANZVI0803008877", "geonet_info_createdate": "2021-03-01", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "45edd3fe46fc3672123713d647974e9c119238a5", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9cdf7e9c-f65a-5bda-a176-e4ee39dcea72", "publicationdate": "2021-03-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-10", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcVIew", "type": "dataset", "title": "Electricity Transmission Substations", "alttitle": "ELECTRICITY_SUBSTATIONS", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-11-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46165\", \"uuid\": \"9cdf7e9c-f65a-5bda-a176-e4ee39dcea72\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-01\", \"changeDate\": \"2022-03-10\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Electricity Transmission Substations", "abstract": "Electricity Transmission Substations", "anzlicid": "ANZVI0803008878", "geonet_info_createdate": "2021-03-01", "revisiondate": "2022-03-10", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "845399637eca17bd0c34af09654bae55a39f7676", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "de1e2f25-fe5c-595a-baad-016588b96cca", "publicationdate": "2021-03-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-10", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcVIew", "type": "dataset", "title": "Radii Major Centres", "alttitle": "RADII_MAJOR_CENTRES", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-11-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46172\", \"uuid\": \"de1e2f25-fe5c-595a-baad-016588b96cca\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-01\", \"changeDate\": \"2022-03-10\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Radii Major Centres", "abstract": "Radii of Melbourne and some regional centres. 10, 20, 30, 40, 50 & 100km.", "anzlicid": "ANZVI0803008883", "geonet_info_createdate": "2021-03-01", "revisiondate": "2022-03-10", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a55b13db0e162f3aecaffc10326b42ca17b2399e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8f25a16a-f2ee-552a-9aee-f8b210f51f92", "publicationdate": "2019-11-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-11-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Planned Burns 2019/20 - 2021/22 now called Joint Fuel management program JFMP includes burns and works", "alttitle": "BURNPLAN20", "tempextentbegin": "2019-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2020-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34802\", \"uuid\": \"8f25a16a-f2ee-552a-9aee-f8b210f51f92\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-29\", \"changeDate\": \"2019-11-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Planned Burns 2019/20 - 2021/22 now called Joint Fuel management program JFMP includes burns and works", "abstract": "Last updated: November 2019\n\nThis dataset represents the spatial extent of prescribed burns planned for ignition and associated mechanical and vegetation works on Public Land in Victoria and some CFA burns. This data is prepared annually for prescribed burns planned for the immediate three-year period. This dataset is now the joint fuel management plan and now includes the CFA burns as well as VicForest coupe burns.", "anzlicid": "ANZVI0803008618", "geonet_info_createdate": "2019-11-29", "revisiondate": "2019-11-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "342aa4fed09742c9de4ced5bb9fb899e43f15401", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "92a7f68e-8140-5867-88ae-800a582f94a9", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Hydrography Beacon Type Table", "alttitle": "HY_BEACON_TYPE", "tempextentbegin": "2023-01-24T00:08:40+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:40+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34803\", \"uuid\": \"92a7f68e-8140-5867-88ae-800a582f94a9\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Hydrography Beacon Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003177", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ca7f0c878a8907f504c0d0b20a4bc4c036fc74f7", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "693636d3-d663-53a5-bfc5-09df1babe5b6", "publicationdate": "2021-05-26", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "WMS", "type": "dataset", "title": "Native Vegetation Regulations Area", "alttitle": "MSA_NVRA", "tempextentbegin": "2013-04-16T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:41+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46190\", \"uuid\": \"693636d3-d663-53a5-bfc5-09df1babe5b6\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-09\", \"changeDate\": \"2021-03-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Native Vegetation Regulations Area", "abstract": "This dataset provides the spatial extent of areas within the State of Victoria that are covered by the native vegetation permitted clearing regulations.\n\nThat is, areas outside of the coverage of the Melbourne Strategic Assessment.", "anzlicid": "ANZVI0803008887", "geonet_info_createdate": "2021-03-09", "revisiondate": "2021-03-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0bf99502cdb7fedc04003d18002e745475d2fed7", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "ba99062e-42d2-5fcf-9f77-631800b35ef1", "publicationdate": "2021-03-10", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Suburban Rail Loop concept route", "alttitle": "SRL_CONCEPT_ROUTE", "tempextentbegin": "2018-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:41+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46191\", \"uuid\": \"ba99062e-42d2-5fcf-9f77-631800b35ef1\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-09\", \"changeDate\": \"2021-03-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Suburban Rail Loop concept route", "abstract": "This dataset contains line data for potential SRL concept route. For more information https://suburbanrailloop.vic.gov.au/", "anzlicid": "ANZVI0803008893", "geonet_info_createdate": "2021-03-09", "revisiondate": "2021-03-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "742b820f84fe649a189f3f6d9a72567325164f75", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "f5cdbe97-6943-5a18-89da-4b62fe1e346b", "publicationdate": "2021-03-10", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Suburban Rail Loop Potential Stations", "alttitle": "SRL_POTENTIAL_STATIONS", "tempextentbegin": "2018-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:41+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46192\", \"uuid\": \"f5cdbe97-6943-5a18-89da-4b62fe1e346b\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-09\", \"changeDate\": \"2021-03-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Suburban Rail Loop Potential Stations", "abstract": "This dataset contains point layer data for potential SRL station locations. For more information https://suburbanrailloop.vic.gov.au/", "anzlicid": "ANZVI0803008892", "geonet_info_createdate": "2021-03-09", "revisiondate": "2021-03-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "470377ce933abe3a01d39d2fe337c00fa013fc6d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "766ce06a-7d46-5c6c-b6c3-5e2fed74d1ef", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "WESTERN PORT 1% AEP 0.8M SLR INUNDATION", "alttitle": "WP_1AEP_80CMSLR_EXTENT", "tempextentbegin": "2013-01-27T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2015-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;geoscientific information;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34807\", \"uuid\": \"766ce06a-7d46-5c6c-b6c3-5e2fed74d1ef\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-05-04\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "WESTERN PORT 1% AEP 0.8M SLR INUNDATION", "abstract": "The Western Port Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Western Port coastal environment. Information has been collected on inundation hazards (storm surge and catchment inflows) using modelling for different sea level rise scenarios. \nThis data represents the extent of storm tide inundation for the 1% Average Exceedance Probability (AEP) storm tide with the +0.8m sea level rise scenario (based on hydrodynamic modelling). \n\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.", "anzlicid": "ANZVI0803005420", "geonet_info_createdate": "2016-05-04", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6ddc60ef7b42ec837aba374447a14e8b4d0f4795", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "3b5a11fb-0d8c-5931-8a00-c088f04ac247", "publicationdate": "2021-03-10", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme map grids", "alttitle": "PLANNING_SCHEME_MAPGRIDS", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:42+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46194\", \"uuid\": \"3b5a11fb-0d8c-5931-8a00-c088f04ac247\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-09\", \"changeDate\": \"2021-03-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme map grids", "abstract": "This dataset contains polygon features representing planning scheme map grids.", "anzlicid": "ANZVI0803008894", "geonet_info_createdate": "2021-03-09", "revisiondate": "2021-03-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f716c98681011d81e04480fa3d761fec3be85075", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "52903101-c348-5357-81dd-9e6d99763960", "publicationdate": "2021-05-26", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "WMS", "type": "dataset", "title": "Melbourne Strategic Assessment Completed Precincts", "alttitle": "MSA_12PSP", "tempextentbegin": "2013-04-16T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:42+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46196\", \"uuid\": \"52903101-c348-5357-81dd-9e6d99763960\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-09\", \"changeDate\": \"2021-03-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Melbourne Strategic Assessment Completed Precincts", "abstract": "This dataset provides the spatial extent of the existing completed precinct structure plan area within the Melbourne Strategic Assessment.", "anzlicid": "ANZVI0803008890", "geonet_info_createdate": "2021-03-09", "revisiondate": "2021-03-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ae7d8f0b273ab07e71ed89c39bb4c03d16dc8fd5", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "aafdd3dc-f52e-5e9a-b2cf-83f755207555", "publicationdate": "2023-01-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-23", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning Permit Activity Reporting System (PPARS)", "alttitle": "PPARS_GEOCODED", "tempextentbegin": "2014-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:43+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46197\", \"uuid\": \"aafdd3dc-f52e-5e9a-b2cf-83f755207555\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-09\", \"changeDate\": \"2021-07-23\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning Permit Activity Reporting System (PPARS)", "abstract": "This dataset contains geocoded points for the location of Planning Permits, there also exists a related polygon layer at LGA level which gives aggregated number of planning permits. For more information https://www.planning.vic.gov.au/resource-library/planning-permit-activity-in-victoria", "anzlicid": "ANZVI0803008888", "geonet_info_createdate": "2021-03-09", "revisiondate": "2021-07-23", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "024f5f7c2de06981793b33f1f662a1b285aa8228", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e79d022c-e026-5574-9cb3-d6e1c84475c6", "publicationdate": "2017-05-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-08-24", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Aspatial Table- Vegetation growth stage information for Ecological Fire Groups and Ecological Vegetation Divisions on public land", "alttitle": "EFG_EVD_GROWTH_STAGES", "tempextentbegin": "2010-11-29T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:43+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34814\", \"uuid\": \"e79d022c-e026-5574-9cb3-d6e1c84475c6\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-08-24\", \"changeDate\": \"2017-08-24\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Aspatial Table- Vegetation growth stage information for Ecological Fire Groups and Ecological Vegetation Divisions on public land", "abstract": "This table provides vegetation growth stage information for Ecological Fire Groups (EFGs) and Ecological Vegetation Divisions (EVDs) on public land.", "anzlicid": "ANZVI0803005683", "geonet_info_createdate": "2017-08-24", "revisiondate": "2017-08-24", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b4d3c6bb541dae075abb408783416d575380cb24", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "4c4c1c41-ec98-504c-a647-43e4652a034e", "publicationdate": "2022-12-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-28", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcVIew", "type": "dataset", "title": "Bioenergy facility Locations for Victoria Properties", "alttitle": "REN_BIOENERGY_FARM_PROPERTIES", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-03-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46242\", \"uuid\": \"4c4c1c41-ec98-504c-a647-43e4652a034e\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-25\", \"changeDate\": \"2022-07-28\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Bioenergy facility Locations for Victoria Properties", "abstract": "Bioenergy facility Locations for Victoria.\n\n\nThe locations are a single polygon for the centre of the Bioenergy Facility", "anzlicid": "ANZVI0803008900", "geonet_info_createdate": "2021-03-25", "revisiondate": "2022-07-28", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b0ebe5c958ae67b757680fd452a1bc2ad707bcad", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "2b3f5266-e85a-5c9a-aad4-f1d3bb017cf4", "publicationdate": "2023-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-10", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcVIew", "type": "dataset", "title": "Coal facility Locations for Victoria", "alttitle": "REN_COAL_FARM", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-03-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46243\", \"uuid\": \"2b3f5266-e85a-5c9a-aad4-f1d3bb017cf4\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-25\", \"changeDate\": \"2022-03-10\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Coal facility Locations for Victoria", "abstract": "Coal facility Locations for Victoria.\n\n\nThe locations are a single point for the centre of the Coal Facility", "anzlicid": "ANZVI0803008901", "geonet_info_createdate": "2021-03-25", "revisiondate": "2022-03-10", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c75c5b3b4e5f89a43337d87237f018a70659d6c3", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "5de73c99-1f54-5759-9f07-ec7eba1b497b", "publicationdate": "2022-11-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-10", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcVIew", "type": "dataset", "title": "Pumped hydro facility Locations for Victoria", "alttitle": "REN_PUMPED_HYDRO_FARM", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-03-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46245\", \"uuid\": \"5de73c99-1f54-5759-9f07-ec7eba1b497b\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-25\", \"changeDate\": \"2022-03-10\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Pumped hydro facility Locations for Victoria", "abstract": "Pumped hydro facility Locations for Victoria.\n\n\nThe locations are a single point for the centre of the Pumped hydro Facility", "anzlicid": "ANZVI0803008907", "geonet_info_createdate": "2021-03-25", "revisiondate": "2022-03-10", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "3e032b67b11ea10f841f29f50394db38c4ffce0b", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3e0ae78c-d086-50b2-b884-cd0b41938edb", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Hydrography Ground Relationship Table", "alttitle": "HY_GROUND_RELATIONSHIP", "tempextentbegin": "2023-01-24T00:08:46+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:46+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34823\", \"uuid\": \"3e0ae78c-d086-50b2-b884-cd0b41938edb\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Hydrography Ground Relationship Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003182", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1594ff1ad8057c14182656595931cca30bc1edd4", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "766c7991-37e4-54e1-9d2d-75b0cb87f01d", "publicationdate": "2022-11-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-10", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcVIew", "type": "dataset", "title": "Hydrogen facility Locations for Victoria", "alttitle": "REN_HYDROGEN_FARM", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-03-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46248\", \"uuid\": \"766c7991-37e4-54e1-9d2d-75b0cb87f01d\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-03-25\", \"changeDate\": \"2022-03-10\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Hydrogen facility Locations for Victoria", "abstract": "Hydrogen facility Locations for Victoria.\n\n\nThe locations are a single point for the centre of the Hydrogen Facility", "anzlicid": "ANZVI0803008905", "geonet_info_createdate": "2021-03-25", "revisiondate": "2022-03-10", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "37de6e6785c60143b97691600cd22a7bd0526b91", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "98a589e7-7c14-5fe0-8549-532563607a22", "publicationdate": "2021-09-11", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-09-10", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Fire Management Zones", "alttitle": "FIREFMZ", "tempextentbegin": "2010-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-09-09T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34731\", \"uuid\": \"98a589e7-7c14-5fe0-8549-532563607a22\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-06-23\", \"changeDate\": \"2021-09-10\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Fire Management Zones", "abstract": "This layer represents polygon coverage of Fire Management Zones across the entire State of Victoria, generally on public land. The Fire Management Zone is an area of land which provides a framework for future fuel management programs and whether fire is suitable for managing public land to provide asset protection, bushfire moderation, landscape management or planned burn exclusion. \n \nDataset last updated 10 September 2021 with changes to regional zoning in the Hume Region (per K.Nolan).\nDataset last updated 01 July 2020 with changes to regional zoning from the statewide Strategic Bushfire Management Planning process 2017-2019.\nDataset last updated 20 April 2017 with changes from WCBRL (per A Boak). \nDataset updated 30 Jan 2017 with changes from ECBRL (per F Wilson). \nDataset updated 19 August 2016 with changes from MMGBRL (per D Prior).", "anzlicid": "ANZVI0803004459", "geonet_info_createdate": "2020-06-23", "revisiondate": "2021-09-10", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "11c1385a84245f58f18aef5f90b3d8840daed840", "fields": {"available_formats": "ECW,GeoTIFF,JPEG,JPEG 2000,TIFF", "resclassification": "unclassified", "uuid": "00ba9006-32c3-5be0-927c-c416d1d49206", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Watertable Elevation Surface", "alttitle": "WATERTABLE_ELEVATION_SURFACE", "tempextentbegin": "2011-06-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-02-28T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34732\", \"uuid\": \"00ba9006-32c3-5be0-927c-c416d1d49206\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-21\", \"changeDate\": \"2021-07-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Watertable Elevation Surface", "abstract": "This dataset was compiled for the purposes of the Secure Allocations Future Entitlements (SAFE) project. The SAFE project was funded by the Commonwealth Government under the Nartional Groundwater Action Plan to progress the managment of groundwater in Victoria.\n\nA number of datasets were used to produce the Watertable Elevation Surface included bore readings of watertable depth and a digital terrain model for the state. Existing models of watertable geometry from a number of projects were also incoroporated into the mapping process.\n\nAt the conclusion of the project, a model based on watertable elevation in mAHD was produced at a 100m resolution.", "anzlicid": "ANZVI0803004971", "geonet_info_createdate": "2019-11-21", "revisiondate": "2021-07-14", "spatialrepresentationtype_text": "Grid"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "032acb23f55d8d255a98064440398eae26ac56e9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9753ed02-4f2a-59a0-a673-73fbe934f58a", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-07-03", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Lite - Watercourse Line - 1:250,000 to 1:5,000,000", "alttitle": "VMLITE_HY_WATERCOURSE", "tempextentbegin": "2006-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2015-10-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34738\", \"uuid\": \"9753ed02-4f2a-59a0-a673-73fbe934f58a\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-07-03\", \"changeDate\": \"2020-07-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Lite - Watercourse Line - 1:250,000 to 1:5,000,000", "abstract": "This layer is part of Vicmap Lite and contains line features delineating hydrological features. Vicmap Lite datasets are suited for use between scales of 1: 250,000 and 1 : 5 million. The linework was sourced from Vicmap Hydro. The level of attribute information, the number of features and the number of vertices has been simplified to suit the 1: 250,000 - 1 : 5 million scale range. The concept of a Scale Use Code has been introduced to help control the level of detail displayed.\n\nIf this dataset is used in conjunction with vmlite_hy_water_area, then the draw order should be such that vmlite_hy_watercourse is drawn 1st and vmlite_hy_water_area is drawn ontop.\n\nTHIS DATASET WAS LAST UPDATED IN NOVEMBER 2015", "anzlicid": "ANZVI0803003512", "geonet_info_createdate": "2020-07-03", "revisiondate": "2020-07-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b03e49630f0502724474f6be1f21ed3ae5de3c0c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "2ec9a526-71b7-586d-9ada-c2d3a39cfca6", "publicationdate": "2022-05-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 48", "alttitle": "MELWAY_MAPINDEX_10_ED48", "tempextentbegin": "2020-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2020-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"45961\", \"uuid\": \"2ec9a526-71b7-586d-9ada-c2d3a39cfca6\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-12-22\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 48", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:10 000 inner urban maps.", "anzlicid": "ANZVI0803008818", "geonet_info_createdate": "2020-12-22", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f52d9948dfa341042b07075c2849c149e95da1dc", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "4cc1d33d-9003-5c86-9524-e9fef4fce5de", "publicationdate": "2022-05-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:5,000 Edition 48", "alttitle": "MELWAY_MAPINDEX_5_ED48", "tempextentbegin": "2020-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2020-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"45965\", \"uuid\": \"4cc1d33d-9003-5c86-9524-e9fef4fce5de\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-12-22\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:5,000 Edition 48", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:5 000 city maps.", "anzlicid": "ANZVI0803008823", "geonet_info_createdate": "2020-12-22", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d7e0e51c5a0560658e6e363f72badcc10a81b1ca", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "8da964e2-1439-5964-9881-fe4345b8db10", "publicationdate": "2022-05-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:20,000 Edition 48", "alttitle": "MELWAY_MAPINDEX_20_ED48", "tempextentbegin": "2020-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2020-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"45972\", \"uuid\": \"8da964e2-1439-5964-9881-fe4345b8db10\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-12-22\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:20,000 Edition 48", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:20 000 Greater Melbourne maps.", "anzlicid": "ANZVI0803008821", "geonet_info_createdate": "2020-12-22", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7d190d07553843c5d6b3b753d218b8751e84e9fa", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "fb50c8bd-47c6-519c-96e9-10e3c3d8d73f", "publicationdate": "2022-05-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:15,000 Edition 48", "alttitle": "MELWAY_MAPINDEX_15_ED48", "tempextentbegin": "2020-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2020-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"45974\", \"uuid\": \"fb50c8bd-47c6-519c-96e9-10e3c3d8d73f\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-12-22\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:15,000 Edition 48", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:15 000 Queenscliffe maps.", "anzlicid": "ANZVI0803008820", "geonet_info_createdate": "2020-12-22", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a329605209f4ec3cdec4ccfe422262de8c09856a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "db3deedd-c1e0-549d-b566-76987cc9b3fc", "publicationdate": "2021-01-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Plan Melbourne Growth Areas", "alttitle": "PM_GROWTH_AREAS", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46005\", \"uuid\": \"db3deedd-c1e0-549d-b566-76987cc9b3fc\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-05\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Plan Melbourne Growth Areas", "abstract": "Polygons representing Melbourne's growth areas.", "anzlicid": "ANZVI0803008835", "geonet_info_createdate": "2021-01-05", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "abb625b446181fc18e0545f1d14af0af4dc68a84", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "730f080c-66d1-5a98-96d6-937e2e89e92a", "publicationdate": "2021-01-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Plan Melbourne Conservation Reserves", "alttitle": "PM_CONSERVATION_RESERVES", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46007\", \"uuid\": \"730f080c-66d1-5a98-96d6-937e2e89e92a\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-05\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Plan Melbourne Conservation Reserves", "abstract": "Points representing Conservation Reserves. Categories include proposed (future reserves where land and insfrastructure delivery has not yet commenced) and emerging (reserves where land acquisition or transfer and/or associated insfrastructure delivery is incomplete)", "anzlicid": "ANZVI0803008837", "geonet_info_createdate": "2021-01-05", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1134000d7644b0863b239c2935b1cac3d1d4c80d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "19379154-81e7-5937-a263-aaf0056f4544", "publicationdate": "2021-02-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Plan Melbourne Activity Centres", "alttitle": "PM_ACTIVITY_CENTRES", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46009\", \"uuid\": \"19379154-81e7-5937-a263-aaf0056f4544\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-05\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Plan Melbourne Activity Centres", "abstract": "Point feature layer showing existing and future Metropolitan Activity Centres and Major Activity Centres (also includes Central City).\n\nThis layer is indicative only and designed only for cartographic use. It should not be used for any detailed analysis work.Future Activity Centres have been determined based on Growth Corridor Plans prepared for Melbourne's growth areas (MPA, 2012).", "anzlicid": "ANZVI0803008832", "geonet_info_createdate": "2021-01-05", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f83609b4620a69395fafaf14faac0b5770326a67", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "bebc189b-7b02-5a2f-b2c3-4477db09729a", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Infrastructure Utility Structure Type Table", "alttitle": "IN_UTIL_STRUCTURE_TYPE", "tempextentbegin": "2023-01-24T00:08:27+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:27+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34762\", \"uuid\": \"bebc189b-7b02-5a2f-b2c3-4477db09729a\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Infrastructure Utility Structure Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003207", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4fd527dcb16ee26a745817e4f3d6e0edef0f132d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "3fa4d797-e402-5041-81f8-e8a034086123", "publicationdate": "2021-01-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Plan Melbourne State Significant Industrial Precincts", "alttitle": "PM_SS_INDUSTRIAL_PRECINCTS", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46017\", \"uuid\": \"3fa4d797-e402-5041-81f8-e8a034086123\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-05\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Plan Melbourne State Significant Industrial Precincts", "abstract": "Polygons showing future and existing State Significant Industrial Precincts. Existing State Significant Industrial Precincts have been derived from Planning Scheme industrial zones in July 2016. Future State Significant Industrial Precincts are derived from land identified for industry in the Growth Corridor Plans 2012 (MPA).", "anzlicid": "ANZVI0803008841", "geonet_info_createdate": "2021-01-05", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b17af5b388862c37cdf231196906c1df3657e12d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "2885d478-ec77-5b93-9fcd-d96a45431929", "publicationdate": "2021-01-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Plan Melbourne Health and Education Precincts", "alttitle": "PM_HEALTH_AND_EDUCATION", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46018\", \"uuid\": \"2885d478-ec77-5b93-9fcd-d96a45431929\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-05\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Plan Melbourne Health and Education Precincts", "abstract": "Points showing locations of health, education and combined health and education precincts. \n\nThis layer is indicative only and designed only for cartographic use. It should not be used for any detailed analysis work.", "anzlicid": "ANZVI0803008836", "geonet_info_createdate": "2021-01-05", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b290cd52b4014445899202928e34b24ebd3285af", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "d42a9d8b-5580-52f9-babd-d8e21e5c6318", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-06-01", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "SDM formats", "type": "dataset", "title": "River Health Program Environmental Watering Priority Wetlands & Floodplain Areas for the Victorian Investment Framework", "alttitle": "VIF_RIVERHEALTH_EWWFA100", "tempextentbegin": "2010-02-16T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2011-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34766\", \"uuid\": \"d42a9d8b-5580-52f9-babd-d8e21e5c6318\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-06-01\", \"changeDate\": \"2016-06-01\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "River Health Program Environmental Watering Priority Wetlands & Floodplain Areas for the Victorian Investment Framework", "abstract": "OBSOLETE POLICY LAYER - A white paper for land and biodiversity at a time of climate change 2009\n\nThe 'Priority wetlands and floodplains for environmental watering' layer (derived from WETLAND_1994 and PLM100_POLYGON) represents the priority areas for environmental watering and environmental water works, including Living Murray Icon Sites and other important wetlands. These areas have been identified through environmental entitlements, water recovery plans and projects, Sustainable Water Strategies, Regional River Health Strategies and associated Addendums.\n\nThis layer should be used in conjunction with the latest Victorian Investment Framework (VIF) Statement of Priorities document. Catchment Management Authorities are responsible for prioritising actions within their region based upon these priorities and available funding.\n\nTo be viewed in conjunction with VIF_RIVERHEALTH_PRI100; VIF_RIVERHEALTH_LSRR100 and VIF_RIVERHEALTH_EW100", "anzlicid": "ANZVI0803003984", "geonet_info_createdate": "2016-06-01", "revisiondate": "2016-06-01", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bc8b856dee37287e7932e7569e1b4f6de64b33b8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "ffc5fa1b-5e32-5f4c-ab18-c2d8543e1450", "publicationdate": "2021-01-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Victoria in Future 2019 projections by LGA", "alttitle": "VICTORIA_IN_FUTURE_2019_LGA", "tempextentbegin": "2019-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46022\", \"uuid\": \"ffc5fa1b-5e32-5f4c-ab18-c2d8543e1450\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-06\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Victoria in Future 2019 projections by LGA", "abstract": "Victoria in Future 2019 (VIF2019) covers the period 2016 to 2056 for Victoria and the major regions. For Local Government Areas (LGA), smaller areas (VIFSAs) and Australian Statistical Geography Standard Areas Level 2 (SA2) and above, it covers the period to 2036.", "anzlicid": "ANZVI0803008849", "geonet_info_createdate": "2021-01-06", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ec4a776ce0f7a009f54b104479b3a3b24861625e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "0a7fd166-a8bb-559a-9af1-35d04ef3ef3e", "publicationdate": "2021-01-08", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Avalon Airport Future OLS", "alttitle": "AE_AVALON_FUTURE_OLS", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46029\", \"uuid\": \"0a7fd166-a8bb-559a-9af1-35d04ef3ef3e\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-07\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Avalon Airport Future OLS", "abstract": "Avalon Airport Future Obstacle Limitation Surface (OLS)", "anzlicid": "ANZVI0803008852", "geonet_info_createdate": "2021-01-07", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5a7efcb348d1ceaf31604a148c06c87233e8f97a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "ea094a08-4456-5203-91cd-b6e3cadaf3c5", "publicationdate": "2021-01-08", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Avalon Airport ANEF 2031", "alttitle": "AE_AVALON_ANEF_2031", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46030\", \"uuid\": \"ea094a08-4456-5203-91cd-b6e3cadaf3c5\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-07\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Avalon Airport ANEF 2031", "abstract": "Avalon Airport ANEF 2031", "anzlicid": "ANZVI0803008854", "geonet_info_createdate": "2021-01-07", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f67ea77fc58ba0322519d00fd051a13e87ad706d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2292b441-5c0a-5ed6-83fa-3db9c709bd3e", "publicationdate": "2022-06-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-05-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "WMS", "type": "dataset", "title": "Conservation Areas in the Biodiversity Conservation Strategy", "alttitle": "MSA_BCS_CONS_AREA", "tempextentbegin": "2013-04-16T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:31+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34774\", \"uuid\": \"2292b441-5c0a-5ed6-83fa-3db9c709bd3e\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-05-13\", \"changeDate\": \"2020-05-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Conservation Areas in the Biodiversity Conservation Strategy", "abstract": "The dataset provides conservation areas, within the Melbourne West, Sunbury (Melbourne North-west), Melbourne North and Melbourne South-east growth areas between the 2005 and 2010 Urban Growth Boundary. \n\nThe dataset is the basis of \"biodiversity areas\" identified in the Melbourne Growth Corridor Plans (May 2012) and the Biodiversity Conservation Strategy for the Melbourne Growth Corridors to be released in 2013, and prepared as a requirement of the Melbourne Strategic Assessment under the Commonwealth EPBC Act.", "anzlicid": "ANZVI0803004899", "geonet_info_createdate": "2020-05-13", "revisiondate": "2020-05-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c2582fadff65fa59ef77162b7fbf6458d1d00f04", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "942b8b9d-b6a3-5d24-bb16-4a0585b3b04d", "publicationdate": "2021-01-08", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Avalon Airport Future OLS points", "alttitle": "AE_AVALON_FUTURE_OLS_PT", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46032\", \"uuid\": \"942b8b9d-b6a3-5d24-bb16-4a0585b3b04d\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-07\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Avalon Airport Future OLS points", "abstract": "Avalon Airport Future Obstacle Limitation Surface (OLS) points", "anzlicid": "ANZVI0803008853", "geonet_info_createdate": "2021-01-07", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "3b1420301ee3e91de20b57c59485241cca4da465", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "bb47bba7-9e2d-5fa2-b167-528fe4894420", "publicationdate": "2021-01-09", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Melbourne Airport Australian Noise Exposure Forecast Long Range", "alttitle": "AE19_MELBOURNE_NCAT_2019", "tempextentbegin": "2019-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46042\", \"uuid\": \"bb47bba7-9e2d-5fa2-b167-528fe4894420\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-08\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Melbourne Airport Australian Noise Exposure Forecast Long Range", "abstract": "Melbourne Airport Australian Noise Exposure Forecast Long Range", "anzlicid": "ANZVI0803008862", "geonet_info_createdate": "2021-01-08", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "487e9aaaf7ce5f89d0c4b5ec8df73b45bed7a9ab", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "33d7e827-3e28-5ff7-9be1-4b26397ccf27", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "GIPPSLAND LAKES 1% AEP 0.2M SLR INUNDATION", "alttitle": "GL_1AEP_20CMSLR_EXTENT", "tempextentbegin": "2012-10-11T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-04-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;geoscientific information;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34784\", \"uuid\": \"33d7e827-3e28-5ff7-9be1-4b26397ccf27\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-09-27\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "GIPPSLAND LAKES 1% AEP 0.2M SLR INUNDATION", "abstract": "The Gippsland Lakes Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Gippsland Lakes coastal environment.\n\nThis data represents the extent of the 1% Average Exceedance Probability (AEP) water level within the Gippsland Lakes, incorporating a +0.2m increase in mean sea level (MSL) conditions based on hydrodynamic modelling. The 1% AEP water level conditions comprise of a combination of catchment generated inflows, coastal ocean levels and wind setup.\n\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.", "anzlicid": "ANZVI0803005602", "geonet_info_createdate": "2018-09-27", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "393556b566dd9dd41fd51e6c91a73b64f7dfd3c7", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "11f22ce9-900c-577f-8aeb-c99efd8b3dce", "publicationdate": "2021-01-30", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-01-29", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Bushfire Risk Engagement Areas (BREA)", "alttitle": "FIRE_BREA", "tempextentbegin": "2018-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2020-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46087\", \"uuid\": \"11f22ce9-900c-577f-8aeb-c99efd8b3dce\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-29\", \"changeDate\": \"2021-01-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Bushfire Risk Engagement Areas (BREA)", "abstract": "This layer represents polygon coverage Bushfire Risk Engagement Areas (BREA) across the entire State of Victoria, generally on both public and private land. BREA is broad land categorisation which provides a prioritisation framework for fuel management engagement and delivery where fire is suitable for managing risk.\n\nGeneralised boundary layer aligned to areas of bushfire risk and may not correlate to natural, manmade or administrative features.\n\nDataset was created 18 September with from the statewide strategic bushfire management planning process 2017-2019 \n\n \n\nDataset last updated 20 April 2017 with changes from WCBRL (per A Boak). \nDataset updated 30 Jan 2017 with changes from ECBRL (per F Wilson). \nDataset updated 19 August 2016 with changes from MMGBRL (per D Prior).", "anzlicid": "ANZVI0803008866", "geonet_info_createdate": "2021-01-29", "revisiondate": "2021-01-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "999189b173e6b4d9594fae0d7e9553c1fa76f661", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9d162aff-94cb-54fd-ab8b-b94abde16239", "publicationdate": "2022-08-06", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Fire History showing the number of times areas have been burnt, based on mapped fire history (scars)", "alttitle": "FIRE_HISTORY_FREQUENCY", "tempextentbegin": "1991-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:35+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46105\", \"uuid\": \"9d162aff-94cb-54fd-ab8b-b94abde16239\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-02-04\", \"changeDate\": \"2022-08-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Fire History showing the number of times areas have been burnt, based on mapped fire history (scars)", "abstract": "This layer represents the number of times an area has been burnt, based on mapped fire history. This dataset is based on the BLD_FIRE_SCAR dataset, and provides number of (and years of) planned burns and fires (both separated out and combined), plus years since a location has been burnt.This shows both public and private land\n\n The layer includes bushfires and DELWP planned burn information. This dataset only shows the fire scars (boundaries) - to allow a simplified view of fire frequency.\nCFA data on fires occurring on private land has also been included since 2009.\n\nThis data set was updated in August 2022 and includes fire season 21/22.", "anzlicid": "ANZVI0803008867", "geonet_info_createdate": "2021-02-04", "revisiondate": "2022-08-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6954543e3ff215ec78615afc93f4fae63be7b78e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a6fc7b28-6f8a-531e-9ecb-cbaedfe01f36", "publicationdate": "2022-11-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-09-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo, Ingres, MapInfo & Access", "type": "dataset", "title": "Geological Sites", "alttitle": "SITES", "tempextentbegin": "1989-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:08:35+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34787\", \"uuid\": \"a6fc7b28-6f8a-531e-9ecb-cbaedfe01f36\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-19\", \"changeDate\": \"2013-09-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological Sites", "abstract": "The layer is really a brief summary of all sites. It will provide information on whether the site is GSIGFEAT, MINSITE, STRUC, PETPHYS, OUTCROP, ROCKS, GEOPHYS or BORES. It will not give any details about the information for these other layers.", "anzlicid": "ANZVI0803002230", "geonet_info_createdate": "2013-09-19", "revisiondate": "2013-09-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0a4074156f5c20350041b6f2f06e7629c5e220ca", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "d15d8ca5-cfe2-5354-81ff-988953165ca4", "publicationdate": "2021-02-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Plan Melbourne Neighbourhood Activity Centres Future", "alttitle": "PM_NACS_FUTURE_800M_BUFFER", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46144\", \"uuid\": \"d15d8ca5-cfe2-5354-81ff-988953165ca4\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-02-22\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Plan Melbourne Neighbourhood Activity Centres Future", "abstract": "Point feature layer showing future Metropolitan Neighbourhood Activity Centres 800m buffer.\n\nThis layer is indicative only and designed only for cartographic use. It should not be used for any detailed analysis work.", "anzlicid": "ANZVI0803008873", "geonet_info_createdate": "2021-02-22", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fae2f1400ebf1cc95fd8716f3ed093d41b4d66f4", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "2b547a94-6301-5ee4-8b5b-298a1bca28fa", "publicationdate": "2021-02-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Plan Melbourne Neighbourhood Activity Centres Existing", "alttitle": "PM_NACS_EXISTING", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46146\", \"uuid\": \"2b547a94-6301-5ee4-8b5b-298a1bca28fa\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-02-22\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Plan Melbourne Neighbourhood Activity Centres Existing", "abstract": "Point feature layer showing existing Metropolitan Neighbourhood Activity Centres, NACS\n\nThis layer is indicative only and designed only for cartographic use. It should not be used for any detailed analysis work.", "anzlicid": "ANZVI0803008870", "geonet_info_createdate": "2021-02-22", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "22546b9dbe62a1ccfc3e2d574ee9129f38459b3f", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "91f37d52-5ba4-576e-a250-22c654ac6e7e", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Structure 2 Reach Summary Table", "alttitle": "ISC2010_STRUCTURE2_R", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34791\", \"uuid\": \"91f37d52-5ba4-576e-a250-22c654ac6e7e\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Structure 2 Reach Summary Table", "abstract": "The ISC2010_STRUCTURE2_R table is the Statistical Summary table for the Structure2 Metric at the Reach level. Structure 2 represents vertical vegetation layering or structure and considers 6 height intervals: 1.5m to 5m, 5m to 10m, 10m to 15m, 15m to 20m, 20m to 25m and >25m. Structure 2 is assessed within the 40m riparian zone.\n\nThe ISC2010_STRUCTURE2_R table is designed to JOIN to the ISC2010_RIVER_CENTRELINES_R feature class.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005135", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8b6fccb1f7c061c7a67d7cff77f9e45b6cba3188", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "20dc489b-038a-5ff4-9611-da8c4f812f75", "publicationdate": "2021-02-25", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-10", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcVIew", "type": "dataset", "title": "Renewable Energy Storage", "alttitle": "RENEWABLE_ENERGY_STORAGE", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-11-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46151\", \"uuid\": \"20dc489b-038a-5ff4-9611-da8c4f812f75\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-02-24\", \"changeDate\": \"2022-03-10\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Renewable Energy Storage", "abstract": "Wind Farm cables for Victoria\n\nWind energy has the potential to provide a significant proportion of Victoria's growth in renewable energy generation over the next coming years. The Government supports the development of wind energy in appropriate locations.\n\nPlanning Scheme Amendment VC82, make it clear where in Victoria a wind energy facility may be considered. The planning reform guarantees the residents of rural and regional Victoria certainty and fairness in wind farm planning decisions and ensures that communities are given a say in major planning applications.\n\nThe linear features of cabling that connects Turbines to substation", "anzlicid": "ANZVI0803008874", "geonet_info_createdate": "2021-02-24", "revisiondate": "2022-03-10", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e2f978b36cd25fc41d99789b2d2dc47061ff43f9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "11cecb87-b93d-52df-a90b-895fd69486ee", "publicationdate": "2021-01-09", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Melbourne Airport Public Safety Zone ANEC", "alttitle": "AE19_MELBOURNE_PSZ_ANEC", "tempextentbegin": "2019-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46037\", \"uuid\": \"11cecb87-b93d-52df-a90b-895fd69486ee\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-08\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Melbourne Airport Public Safety Zone ANEC", "abstract": "Melbourne Airport Public Safety Zone ANEC", "anzlicid": "ANZVI0803008864", "geonet_info_createdate": "2021-01-08", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e6b8e065757d10afd801dca3a7b994c2f972137c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "16dc7a11-e283-50f0-aeb1-e7903bd5dc00", "publicationdate": "2021-01-09", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Melbourne Airport Public Safety Zone", "alttitle": "AE19_MELBOURNE_PSZ", "tempextentbegin": "2019-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46038\", \"uuid\": \"16dc7a11-e283-50f0-aeb1-e7903bd5dc00\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-08\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Melbourne Airport Public Safety Zone", "abstract": "Melbourne Airport Public Safety Zone", "anzlicid": "ANZVI0803008863", "geonet_info_createdate": "2021-01-08", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fc7630549a86619c11c48cb5c9deca3445dae28d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "0113d712-5317-5f72-9b86-e2fda8087610", "publicationdate": "2021-01-09", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "Melbourne Airport Australian Noise Exposure Forecast 20 2013", "alttitle": "AE_MELBOURNE_ANEF20_2013", "tempextentbegin": "2016-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46034\", \"uuid\": \"0113d712-5317-5f72-9b86-e2fda8087610\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-01-07\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Melbourne Airport Australian Noise Exposure Forecast 20 2013", "abstract": "Melbourne Airport Australian Noise Exposure Forecast 20 2013", "anzlicid": "ANZVI0803008857", "geonet_info_createdate": "2021-01-07", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b3616355763d2277f76f100d466184e46e5c612b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "82cfabe0-51b1-5503-9812-f0324da94b35", "publicationdate": "2018-07-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "MapInfo, ESRI Shape", "type": "dataset", "title": "Urban Development Program - Industrial Land 2017", "alttitle": "IND2017", "tempextentbegin": "2009-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2017-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"36825\", \"uuid\": \"82cfabe0-51b1-5503-9812-f0324da94b35\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-03-28\", \"changeDate\": \"2022-08-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Urban Development Program - Industrial Land 2017", "abstract": "Identifies all industrial land and the development status and size of each land parcel in hectare across metropolitan Melbourne.\nThis information identifies all industrial zoned land (Industrial 1, 2 and 3 as well as Commercial 2 Zone), and land of an industrial character and includes the Airport Business Parks, selected Special Use Zones, selected Comprehensive Development Zones and specific precincts within the Activity Centre Zones and Urban Growth Zones.\nEach land parcel is assessed as being either Unavailable (currently being used) or Supply (vacant).\n\nUrban Development Program (UDP).", "anzlicid": "ANZVI0803005903", "geonet_info_createdate": "2019-03-28", "revisiondate": "2022-08-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0b582426088b695bc9390c7a63df46817e11c4ff", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f5e391ad-6da8-557b-8c4c-15bc80d7dd99", "publishedforgroup": "12264;0", "geonet_info_changedate": "2018-02-20", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Supplied as a .zip file containing multiple shapefiles, png rasters, pdf descriptive reports and geodatabases.", "type": "dataset", "title": "Statewide Victorian Coastal Hazard Assessment 2017 - East Gippsland CMA", "alttitle": "VCHA2017_East_Gippsland_CMA", "tempextentbegin": "2017-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2017-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "oceans;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34683\", \"uuid\": \"f5e391ad-6da8-557b-8c4c-15bc80d7dd99\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-02-20\", \"changeDate\": \"2018-02-20\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Statewide Victorian Coastal Hazard Assessment 2017 - East Gippsland CMA", "abstract": "A second-pass state-wide assessment of erosion and inundation hazards resulting from future climate change scenarios to inform the Victorian Coastal Monitoring Program.", "anzlicid": "ANZVI0803005839", "geonet_info_createdate": "2018-02-20", "revisiondate": "2018-02-20", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0b338386eb400815f9926c8a9d1c8642ddfb9ef2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "4e748660-899e-57d4-8530-cec685a39f7c", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, MapInfo, Non digital - plotted maps", "type": "dataset", "title": "Geophysics (1:100,000), Geological Interpretation of Geophysical Features Arc", "alttitle": "GPGEOL100_ARC", "tempextentbegin": "1994-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34849\", \"uuid\": \"4e748660-899e-57d4-8530-cec685a39f7c\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-29\", \"changeDate\": \"2022-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geophysics (1:100,000), Geological Interpretation of Geophysical Features Arc", "abstract": "This dataset contains interpreted geological data, using combined interpretations of airborne magnetic, radiometric and gravity survey data, mapped at 1:100,000. \n\nAt scales larger than 1:120,000 the display is a combination of both 1:100,000 and 1:250,000 geophysical mapping. Recent 1:250,000 geophysical mapping has been of such quality and detail it has been used to supersede older coincident 1:100,000 mapping. This occurs in the following areas: St Arnaud 7524, Dunolly 7624, Charlton 7525, Wedderburn 7625 and part of Ararat 7423 are superseded by St Arnaud SJ54-4. Bendigo 7724, Heathcote 7824 and Nagambie 7924 are superseded by Bendigo SJ55-1. \n\nBalmoral 7223, Ararat 7423, Horsham SJ54-3 and St Arnaud SJ54-4 supersede Grampians 7323 where there is overlap.\n\nThis data has been collected by the Geological Survey of Victoria. This dataset is accompanied by other datasets representing sub-surface geological polygons, structural lines, miscellaneous lines and metamorphism.", "anzlicid": "ANZVI0803003422", "geonet_info_createdate": "2018-03-29", "revisiondate": "2022-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "242f7f9827d3f5677529c5b24d975c38b76b571c", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "12c1f030-815a-5c8b-a38c-2fb2a8c9fb05", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Hydrography Hierarchy Table", "alttitle": "HY_HIERARCHY", "tempextentbegin": "2023-01-24T00:08:56+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:56+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34856\", \"uuid\": \"12c1f030-815a-5c8b-a38c-2fb2a8c9fb05\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Hydrography Hierarchy Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003183", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7bf6721b789eceb6bb074e389d9c4b8b238a92c8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "6ef08545-b36b-5cd3-b78e-794781f27836", "publicationdate": "2023-01-13", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-12-07", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "Digital", "type": "dataset", "title": "Heritage Victoria Hermes Master for Radius Internal use only", "alttitle": "HERMES_RADIUS", "tempextentbegin": "2008-01-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:56+00:00", "maintenanceandupdatefrequency_text": "Daily", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46482\", \"uuid\": \"6ef08545-b36b-5cd3-b78e-794781f27836\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-06-25\", \"changeDate\": \"2021-12-07\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Heritage Victoria Hermes Master for Radius Internal use only", "abstract": "Heritage Victoria maintains a database (Hermes) of all places which are included in the Victorian Heritage Register, or the Heritage Inventory (archaeology), or the World Heritage List, or are being assessed for inclusion in any of these lists, or have been assessed and not included, or have come to Heritage Victoria's notice for any reason. This dataset describes the spatial aspects of all places with a Heritage Victoria Hermes record.\n\nNote: This version of HERMES (HERMES_RADIUS) is for the Radius application for internal use only. It contains the same data as HERMES with additional fields required by Heritage Team.", "anzlicid": "ANZVI0803008951", "geonet_info_createdate": "2021-06-25", "revisiondate": "2021-12-07", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2a037a045199db59c6982a4353b6e73621831585", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "14e39b75-403d-5681-9623-2240c1590ece", "publicationdate": "2019-12-03", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "MapInfo, ESRI Shape", "type": "dataset", "title": "Urban Development Program - Industrial Land 2018", "alttitle": "IND2018", "tempextentbegin": "2018-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34958\", \"uuid\": \"14e39b75-403d-5681-9623-2240c1590ece\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-10-22\", \"changeDate\": \"2022-08-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Urban Development Program - Industrial Land 2018", "abstract": "Identifies all industrial land and the development status and size of each land parcel in hectare across metropolitan Melbourne.\nThis information identifies all industrial zoned land (Industrial 1, 2 and 3 as well as Commercial 2 Zone), and land of an industrial character and includes the Airport Business Parks, selected Special Use Zones, selected Comprehensive Development Zones and specific precincts within the Activity Centre Zones and Urban Growth Zones.\nEach land parcel is assessed as being either Unavailable (currently being used) or Supply (vacant).\n\nUrban Development Program (UDP).", "anzlicid": "ANZVI0803008567", "geonet_info_createdate": "2019-10-22", "revisiondate": "2022-08-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fa5b023bed6d3d49e9fbcc5f9b2cfee391f3b1e5", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "6f493aa7-83d7-5529-a969-dbf9e6ef0a0c", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme zone UGZ - URBAN GROWTH ZONE", "alttitle": "UGZ", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:27+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46630\", \"uuid\": \"6f493aa7-83d7-5529-a969-dbf9e6ef0a0c\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-17\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme zone UGZ - URBAN GROWTH ZONE", "abstract": "This dataset contains polygon features for the individual zone class UGZ - URBAN GROWTH ZONE. If you require all zones in a single dataset use the Vicmap VMPLAN PLAN_ZONE dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009067", "geonet_info_createdate": "2021-07-17", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7f1ac86696aa25ee03713972ffda1d9dec607d8c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "bb1b1450-67d3-59e5-a359-20d618f74507", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme zone PDZ - PRIORITY DEVELOPMENT ZONE", "alttitle": "PDZ", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:29+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46637\", \"uuid\": \"bb1b1450-67d3-59e5-a359-20d618f74507\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-17\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme zone PDZ - PRIORITY DEVELOPMENT ZONE", "abstract": "This dataset contains polygon features for the individual zone class PDZ - PRIORITY DEVELOPMENT ZONE. If you require all zones in a single dataset use the Vicmap VMPLAN PLAN_ZONE dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009046", "geonet_info_createdate": "2021-07-17", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f938a628be429e3f5348167580d610443f7e65f8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "0254ee20-a159-5d97-a1a5-1f14091251a5", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme zone PUZ6 - PUBLIC USE ZONE - LOCAL GOVERNMENT", "alttitle": "PUZ6", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:30+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46640\", \"uuid\": \"0254ee20-a159-5d97-a1a5-1f14091251a5\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-17\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme zone PUZ6 - PUBLIC USE ZONE - LOCAL GOVERNMENT", "abstract": "This dataset contains polygon features for the individual zone class PUZ6 - PUBLIC USE ZONE - LOCAL GOVERNMENT. If you require all zones in a single dataset use the Vicmap VMPLAN PLAN_ZONE dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009053", "geonet_info_createdate": "2021-07-17", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "caa83454636c91f15471201c2af0cdf145c3f0d8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "f1cd4bb4-bea4-5779-9be7-99a89f71c61f", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme zone SUZ - SPECIAL USE ZONE", "alttitle": "SUZ", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:31+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46641\", \"uuid\": \"f1cd4bb4-bea4-5779-9be7-99a89f71c61f\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-17\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme zone SUZ - SPECIAL USE ZONE", "abstract": "This dataset contains polygon features for the individual zone class SUZ - SPECIAL USE ZONE. If you require all zones in a single dataset use the Vicmap VMPLAN PLAN_ZONE dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009063", "geonet_info_createdate": "2021-07-17", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c802682dfcc7e257929d75f819b4b82070fef27f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "b644c0f0-1206-5ea8-bc12-9543937814da", "publicationdate": "2019-06-29", "publishedforgroup": "12264;0", "geonet_info_changedate": "2021-11-11", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Spatial Vision Mapbook Index 1:150,000 Edition 6", "alttitle": "MAPBOOK_MAPINDEX_150_ED6", "tempextentbegin": "2018-11-26T13:00:00+00:00", "resowner": "Spatial Vision Pty Ltd", "tempextentend": "2018-11-26T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Biannually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34969\", \"uuid\": \"b644c0f0-1206-5ea8-bc12-9543937814da\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-05-20\", \"changeDate\": \"2021-11-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Spatial Vision Mapbook Index 1:150,000 Edition 6", "abstract": "This dataset is derived from the Mapbook directory and contains the map index for the 1:150 000 Wilsons Promontory maps.", "anzlicid": "ANZVI0803004606", "geonet_info_createdate": "2013-05-20", "revisiondate": "2021-11-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f85a72d5f716fe5d9cfc6a79475b0116e46de862", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "80c77416-46c8-51a8-b1f8-bf70a03850bf", "publicationdate": "2020-09-11", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-07-03", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Lite - Geographic Feature Polygon for Labelling - 1:250,000 to 1:5,000,000", "alttitle": "VMLITE_GEO_AREA_LABEL", "tempextentbegin": "2006-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2008-07-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34971\", \"uuid\": \"80c77416-46c8-51a8-b1f8-bf70a03850bf\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-07-03\", \"changeDate\": \"2020-07-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Lite - Geographic Feature Polygon for Labelling - 1:250,000 to 1:5,000,000", "abstract": "This layer is part of Vicmap Lite and contains stylised polygon features from which key geographic areas can be labelled. Vicmap Lite datasets are suited for use between scales of 1: 250,000 and 1 : 5 million. The polygons were screen digitised using BASIN100 as a rough guide. The level of attribute information, the number of features and the number of vertices has been simplified to suit the 1: 250,000 - 1 : 5 million scale range. The concept of a Scale Use Code has been introduced to help control the level of detail displayed.\n\nTHIS DATASET WAS LAST UPDATED IN AUGUST 2008", "anzlicid": "ANZVI0803003532", "geonet_info_createdate": "2020-07-03", "revisiondate": "2020-07-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ddca84b48a252e7619ea3a877e2c1a48265d0a71", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "dd889592-a256-5d63-9e7e-2a665e1415dc", "publicationdate": "2023-01-17", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-06-22", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Recreation Hut", "alttitle": "RECWEB_HUT", "tempextentbegin": "2013-07-17T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:32+00:00", "maintenanceandupdatefrequency_text": "Daily", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34972\", \"uuid\": \"dd889592-a256-5d63-9e7e-2a665e1415dc\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-16\", \"changeDate\": \"2022-06-22\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Recreation Hut", "abstract": "Recreation hut dataset describes huts within State forest. The recreation huts within State Forest have been captured and recorded with a Trimble Pro XR GPS and are actively promoted to the public and maintained by the Department of Environment, Land, Water and Planning.\n\n* recweb", "anzlicid": "ANZVI0803005217", "geonet_info_createdate": "2019-05-16", "revisiondate": "2022-06-22", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4c77f1f5dc1c3aeb0d7bccd4c7969dce794b1a8c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "8a6a8a0d-e894-515d-95a2-90f6c789bf3e", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme zone PUZ5 - PUBLIC USE ZONE - CEMETERY/CREMATORIUM", "alttitle": "PUZ5", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:24+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46621\", \"uuid\": \"8a6a8a0d-e894-515d-95a2-90f6c789bf3e\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-17\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme zone PUZ5 - PUBLIC USE ZONE - CEMETERY/CREMATORIUM", "abstract": "This dataset contains polygon features for the individual zone class PUZ5 - PUBLIC USE ZONE - CEMETERY/CREMATORIUM. If you require all zones in a single dataset use the Vicmap VMPLAN PLAN_ZONE dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009052", "geonet_info_createdate": "2021-07-17", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "728092c08f9ed99efbd10c3cbc3807e306cd2a4d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "efc7c1ee-aa00-5e67-9e9f-57643cf13c0d", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme zone RCZ - RURAL CONSERVATION ZONE", "alttitle": "RCZ", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:25+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46623\", \"uuid\": \"efc7c1ee-aa00-5e67-9e9f-57643cf13c0d\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-17\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme zone RCZ - RURAL CONSERVATION ZONE", "abstract": "This dataset contains polygon features for the individual zone class RCZ - RURAL CONSERVATION ZONE. If you require all zones in a single dataset use the Vicmap VMPLAN PLAN_ZONE dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009058", "geonet_info_createdate": "2021-07-17", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2773b0934cdab358a3d450f5b084e3c3795bf84d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "23331157-60c0-525f-81df-8a154c35f2b9", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-11-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Statistical extents for 1% AEP or 1 in 100 years floods until 2014", "alttitle": "EXTENT_100Y_ARI", "tempextentbegin": "1997-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34953\", \"uuid\": \"23331157-60c0-525f-81df-8a154c35f2b9\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-12-12\", \"changeDate\": \"2022-11-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Statistical extents for 1% AEP or 1 in 100 years floods until 2014", "abstract": "This layer contains information from multiple flood studies undertaken until 2014. This layer will not be updated.\nThe data is statistically derived using hydrological models depicting the 1 in 100 year ARI (or 1% AEP) scenario and historic flood extents. \nThis is Polygon data or a Shapefile.", "anzlicid": "ANZVI0803003630", "geonet_info_createdate": "2018-12-12", "revisiondate": "2022-11-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8606b5b3d348d9cf13e753de62e5c32b50c323df", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "87ba98ad-681a-5fa5-b753-414e4640add8", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme zone RAZ - RURAL ACTIVITY ZONE", "alttitle": "RAZ", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:27+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46628\", \"uuid\": \"87ba98ad-681a-5fa5-b753-414e4640add8\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-17\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme zone RAZ - RURAL ACTIVITY ZONE", "abstract": "This dataset contains polygon features for the individual zone class RAZ - RURAL ACTIVITY ZONE. If you require all zones in a single dataset use the Vicmap VMPLAN PLAN_ZONE dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009057", "geonet_info_createdate": "2021-07-17", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7fd82745759b97c6de95e3d074e18c7976017afc", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2861bbfb-4644-5ccf-aca1-b02b6bc2faf4", "publishedforgroup": "0;12264", "geonet_info_changedate": "2018-02-20", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Supplied as a .zip file containing multiple shapefiles, png rasters, pdf descriptive reports and geodatabases.", "type": "dataset", "title": "Statewide Victorian Coastal Hazard Assessment 2017 - Corangamite CMA", "alttitle": "VCHA2017_Corangamite_CMA", "tempextentbegin": "2017-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2017-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "oceans;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34926\", \"uuid\": \"2861bbfb-4644-5ccf-aca1-b02b6bc2faf4\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-02-20\", \"changeDate\": \"2018-02-20\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Statewide Victorian Coastal Hazard Assessment 2017 - Corangamite CMA", "abstract": "A second-pass state-wide assessment of erosion and inundation hazards resulting from future climate change scenarios to inform the Victorian Coastal Monitoring Program.", "anzlicid": "ANZVI0803005838", "geonet_info_createdate": "2018-02-20", "revisiondate": "2018-02-20", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fe81bd3e92400d2abb1af95572aaa861a073831f", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8733242e-0462-5a8d-93b9-bc3529805416", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Road Use Table", "alttitle": "TR_ROAD_USE_RT", "tempextentbegin": "2023-01-24T00:09:17+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:17+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46595\", \"uuid\": \"8733242e-0462-5a8d-93b9-bc3529805416\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-16\", \"changeDate\": \"2022-07-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Road Use Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803009018", "geonet_info_createdate": "2021-07-16", "revisiondate": "2022-07-14", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "34b008f3e75f2dcb7b755c7b33555521ede1a248", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9cab118a-d8d6-52de-b564-c9407fca960c", "publicationdate": "2022-02-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo, ArcView.", "type": "dataset", "title": "Energy Facilities", "alttitle": "ENERGY_FACILITIES", "tempextentbegin": "1995-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2021-07-04T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;utilities communication;economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46599\", \"uuid\": \"9cab118a-d8d6-52de-b564-c9407fca960c\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-16\", \"changeDate\": \"2021-07-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Energy Facilities", "abstract": "Energy Facilities Including Platforms, Power Stations, large consumers of energy etc.", "anzlicid": "ANZVI0803008896", "geonet_info_createdate": "2021-07-16", "revisiondate": "2021-07-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "61734d30e8829f672751fe894f5e373243609cbe", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "d04c9afc-3684-53d6-8d20-4c32b8ec084a", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme zone IN2Z - INDUSTRIAL 2 ZONE", "alttitle": "IN2Z", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:19+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46602\", \"uuid\": \"d04c9afc-3684-53d6-8d20-4c32b8ec084a\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-17\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme zone IN2Z - INDUSTRIAL 2 ZONE", "abstract": "This dataset contains polygon features for the individual zone class IN2Z - INDUSTRIAL 2 ZONE. If you require all zones in a single dataset use the Vicmap VMPLAN PLAN_ZONE dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009040", "geonet_info_createdate": "2021-07-17", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e5b1a3790b9b51f72d1a5a3ffcaa7539ef962a89", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "359796da-2caa-5c38-9837-9a67f920675f", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-06-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Transport - Road Infrastructure Point", "alttitle": "TR_ROAD_INFRASTRUCTURE", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:19+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34932\", \"uuid\": \"359796da-2caa-5c38-9837-9a67f920675f\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-21\", \"changeDate\": \"2021-06-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Transport - Road Infrastructure Point", "abstract": "This layer is part of Vicmap Transport and contains point features delineating road infrastructure features.\nIncludes; Bridges, Tunnels, Gates, Cattle Grids, Barrirers, Level Crossings, Roundabouts & Intersections.", "anzlicid": "ANZVI0803002444", "geonet_info_createdate": "2020-02-21", "revisiondate": "2021-06-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1520fb4d5225494fe17a1fe03b37616f1cdc8294", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "d4b190ab-f21c-5704-adf7-5adfb2fc3ef1", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme zone GWAZ - GREEN WEDGE A ZONE", "alttitle": "GWAZ", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:19+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46603\", \"uuid\": \"d4b190ab-f21c-5704-adf7-5adfb2fc3ef1\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-17\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme zone GWAZ - GREEN WEDGE A ZONE", "abstract": "This dataset contains polygon features for the individual zone class GWAZ - GREEN WEDGE A ZONE. If you require all zones in a single dataset use the Vicmap VMPLAN PLAN_ZONE dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009037", "geonet_info_createdate": "2021-07-17", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e09567c954cf4d391ae1cd93293fe13453c74db2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "acdef68a-f49b-5987-9db8-652920788f69", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme zone LDRZ - LOW DENSITY RESIDENTIAL ZONE", "alttitle": "LDRZ", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:20+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46604\", \"uuid\": \"acdef68a-f49b-5987-9db8-652920788f69\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-17\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme zone LDRZ - LOW DENSITY RESIDENTIAL ZONE", "abstract": "This dataset contains polygon features for the individual zone class LDRZ - LOW DENSITY RESIDENTIAL ZONE. If you require all zones in a single dataset use the Vicmap VMPLAN PLAN_ZONE dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009042", "geonet_info_createdate": "2021-07-17", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8945d94068fb5bd6e9ac38f732c9bb19ca227ebd", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c3b413c3-2175-569d-a30d-e7cc3fe9c3f3", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Road Vehicular Access Table", "alttitle": "TR_VEHICULAR_ACCESS", "tempextentbegin": "2023-01-24T00:09:16+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:16+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46591\", \"uuid\": \"c3b413c3-2175-569d-a30d-e7cc3fe9c3f3\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-16\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Road Vehicular Access Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803009017", "geonet_info_createdate": "2021-07-16", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8e24a05bf94f24546d67a26456c4df94252cc5f9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "75d73aec-e4e6-5e9d-8237-319cb2ca839a", "publicationdate": "2022-11-09", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "type": "dataset", "title": "EPA Victoria Environmental Audit Reports - Location Polygons", "alttitle": "ENVIRO_AUDIT_LOC_POLYGON", "tempextentbegin": "1900-12-31T14:00:00+00:00", "resowner": "Environment Protection Authority Victoria", "tempextentend": "2020-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Daily", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34923\", \"uuid\": \"75d73aec-e4e6-5e9d-8237-319cb2ca839a\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-08-15\", \"changeDate\": \"2020-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "EPA Victoria Environmental Audit Reports - Location Polygons", "abstract": "EPA maintains a searchable list of properties issued with a certificate or statement of environmental audit in accordance with sections 53V and 53X of the Environment Protection Act. A certificate of environmental audit is issued for a property where, following an audit, an environmental auditor believes the environmental condition of the land is suitable for any beneficial use.\n\nEPA Environmental Audits most commonly take place when land is proposed for new use and is potentially contaminated, or if it is already covered by an Environmental Audit Overlay.\n\nThis dataset mirrors the audit data available on EPA's website interaction portal, but may not be up to date due to data transfer processes. For the most up to date data, go to EPA's website interaction portal.", "anzlicid": "ANZVI0803005885", "geonet_info_createdate": "2019-08-15", "revisiondate": "2020-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7ce9e54e738cfe62ceba9fd6853b7e9b1d06b9dd", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0b25ae83-0b69-5e90-96b1-db998ea2974e", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Road Construction Material Table", "alttitle": "TR_ROAD_CONSTRUCTION_MATERIAL", "tempextentbegin": "2023-01-24T00:09:16+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:16+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46592\", \"uuid\": \"0b25ae83-0b69-5e90-96b1-db998ea2974e\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-16\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Road Construction Material Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803009023", "geonet_info_createdate": "2021-07-16", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "37f313c168231e64665c47e41afc73ed4c7be953", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "fe9d2fda-c958-5765-882c-064e5c3cd9f8", "publicationdate": "2023-01-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-20", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Transport - Road Use Table", "alttitle": "TR_ROAD_USE", "tempextentbegin": "2021-07-14T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:57+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46500\", \"uuid\": \"fe9d2fda-c958-5765-882c-064e5c3cd9f8\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-02\", \"changeDate\": \"2022-10-20\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Transport - Road Use Table", "abstract": "This layer is part of Vicmap Transport.", "anzlicid": "ANZVI0803008954", "geonet_info_createdate": "2021-07-02", "revisiondate": "2022-10-20", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "750995ca75534dbcaa54e3cdd80c51fd06adbdee", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "febae4e4-0f56-59ce-a890-158b668a5d4d", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-02-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, MapInfo, Non digital - plotted maps", "type": "dataset", "title": "SubSurface Geophysics (1:250,000), at level 2", "alttitle": "GPSGEOL2100_POLYGON", "tempextentbegin": "1994-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34865\", \"uuid\": \"febae4e4-0f56-59ce-a890-158b668a5d4d\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-09\", \"changeDate\": \"2016-02-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "SubSurface Geophysics (1:250,000), at level 2", "abstract": "This dataset contains interpreted geological data, using combined interpretations of airborne magnetic, radiometric and gravity survey data, mapped at 1:100,000 of deeply buried geological units. In this layer units, along with their associated linework, have been classified as 'deep' since they reside beneath other geophysically interpreted units which are usually themselves below the mapped surface geology.\n\nAt scales larger than 1:120,000 the display is a combination of both 1:100,000 and 1:250,000 geophysical mapping. Recent 1:250,000 geophysical mapping has been of such quality and detail it has been used to supersede older coincident 1:100,000 mapping. This occurs in the following areas: St Arnaud 7524, Dunolly 7624, Charlton 7525, Wedderburn 7625 and part of Ararat 7423 are superseded by St Arnaud SJ54-4. Bendigo 7724, Heathcote 7824 and Nagambie 7924 are superseded by Bendigo SJ55-1. \n\nBalmoral 7223, Ararat 7423, Horsham SJ54-3 and St Arnaud SJ54-4 supersede Grampians 7323 where there is overlap.\n\nThis data has been collected by the Geological Survey of Victoria. This dataset is accompanied by other datasets representing geological polygons and boundaries, structural lines, miscellaneous lines and metamorphism.", "anzlicid": "ANZVI0803003427", "geonet_info_createdate": "2016-02-09", "revisiondate": "2016-02-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a56f6267fb8a90e0ec07262b86b4c946fcb25a6d", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "efacefaf-7746-5325-9a4d-46fd4ea23217", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Hydrography Reef Type Table", "alttitle": "HY_REEF_TYPE", "tempextentbegin": "2023-01-24T00:08:59+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:08:59+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34866\", \"uuid\": \"efacefaf-7746-5325-9a4d-46fd4ea23217\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Hydrography Reef Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003189", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "cdb0adf76f6acb8b7200ff4a4f8d889bd7a44ae3", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "a075abfb-ca3f-5b66-a3c8-32a1ffe687cf", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2011-07-27", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "Victorian Alpine Huts Heritage Survey 2004-05", "alttitle": "EG_ALPINE_HUT_SURVEY", "tempextentbegin": "2003-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2005-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34867\", \"uuid\": \"a075abfb-ca3f-5b66-a3c8-32a1ffe687cf\", \"schema\": \"iso19115-3\", \"createDate\": \"2011-07-27\", \"changeDate\": \"2011-07-27\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "limitedDistribution", "defaulttitle": "Victorian Alpine Huts Heritage Survey 2004-05", "abstract": "In 2003 the alpine fires burnt a significant area of State Forest and Alpine National Park, and within these areas a number of huts. A heritage survey of huts in and ajoining the fire affected area was required to assess the conditions of the huts, their values and management requirements. Graeme Butler and associates were commissioned in 2004/05 to conduct this survey.\n\nThe locations of the huts surveyed as contained in the final report (Victorian Alpine Huts Heritage Survey 2004-2005 by Graeme Butler and Associates 2005) were converted into a GIS layer.", "anzlicid": "ANZVI0803004458", "geonet_info_createdate": "2011-07-27", "revisiondate": "2011-07-27", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e905d65695b71144257aae2b671241c19710e18b", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "df4f6c09-6ec3-5b87-a2eb-5167220173cb", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Administrative Parish and Township with Alternate Names Table", "alttitle": "PARISH_TOWN", "tempextentbegin": "2023-01-24T00:09:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34868\", \"uuid\": \"df4f6c09-6ec3-5b87-a2eb-5167220173cb\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Administrative Parish and Township with Alternate Names Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products. PARISH and TOWNSHIP is a list of alternate Parish & Township names for Victoria.", "anzlicid": "ANZVI0803003141", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "12aaa5a884a56af788089ef16e63286abcdfb426", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2506df51-c518-5a09-8c19-903b478feb2a", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-11-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Running distance of streams at 2009", "alttitle": "RUNNING_DISTANCE", "tempextentbegin": "1997-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2009-01-04T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34869\", \"uuid\": \"2506df51-c518-5a09-8c19-903b478feb2a\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-12\", \"changeDate\": \"2022-11-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Running distance of streams at 2009", "abstract": "This layer contains points showing incrementing kilometre marks of a stream from the mouth, relevant to flood mapping projects as at 2009. The interval is every 1 km.\n\nNote:\n- Running kms are measured from the downstream end of the stream where the stream terminates at an outflow or joins a major stream.\n- Generally the running kms will be displayed as tick marks perpendicular to the stream at a local level, and annotated with the running kms value.\n- The method for calculation of the running kilometers is by using the ArcInfo route functionality.", "anzlicid": "ANZVI0803002085", "geonet_info_createdate": "2013-09-12", "revisiondate": "2022-11-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7ccad8af4be97439426a539c431ee796a40508e8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "0c36aaf7-4381-5a3a-bf54-bfec7b765bcb", "publicationdate": "2020-05-28", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-23", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "ArcVIew", "type": "dataset", "title": "Wind Farm Turbines for Victoria", "alttitle": "WIND_FARM_TURBINES", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-11-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34870\", \"uuid\": \"0c36aaf7-4381-5a3a-bf54-bfec7b765bcb\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-11-21\", \"changeDate\": \"2021-07-23\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Wind Farm Turbines for Victoria", "abstract": "Wind Farms Turbine Locations for Victoria \n\nWind energy has the potential to provide a significant proportion of Victoria's growth in renewable energy generation over the next coming years. The Government supports the development of wind energy in appropriate locations.\n\nPlanning Scheme Amendment VC82, make it clear where in Victoria a wind energy facility may be considered. The planning reform guarantees the residents of rural and regional Victoria certainty and fairness in wind farm planning decisions and ensures that communities are given a say in major planning applications.\n\nThe point dataset that refers to the locations of Turbines", "anzlicid": "ANZVI0803005961", "geonet_info_createdate": "2018-11-21", "revisiondate": "2021-07-23", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b33575059ce494ebf4bd12329a9a135cd247aa9a", "fields": {"available_formats": "ECW,GeoTIFF,JPEG,JPEG 2000,TIFF", "resclassification": "unclassified", "uuid": "72952c66-9fc8-5d9f-b03f-f6f9f7e62d58", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL geotiff", "type": "dataset", "title": "Soil Grids of Victorian - Soil pH (CaCl2)", "alttitle": "SOIL_pHcacl2", "tempextentbegin": "1957-12-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2016-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34873\", \"uuid\": \"72952c66-9fc8-5d9f-b03f-f6f9f7e62d58\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-14\", \"changeDate\": \"2021-07-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "unclassified", "defaulttitle": "Soil Grids of Victorian - Soil pH (CaCl2)", "abstract": "A set of Digital Soil Maps (mean, 5th and 95th percentile prediction values) of soil pH (of 1:5 soil/0.01M calcium chloride extract) across Victoria in geotiff format.\n\nGrids of key soil properties have been produced for Victoria. These grids, in raster format, provide prediction and confidence interval values for key soil properties at a 90 m grid resolution for six set depths; 0 to 5 cm, 5 to 15 cm, 15 to 30 cm, 30 to 60 cm, 60 to 100 cm and 100 to 200 cm, across Victoria.\n\nThe grids have been designed to meet the specifications created by GlobalSoilMap (www.globalsoilmap.net) to develop and deliver detailed soil information in a consistent form.\n\nThe grids are a spatial interpolation of key soil properties to support modelling and decision making in resource management, agricultural production, land use policy and planning, and in further research such as ecosystem modelling.\n\nThe methodology used to develop the Soil Grids of Victoria has been based on that refined by the Australian Soil and Landscape Grid. Data and knowledge embedded into existing soil related datasets, e.g. soil profile and land mapping collections, have been key inputs. \n\nWhilst the new maps show an immense amount of fine scale detail, and are our best spatially continuous and exhaustive estimates of soil attributes across all of Victoria, they are most appropriately used for assessments of regional to state-wide trends of soil properties and their relationship with their environment and pedogenesis. Care should be taken when using the grids for local assessments and it is recommended that the confidence intervals are included at this scale.", "anzlicid": "ANZVI0803005795", "geonet_info_createdate": "2019-05-14", "revisiondate": "2021-07-14", "spatialrepresentationtype_text": "Grid"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5bb429cfa01c7f9c6bb698dd94af1ed3d0c08aaf", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3c0159c7-9c89-5ff8-867b-e970f2fceac9", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Fire Severity Classes (Landsat) for Alpine fires January/February 2003.", "alttitle": "FIRE_SEV03", "tempextentbegin": "2023-01-24T00:09:03+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:03+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34879\", \"uuid\": \"3c0159c7-9c89-5ff8-867b-e970f2fceac9\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-10\", \"changeDate\": \"2022-02-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Fire Severity Classes (Landsat) for Alpine fires January/February 2003.", "abstract": "The Victorian Alpine Fires 2003 were ignited on 8th January 2003 by a series of lightning strikes across north-eastern Victoria. This layer depicts fire severity, derived from Landsat imagery, across the extent of the fires to provide a reliable strategic management dataset to interpret fire effects.", "anzlicid": "ANZVI0803002724", "geonet_info_createdate": "2020-02-10", "revisiondate": "2022-02-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "710bded670cf37805f258883f93c3625343e33cf", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "7fdb1898-97c8-5d51-b299-0376b4791c25", "publicationdate": "2023-01-20", "publishedforgroup": "12264;0", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:60,000 Edition 47", "alttitle": "MELWAY_MAPINDEX_60_ED47", "tempextentbegin": "2019-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2019-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34883\", \"uuid\": \"7fdb1898-97c8-5d51-b299-0376b4791c25\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-10-04\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:60,000 Edition 47", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:60 000 Phillip Island maps.", "anzlicid": "ANZVI0803004595", "geonet_info_createdate": "2018-10-04", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e2ae62aa0c31bc82d5da88d1eb0b8892b4c7d0a1", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1eea9bdf-77b7-583e-9047-715076baa3a4", "publicationdate": "2018-12-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2018-11-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Planned Burns 2018/19 - 2020/21", "alttitle": "BURNPLAN19", "tempextentbegin": "2018-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34898\", \"uuid\": \"1eea9bdf-77b7-583e-9047-715076baa3a4\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-11-19\", \"changeDate\": \"2018-11-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Planned Burns 2018/19 - 2020/21", "abstract": "Last updated: November 2018\n\nThis dataset represents the spatial extent of prescribed burns planned for ignition and associated mechanical and vegetation works on Public Land in Victoria. This data is prepared annually for prescribed burns planned for the immediate three-year period. This dataset is now the joint fuel management plan and now includes the CFA burns as well as VicForest coupe burns.", "anzlicid": "ANZVI0803005957", "geonet_info_createdate": "2018-11-19", "revisiondate": "2018-11-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "638c0879e0177622a71e05bd1e1eaefcdd7f1fdd", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "fe95603d-2a5b-51ac-97e2-8de525e547a8", "publicationdate": "2019-10-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-10-03", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "Feature Class", "type": "dataset", "title": "2010 Index of Stream Condition Instream Woody Habitat Score", "alttitle": "ISC2010_IWH_SCORE", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2013-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34903\", \"uuid\": \"fe95603d-2a5b-51ac-97e2-8de525e547a8\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-10-03\", \"changeDate\": \"2019-10-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "2010 Index of Stream Condition Instream Woody Habitat Score", "abstract": "The ISC2010_IWH_SCORE dataset represents the 2010 Index of Stream Condition (ISC) modelling of Instream Woody Habitat (IWH) and its change since natural condition.\nIWH densities were mapped in ~ 38,000 river reaches across Victoria, equalling ~ 27,700 km. Field assessments of natural IWH densities were undertaken in \u00bfpristine\u00bf river reaches using hand-held GPS and underwater sonar. This information was used in a predictive modelling approach to determine natural IWH densities in rivers across Victoria. Current densities of IWH across Victoria were then calculated using a combination of high resolution aerial photographs, field assessments and measures of riparian overhang. A simple comparison of the predicted natural IWH densities and the current IWH densities enabled researchers to assess the condition score of IWH densities in rivers throughout Victoria.\nFurther information available at:\nhttps://www.ari.vic.gov.au/research/rivers-and-estuaries/victorian-instream-habitat-assessment\nhttps://www.water.vic.gov.au/waterways-and-catchments/rivers-estuaries-and-waterways/monitoring", "anzlicid": "ANZVI0803008554", "geonet_info_createdate": "2019-10-03", "revisiondate": "2019-10-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b787b01db52adfb53e2b273dfc5b44bc5b4da8c0", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "bc5ed10d-bcdd-56cc-a8bc-1a0d4629a533", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay ESO - ENVIRONMENTAL SIGNIFICANCE OVERLAY", "alttitle": "ESO", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:37+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46667\", \"uuid\": \"bc5ed10d-bcdd-56cc-a8bc-1a0d4629a533\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-20\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay ESO - ENVIRONMENTAL SIGNIFICANCE OVERLAY", "abstract": "This dataset contains polygon features for the individual overlay class ESO - ENVIRONMENTAL SIGNIFICANCE OVERLAY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009077", "geonet_info_createdate": "2021-07-20", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "785859b19f094a1fe57dec4db0e3bc0fe0c3c114", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9797cd60-9454-59b9-be3c-462efc75be4b", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay SLO - SIGNIFICANT LANDSCAPE OVERLAY", "alttitle": "SLO", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:38+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46670\", \"uuid\": \"9797cd60-9454-59b9-be3c-462efc75be4b\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-20\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay SLO - SIGNIFICANT LANDSCAPE OVERLAY", "abstract": "This dataset contains polygon features for the individual overlay class SLO - SIGNIFICANT LANDSCAPE OVERLAY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009092", "geonet_info_createdate": "2021-07-20", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c5957e9172199dca04bb7721ef14d5c21d86d448", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "c554668f-ec90-58fd-a6c2-dd6bbf146e58", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay RO - RESTRUCTURE OVERLAY", "alttitle": "RO", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:40+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46677\", \"uuid\": \"c554668f-ec90-58fd-a6c2-dd6bbf146e58\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-20\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay RO - RESTRUCTURE OVERLAY", "abstract": "This dataset contains polygon features for the individual overlay class RO - RESTRUCTURE OVERLAY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009088", "geonet_info_createdate": "2021-07-20", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f677fae23bb71a87cf3e6207d715f4afb855e881", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "c940e219-7e81-5ba8-8cf2-2c9ccc0fa04d", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay PSB - PROTECTED SETTLEMENT BOUNDARY", "alttitle": "PSB", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:40+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46680\", \"uuid\": \"c940e219-7e81-5ba8-8cf2-2c9ccc0fa04d\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-21\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay PSB - PROTECTED SETTLEMENT BOUNDARY", "abstract": "This dataset contains polygon features for the individual overlay class PSB - PROTECTED SETTLEMENT BOUNDARY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009099", "geonet_info_createdate": "2021-07-21", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d405be507a9d3c9fb57e1953379c979199a9d062", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "024e7667-da5b-5b86-a334-6bb31f0cd1ef", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-02-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Hydro - Water Poygon Fuzzy", "alttitle": "HY_WATER_AREA_FUZZY", "tempextentbegin": "2019-11-26T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:41+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35004\", \"uuid\": \"024e7667-da5b-5b86-a334-6bb31f0cd1ef\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-21\", \"changeDate\": \"2020-02-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Hydro - Water Poygon Fuzzy", "abstract": "This table will hold polygons depicting indicative extents of the area of the hydro feature. Each of these features has some type of non specific but best derived boundary. These geographic hydro areas depict features such as bays, beach, bend, entrance, inlet, passage, reach and seas. The polygons contain intelligent information including name, feature type and a Scale Use Code to enable labelling which is both multi scale and non scale dependent.", "anzlicid": "ANZVI0803008626", "geonet_info_createdate": "2020-02-21", "revisiondate": "2020-02-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4c5278956b7c9dab1625f774da820a5e06291358", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "54a97bd6-e5bd-5b95-8c81-7ed87f0b8773", "publicationdate": "2018-02-01", "publishedforgroup": "12264;0", "geonet_info_changedate": "2021-10-12", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Forest Management Boundaries", "alttitle": "FORMB100_BLOCK", "tempextentbegin": "2023-01-24T00:09:42+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:42+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35005\", \"uuid\": \"54a97bd6-e5bd-5b95-8c81-7ed87f0b8773\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-08\", \"changeDate\": \"2021-10-12\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Forest Management Boundaries", "abstract": "Polygons delineating Forest Management Blocks. The layer also contains aggregations of forest management blocks representing other administrative boundaries such as Forest Districts, Work Centres, Forest Management Areas (FMAs), VicForests Adiminstrative areas and an approximation to RFAs based on blocks. This is implemented via the use of Arc/Info region attribute tables.", "anzlicid": "ANZVI0803005587", "geonet_info_createdate": "2017-03-08", "revisiondate": "2021-10-12", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e4b2440ff6df9277efdd01d767f08df82dd7c4bc", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0c139db2-b375-535e-84be-e0e4588e94f9", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Infrastructure Voltage Table", "alttitle": "IN_VOLTAGE", "tempextentbegin": "2023-01-24T00:09:43+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:43+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46702\", \"uuid\": \"0c139db2-b375-535e-84be-e0e4588e94f9\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-27\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Infrastructure Voltage Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803009108", "geonet_info_createdate": "2021-07-27", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9adbd900eba5ac91e29612de0c2fb3b5e82ea689", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "18f0d03c-2f92-58e0-8029-ba6aea63f44c", "publicationdate": "2022-07-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-28", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "shapefile ArcSDE", "type": "dataset", "title": "Urban Water Corporation Boundaries", "alttitle": "URBAN_WATER_CORP", "tempextentbegin": "2007-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35011\", \"uuid\": \"18f0d03c-2f92-58e0-8029-ba6aea63f44c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-01-07\", \"changeDate\": \"2022-07-28\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Urban Water Corporation Boundaries", "abstract": "Boundaries defining the approximate jurisdiction of the Urban Water Corporations.", "anzlicid": "ANZVI0803005816", "geonet_info_createdate": "2019-01-07", "revisiondate": "2022-07-28", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2faf8ae35c3b01ce22cc317c55164019e3270e89", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "16e89cd3-7277-59b5-ad38-4998108d1afa", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay PO - PARKING OVERLAY", "alttitle": "PO", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:34+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46656\", \"uuid\": \"16e89cd3-7277-59b5-ad38-4998108d1afa\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-20\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay PO - PARKING OVERLAY", "abstract": "This dataset contains polygon features for the individual overlay class PO - PARKING OVERLAY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009087", "geonet_info_createdate": "2021-07-20", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "08356e37c35b79b7a6586496b991792819f35db4", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "5fa9c81f-700f-5d70-a8da-bdf1f34787ee", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay DPO - DEVELOPMENT PLAN OVERLAY", "alttitle": "DPO", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:35+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46660\", \"uuid\": \"5fa9c81f-700f-5d70-a8da-bdf1f34787ee\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-20\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay DPO - DEVELOPMENT PLAN OVERLAY", "abstract": "This dataset contains polygon features for the individual overlay class DPO - DEVELOPMENT PLAN OVERLAY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009074", "geonet_info_createdate": "2021-07-20", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "864bb52262a1dfc403ca64c0927351012a8e07a6", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "696ce85d-5f55-5ed1-a23e-f4aa4e643fca", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay SRO - STATE RESOURCE OVERLAY", "alttitle": "SRO", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:35+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46661\", \"uuid\": \"696ce85d-5f55-5ed1-a23e-f4aa4e643fca\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-20\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay SRO - STATE RESOURCE OVERLAY", "abstract": "This dataset contains polygon features for the individual overlay class SRO - STATE RESOURCE OVERLAY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009094", "geonet_info_createdate": "2021-07-20", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4c12a1df470fe18498d2dd2a73a306a35f96eec8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "6af538d2-a809-5a16-b184-117db6d1c8c0", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay RXO - ROAD CLOSURE OVERLAY", "alttitle": "RXO", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:35+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46662\", \"uuid\": \"6af538d2-a809-5a16-b184-117db6d1c8c0\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-20\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay RXO - ROAD CLOSURE OVERLAY", "abstract": "This dataset contains polygon features for the individual overlay class RXO - ROAD CLOSURE OVERLAY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009089", "geonet_info_createdate": "2021-07-20", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "225ba0618c84f4ef2c22b9c3c632303f9c276389", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6ff93564-63b5-56bf-a8d4-b32ffc28741e", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-04-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - all major formats available", "type": "dataset", "title": "PLM25 Overlays including Reference Areas, Heritage Rivers, Wilderness Zones, Remote & Natural Areas and Natural Catchment Areas", "alttitle": "PLM25_OVERLAYS", "tempextentbegin": "2008-08-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-10-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"34985\", \"uuid\": \"6ff93564-63b5-56bf-a8d4-b32ffc28741e\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-01-11\", \"changeDate\": \"2022-04-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "PLM25 Overlays including Reference Areas, Heritage Rivers, Wilderness Zones, Remote & Natural Areas and Natural Catchment Areas", "abstract": "This dataset was created in conjunction with PLM25, to represent the management overlays. The attributes are based on the PLM25 structure. \nThe overlays have been mapped at 1:25 000, using VicMap topographic data to create more accurate and identifiable boundaries.\n\nPLM25_OVERLAYS is located under the CROWNLAND schema. It has been created in conjunction with PLM25 to ensure the overlays match the PLM25 land management categories.\n\nPLEASE NOTE: This dataset now replaces the PLM100 overlays.\n\nPLM25_OVERLAYS have been created by loading Reference areas, wilderness zones, heritage rivers, remote and natural areas and natural catchment areas into one dataset. They are also available as separate datasets.\n\nThis dataset is a representation of the certified plans - the gazettal and certified plans are the official boundaries.\n\nCurrently the creation process is not automated or synchronised with PLM25 updates.\nFor more information please contact the Information Services Division.", "anzlicid": "ANZVI0803004650", "geonet_info_createdate": "2017-01-11", "revisiondate": "2022-04-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7434c8b58526aa5de66ee0060c206f1fca385762", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "b940814e-eea5-5ab1-bd73-f737466655f0", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay SMO - SALINITY MANAGEMENT OVERLAY", "alttitle": "SMO", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:36+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46665\", \"uuid\": \"b940814e-eea5-5ab1-bd73-f737466655f0\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-20\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay SMO - SALINITY MANAGEMENT OVERLAY", "abstract": "This dataset contains polygon features for the individual overlay class SMO - SALINITY MANAGEMENT OVERLAY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009093", "geonet_info_createdate": "2021-07-20", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "24f36bd40e288a8b170b7588b45d097f7eb05725", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "83d8f4e8-cc42-5135-8ea4-148b36bc49ea", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-07-03", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Lite - Place (Built Up Area) Polygon - 1:250,000 to 1:5,000,000", "alttitle": "VMLITE_BUILT_UP_AREA", "tempextentbegin": "2006-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2017-04-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35045\", \"uuid\": \"83d8f4e8-cc42-5135-8ea4-148b36bc49ea\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-07-03\", \"changeDate\": \"2020-07-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Lite - Place (Built Up Area) Polygon - 1:250,000 to 1:5,000,000", "abstract": "This layer is part of Vicmap Lite and contains polygon features delineating built up areas. Vicmap Lite datasets are suited for use between scales of 1: 250,000 and 1 : 5 million. The polygons were sourced from Vicmap Features. The level of attribute information, the number of features and the number of vertices has been simplified to suit the 1: 250,000 - 1 : 5 million scale range. The concept of a Scale Use Code has been introduced to help control the level of detail displayed.\n\nTHIS DATASET WAS LAST UPDATED IN MAY 2017", "anzlicid": "ANZVI0803003518", "geonet_info_createdate": "2020-07-03", "revisiondate": "2020-07-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "048a131726d4d77c0aed9d24543d07a5834861d6", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "74cb699c-164d-5f78-a2d6-516cb6ecd7cd", "publicationdate": "2023-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Current Mining Licences and Leases", "alttitle": "MIN", "tempextentbegin": "1989-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:09:54+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35046\", \"uuid\": \"74cb699c-164d-5f78-a2d6-516cb6ecd7cd\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Current Mining Licences and Leases", "abstract": "Regions showing the extent of Mining Licences currently lodged with Earth Resources Regulations.\nThe boundaries are derived from a combination of entering graticular boundaries (exact AMG co-ordinates) and digitizing along areas of land status (Earth Resources version of landmmt100) which are unable to be mined or explored. Refer to the Mineral Resources (Sustainable Development) Act (MRSDA) 1990 for more detail. (MIN is included in ML)\n\nNOTE: For GeoVic, \"Operating Gold Mines\" are a subset of this dataset where during the current financial year the tenement recorded production in excess of 100 kg Au, and/or are currently at an advanced stage of resource development with a target production rate of at least 100kg Au per year.", "anzlicid": "ANZVI0803002195", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "76069e49d1d1e9022bf6f6dd2337fd823bb25610", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "b53b571b-311b-5b82-968f-25dfa2a75a26", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:25,000 Edition 46", "alttitle": "MELWAY_MAPINDEX_25_ED46", "tempextentbegin": "2018-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2018-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46763\", \"uuid\": \"b53b571b-311b-5b82-968f-25dfa2a75a26\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:25,000 Edition 46", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:25 000 Phillip Island maps.", "anzlicid": "ANZVI0803009164", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "cf438d987b2d108b13177699c981152134b3b243", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "0a65ec8d-67d0-54e1-8812-9c78be834973", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:25,000 Edition 45", "alttitle": "MELWAY_MAPINDEX_25_ED45", "tempextentbegin": "2017-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2017-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46770\", \"uuid\": \"0a65ec8d-67d0-54e1-8812-9c78be834973\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:25,000 Edition 45", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:25 000 Phillip Island maps.", "anzlicid": "ANZVI0803009165", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b3736f6c8d8b0d4d0fb765e84c35abc6b9b2644f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9e086bf1-2076-5a88-a5e0-676b0ab6d304", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 46", "alttitle": "MELWAY_MAPINDEX_10_ED46", "tempextentbegin": "2018-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2018-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46774\", \"uuid\": \"9e086bf1-2076-5a88-a5e0-676b0ab6d304\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 46", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:10 000 inner urban maps.", "anzlicid": "ANZVI0803009140", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2347673c3188ff02dbd1c338dfd08bd22829f38b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "2b5dacfe-f2ee-5df9-9eaf-d2c91c8024a9", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:20,000 Edition 46", "alttitle": "MELWAY_MAPINDEX_20_ED46", "tempextentbegin": "2018-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2018-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46777\", \"uuid\": \"2b5dacfe-f2ee-5df9-9eaf-d2c91c8024a9\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:20,000 Edition 46", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:20 000 Greater Melbourne maps.", "anzlicid": "ANZVI0803009156", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a8855837d80bfc9c2835dfb0c17b8cec09ecfeae", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "054a33b1-9d39-5daf-8efd-75a93ff04a21", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "product", "title": "Geophysical Interpretations - Earth Resources Spatial Data Collection for the Datamart.", "alttitle": "DM_MIN_GEOP_INTERP", "tempextentbegin": "1998-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:09:59+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35059\", \"uuid\": \"054a33b1-9d39-5daf-8efd-75a93ff04a21\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geophysical Interpretations - Earth Resources Spatial Data Collection for the Datamart.", "abstract": "Polygons and lines of geophysical interpretations. Specifically at 1:1,000,000, 1:500,000, 1:250,000 & 1:100,000 scales.\nCollected for Earth Resources within DSDBI", "anzlicid": "ANZVI0803003430", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e548f2c9d22b95ca0fa97e68ebfdcb6c2e79b575", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "90b50843-ea46-5ce5-b3df-4d52bcf7563f", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:25,000 Edition 39", "alttitle": "MELWAY_MAPINDEX_25_ED39", "tempextentbegin": "2011-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2011-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46779\", \"uuid\": \"90b50843-ea46-5ce5-b3df-4d52bcf7563f\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:25,000 Edition 39", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:25 000 Phillip Island maps.", "anzlicid": "ANZVI0803009171", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c421275810e9e1211a813d5341c8184f784d3ccf", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "ac04e9ac-b95b-5eb6-93a6-68f2b1c98121", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 40", "alttitle": "MELWAY_MAPINDEX_10_ED40", "tempextentbegin": "2012-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2012-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46780\", \"uuid\": \"ac04e9ac-b95b-5eb6-93a6-68f2b1c98121\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 40", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:10 000 inner urban maps.", "anzlicid": "ANZVI0803009146", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e13ad4702135dcd3d7fe00e2673b0ed8d7c7c585", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "67ea9c0a-4e92-5507-aee9-460dc66dca50", "publicationdate": "2022-05-19", "publishedforgroup": "12264;0", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - State Assembly Polygon 2001", "alttitle": "STATE_ASSEMBLY_2001", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Victorian Electoral Commission", "tempextentend": "2023-01-24T00:10:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35063\", \"uuid\": \"67ea9c0a-4e92-5507-aee9-460dc66dca50\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - State Assembly Polygon 2001", "abstract": "State wide data showing Lower House boundaries and names. These are the Legislative Assembly Electoral Districts referred to as the Lower House Boundaries.\nElectoral Boundaries are defined under the requirements of the Electoral Boundaries Commission Act 1982.\n\nSUPERSESED dataset by VMADMIN_STATE_ASSEMBLY_2013.", "anzlicid": "ANZVI0803002630", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "060983529448c22657bf7cea5d4981215e8dd7ac", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "270ed072-a948-5733-85e6-0dd435dd30dc", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:15,000 Edition 46", "alttitle": "MELWAY_MAPINDEX_15_ED46", "tempextentbegin": "2018-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2018-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46784\", \"uuid\": \"270ed072-a948-5733-85e6-0dd435dd30dc\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:15,000 Edition 46", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:15 000 Queenscliffe maps.", "anzlicid": "ANZVI0803009148", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b97b352fb64d6fc3ae6f068d4a6f5ce4227687d2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "b219500c-eceb-5532-bc76-196e43323279", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 44", "alttitle": "MELWAY_MAPINDEX_10_ED44", "tempextentbegin": "2016-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2016-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46785\", \"uuid\": \"b219500c-eceb-5532-bc76-196e43323279\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 44", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:10 000 inner urban maps.", "anzlicid": "ANZVI0803009142", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "44192ca8ddd36ea256a79c474fe35a5e97e1d0a9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "18cc2c98-0d40-529a-ba61-314e709dd89e", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:60,000 Edition 42", "alttitle": "MELWAY_PAGEGRID_60_ED42", "tempextentbegin": "2014-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2014-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46792\", \"uuid\": \"18cc2c98-0d40-529a-ba61-314e709dd89e\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:60,000 Edition 42", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:60 000 Phillip Island maps.", "anzlicid": "ANZVI0803009237", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "863ab52d98963da6b50c2dadcabba8f05e183ed1", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9879fbbd-c37e-5a15-a355-4f9f896e4bd3", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-01-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - Fire Rescue Victoria (FRV) Response Area Polygon", "alttitle": "FRV_RESPONSE_AREA", "tempextentbegin": "2020-06-30T14:00:00+00:00", "resowner": "Fire Rescue Victoria;Fire Rescue Victoria", "tempextentend": "2023-01-24T00:09:47+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46735\", \"uuid\": \"9879fbbd-c37e-5a15-a355-4f9f896e4bd3\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-04\", \"changeDate\": \"2022-01-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - Fire Rescue Victoria (FRV) Response Area Polygon", "abstract": "Part of the Vicmap Admin dataset series. This layer contains polygon features deliminating FRV's response area.\n\nNOTE: This dataset superceded FRV_LEGISLATED_BOUNDARY in August 2021, to better reflect the operational aspect of the dataset and ensure no confusion with the legislated FRV boundaries defined on Landata.\n\nThis data is current as of 1 Dec 2021.", "anzlicid": "ANZVI0803009126", "geonet_info_createdate": "2021-08-04", "revisiondate": "2022-01-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "62660c0012a140564bfdf6555c86c3cf3e2c3e66", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "f9636b2d-ecd4-517f-9878-98e90291d5a0", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:25,000 Edition 42", "alttitle": "MELWAY_MAPINDEX_25_ED42", "tempextentbegin": "2014-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2014-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46743\", \"uuid\": \"f9636b2d-ecd4-517f-9878-98e90291d5a0\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:25,000 Edition 42", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:25 000 Phillip Island maps.", "anzlicid": "ANZVI0803009168", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f650b903c3c1498bac5d90f32007ddee08a27216", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9c9c58e3-f6c8-5d2b-8eda-c86854e10996", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ArcInfo", "type": "dataset", "title": "GSV Unpublished Map Sheet Index", "alttitle": "GSVMIUPUB", "tempextentbegin": "1989-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "1997-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries;economy;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35028\", \"uuid\": \"9c9c58e3-f6c8-5d2b-8eda-c86854e10996\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "GSV Unpublished Map Sheet Index", "abstract": "Contains Boundaries and Information about Geological Survey of Victorias UnPublished Map Boundaries", "anzlicid": "ANZVI0803002228", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "3c2ea4e9ef78021a04cdc0ed0d77bb41689e0f32", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a20f6feb-f273-507e-a5ac-6fbaea83cd0a", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-15", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL. As per data.vic, spatial datamart and fme.", "type": "dataset", "title": "Geological Deep Leads (1:250,000)", "alttitle": "DEEPLD250_POLYGON", "tempextentbegin": "1995-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2023-01-24T00:09:49+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35030\", \"uuid\": \"a20f6feb-f273-507e-a5ac-6fbaea83cd0a\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-10-11\", \"changeDate\": \"2022-09-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological Deep Leads (1:250,000)", "abstract": "The data displays areas of geological deep leads\n\nThe data have been collected by the Geological Survey of Victoria. The dataset is accompanied by other datasets representing geology outcrop and boundaries, structural lines, miscellaneous lines and points, miscellaneous polygons, and placer deposits.", "anzlicid": "ANZVI0803002727", "geonet_info_createdate": "2019-10-11", "revisiondate": "2022-09-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5e8565938f2e3cf0aa7e645e11dd0db3790cbf9e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "0766c6ac-f2dc-58cf-ba02-eb8c240014ef", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:25,000 Edition 40", "alttitle": "MELWAY_MAPINDEX_25_ED40", "tempextentbegin": "2012-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2012-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46747\", \"uuid\": \"0766c6ac-f2dc-58cf-ba02-eb8c240014ef\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:25,000 Edition 40", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:25 000 Phillip Island maps.", "anzlicid": "ANZVI0803009170", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "70b0e2d4b49d5301111ff0acbba1f75fb451b79a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9ee7732c-e459-5673-ad9f-5b12b66b2991", "publicationdate": "2019-01-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-23", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "ArcVIew", "type": "dataset", "title": "Wind Farm Roads for Victoria", "alttitle": "WIND_FARM_ROADS", "tempextentbegin": "2010-07-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-11-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35031\", \"uuid\": \"9ee7732c-e459-5673-ad9f-5b12b66b2991\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-11-21\", \"changeDate\": \"2021-07-23\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Wind Farm Roads for Victoria", "abstract": "Wind Farms Roads locations for Victoria \n\nWind energy has the potential to provide a significant proportion of Victoria's growth in renewable energy generation over the next coming years. The Government supports the development of wind energy in appropriate locations.\n\nPlanning Scheme Amendment VC82, make it clear where in Victoria a wind energy facility may be considered. The planning reform guarantees the residents of rural and regional Victoria certainty and fairness in wind farm planning decisions and ensures that communities are given a say in major planning applications.\n\nThe linear dataset that refers to the locations of Turbines", "anzlicid": "ANZVI0803005962", "geonet_info_createdate": "2018-11-21", "revisiondate": "2021-07-23", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ab112e682c9196c65182494fa093311e8aa1693b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "a4aa5388-c6e7-5bcb-9e87-add7253108be", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 42", "alttitle": "MELWAY_MAPINDEX_10_ED42", "tempextentbegin": "2014-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2014-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46749\", \"uuid\": \"a4aa5388-c6e7-5bcb-9e87-add7253108be\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 42", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:10 000 inner urban maps.", "anzlicid": "ANZVI0803009144", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0c0b8ec6bef4779c4d6df0a233daa945838cf27e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "a075f42d-8f7a-53fa-8fe7-216a1814e670", "publicationdate": "2019-06-29", "publishedforgroup": "12264;0", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:20,000 Edition 45", "alttitle": "MELWAY_MAPINDEX_20_ED45", "tempextentbegin": "2017-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2017-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46754\", \"uuid\": \"a075f42d-8f7a-53fa-8fe7-216a1814e670\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:20,000 Edition 45", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:20 000 Greater Melbourne maps.", "anzlicid": "ANZVI0803009157", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e7c3cad10eeba7167af499c85c5bf5d6be952b59", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "7d0702ad-ebd3-5cc3-8d6d-436ce63007be", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 41", "alttitle": "MELWAY_MAPINDEX_10_ED41", "tempextentbegin": "2013-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2013-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46755\", \"uuid\": \"7d0702ad-ebd3-5cc3-8d6d-436ce63007be\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-06\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:10,000 Edition 41", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:10 000 inner urban maps.", "anzlicid": "ANZVI0803009145", "geonet_info_createdate": "2021-08-06", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0328bf918f493804161f2df67a55a6e68ed3f03b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "554fa3f7-7881-5dc2-a9dc-503c31e23b9b", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay MAEO - MELBOURNE AIRPORT ENVIRONS OVERLAY", "alttitle": "MAEO", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:32+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46650\", \"uuid\": \"554fa3f7-7881-5dc2-a9dc-503c31e23b9b\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-20\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay MAEO - MELBOURNE AIRPORT ENVIRONS OVERLAY", "abstract": "This dataset contains polygon features for the individual overlay class MAEO - MELBOURNE AIRPORT ENVIRONS OVERLAY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009084", "geonet_info_createdate": "2021-07-20", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c10abfe8177ae1d900df22b9c8ed86929077ff22", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "d6ce6489-979b-54b6-a0c0-e3ebfeebf42e", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Planning scheme overlay PAO - PUBLIC ACQUISITION OVERLAY", "alttitle": "PAO", "tempextentbegin": "1954-12-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:09:32+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46651\", \"uuid\": \"d6ce6489-979b-54b6-a0c0-e3ebfeebf42e\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-07-20\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Planning scheme overlay PAO - PUBLIC ACQUISITION OVERLAY", "abstract": "This dataset contains polygon features for the individual overlay class PAO - PUBLIC ACQUISITION OVERLAY. If you require all overlays in a single dataset use the Vicmap VMPLAN PLAN_OVERLAY dataset.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone description\n- gazette date\n- zone status\n- zone code \n- zone code group\n- zone code group label\n- LGA name\n- LGA code", "anzlicid": "ANZVI0803009086", "geonet_info_createdate": "2021-07-20", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "90754fe3b73ec7c6d5a8c4f5690b2876e9f5e247", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "eec34e23-a733-5997-86af-aa3c9c604900", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:5,000 Edition 42", "alttitle": "MELWAY_MAPINDEX_5_ED42", "tempextentbegin": "2014-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2014-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46796\", \"uuid\": \"eec34e23-a733-5997-86af-aa3c9c604900\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:5,000 Edition 42", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:5 000 city maps.", "anzlicid": "ANZVI0803009176", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "de0e7a471bbac7ba6f164eb4c995053003a6cc85", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "1b0ce959-e801-5c42-b6e8-1d341269e2e0", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:20,000 Edition 40", "alttitle": "MELWAY_PAGEGRID_20_ED40", "tempextentbegin": "2012-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2012-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46845\", \"uuid\": \"1b0ce959-e801-5c42-b6e8-1d341269e2e0\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:20,000 Edition 40", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:20 000 greater Melbourne maps.", "anzlicid": "ANZVI0803009212", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "465b95a74ce21a86a3c72a335cc8487db582409b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "3172abda-b321-5ba7-a51f-5bb72fafc21f", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:10,000 Edition 45", "alttitle": "MELWAY_PAGEGRID_10_ED45", "tempextentbegin": "2017-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2017-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46854\", \"uuid\": \"3172abda-b321-5ba7-a51f-5bb72fafc21f\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:10,000 Edition 45", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:10 000 inner urban maps.", "anzlicid": "ANZVI0803009189", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c4b87e379088104cd455ac77c31f8c16acb88d77", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d78d9fca-488a-5156-b64b-5802c36efe92", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "VicGrid94 Graticule - 1 km interval", "alttitle": "GRAT_VG94_1K", "tempextentbegin": "2023-01-24T00:10:22+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:10:22+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35138\", \"uuid\": \"d78d9fca-488a-5156-b64b-5802c36efe92\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-03-18\", \"changeDate\": \"2022-02-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "VicGrid94 Graticule - 1 km interval", "abstract": "This dataset is designed to be used as a \"graticule layer\", allowing a graticule to be drawn on maps when using software packages that don't support their generation in other ways. It consists of lines spaced at 1km intervals, running north-south (attributed with Easting) and east-west (attributed with Northing). It is applicable for use where a VicGrid94 graticule is required. Can be projected to provide a Vicgrid94 graticule over data based on other co-ordinate systems (eg Geographic or MGA).\n\nThis dataset forms part of a series of graticule layers, one for each common projection.", "anzlicid": "ANZVI0803002859", "geonet_info_createdate": "2016-03-18", "revisiondate": "2022-02-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ce3b397a368cea2c04eee00cc25f945a61f767f4", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "14fc5847-bb49-56b8-a6dc-83452a78129e", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Limited Distribution", "format": "ArcInfo", "type": "dataset", "title": "Sand Dunes - Polygons (1:100,000)", "alttitle": "SDUNE100_POLYGON", "tempextentbegin": "1995-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35139\", \"uuid\": \"14fc5847-bb49-56b8-a6dc-83452a78129e\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-09\", \"changeDate\": \"2022-09-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Sand Dunes - Polygons (1:100,000)", "abstract": "Sand Dunes - Polygons for a single 1:100,000 map area", "anzlicid": "ANZVI0803005579", "geonet_info_createdate": "2016-02-09", "revisiondate": "2022-09-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2a57067b954f43f84dd8a8cdc2f8c39c517e959b", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "65da9f35-f6ca-5427-9e47-34f4a78edc45", "publicationdate": "2019-01-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-12", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Land Administration Themes - Supply Detail Table", "alttitle": "VLAT_SUPPLY", "tempextentbegin": "2023-01-24T00:10:22+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:10:22+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46867\", \"uuid\": \"65da9f35-f6ca-5427-9e47-34f4a78edc45\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-12\", \"changeDate\": \"2022-07-12\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Vicmap Land Administration Themes - Supply Detail Table", "abstract": "VLAT_SUPPLY is part of the Vicmap Land Administration Themes (VLAT) prooduct. This dataset includes the current and retired states of each feature instance. It supports feature versioning (UFI_RETIRED)..\n\nVLAT_SUPPLY is an aspatial table that provides information about each supply including the version and associated from and to dates.\n\nart of VLAT, VLAT_SUPPLY is an aspatial table that provides information about each supply including the version and associated from and to dates.", "anzlicid": "ANZVI0803009245", "geonet_info_createdate": "2021-08-12", "revisiondate": "2022-07-12", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "01f917fa9eaeb30b37d3f60e9c6911522689b570", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "3e00e04b-a8ae-5800-b615-d4cbb5c10e15", "publicationdate": "2022-12-26", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "UNIQUE_HOUSENUM_PT_APPROVED", "alttitle": "UNIQUE_HOUSENUM_PT_APPROVED", "tempextentbegin": "2021-08-12T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-08-12T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46871\", \"uuid\": \"3e00e04b-a8ae-5800-b615-d4cbb5c10e15\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-13\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "UNIQUE_HOUSENUM_PT_APPROVED", "abstract": "Prototype data to improve performance of map labels in VicPlan. This is a point feature class with the house number (street address number) and PFI as the only attributes in the data. The data has also had duplicate records removed so there only exists one (unique) point for each approved property address\n\nSource for this data is VMADD.ADDRESS", "anzlicid": "ANZVI0803009246", "geonet_info_createdate": "2021-08-13", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8ef394d7a304aa46256683c8abf15e193e64a984", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "dd163719-4493-5e1e-833f-073f43a04bf7", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Administrative Victorian Government Region Table", "alttitle": "AM_VICGOV_REGION", "tempextentbegin": "2023-01-24T00:10:25+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:10:25+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35151\", \"uuid\": \"dd163719-4493-5e1e-833f-073f43a04bf7\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Administrative Victorian Government Region Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003219", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "92079725fcbbba1d619835aabc87229f745c46be", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c85fcdcb-c464-569d-8615-46ff4033ad21", "publicationdate": "2020-07-28", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "PTV SkyBus Routes (Airport Service)", "alttitle": "PTV_SKYBUS_ROUTE", "tempextentbegin": "2018-02-28T13:00:00+00:00", "resowner": "Department of Transport", "tempextentend": "2023-01-24T00:10:07+00:00", "maintenanceandupdatefrequency_text": "Quarterly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35089\", \"uuid\": \"c85fcdcb-c464-569d-8615-46ff4033ad21\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-02\", \"changeDate\": \"2022-02-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "PTV SkyBus Routes (Airport Service)", "abstract": "This layer depicts a spatial object (polyline) representing SkyBus routes. Each polylines represents a unique route variation. Each coach route has attributes that describe route, trip headsign (direction), route length, first/last stop, number of stops and operator name. The data has been generated from the PTV GTFS data with extra attributes from PTV's TransNet database. \nThis dataset supersedes \"PTV_BUS_ROUTE_METRO\" (which included SkyBus routes).\nThis dataset was first loaded into the VSDL in March 2018 and will be updated approximately quarterly.", "anzlicid": "ANZVI0803005847", "geonet_info_createdate": "2018-03-02", "revisiondate": "2022-02-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f8b8dff810f804acde08debd9a6e245659ba4e33", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "b2b98962-7480-5aa0-9587-67bef8ae37d4", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:60,000 Edition 45", "alttitle": "MELWAY_PAGEGRID_60_ED45", "tempextentbegin": "2017-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2017-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46820\", \"uuid\": \"b2b98962-7480-5aa0-9587-67bef8ae37d4\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:60,000 Edition 45", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:60 000 Phillip Island maps.", "anzlicid": "ANZVI0803009234", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "cd38c809d42aeb88db583d138bc75d69c1e7482a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "84ffac57-17f4-5ea8-a885-1c95db6a3561", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:5,000 Edition 44", "alttitle": "MELWAY_PAGEGRID_5_ED44", "tempextentbegin": "2016-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2016-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46824\", \"uuid\": \"84ffac57-17f4-5ea8-a885-1c95db6a3561\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:5,000 Edition 44", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:5 000 city maps.", "anzlicid": "ANZVI0803009225", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "df97ce4a0b0d1ac9084bc8218b85f76d99065fcf", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "28f4b15a-bff4-58a9-80e2-a77df6fcc0e1", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:5,000 Edition 43", "alttitle": "MELWAY_MAPINDEX_5_ED43", "tempextentbegin": "2015-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2015-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46826\", \"uuid\": \"28f4b15a-bff4-58a9-80e2-a77df6fcc0e1\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:5,000 Edition 43", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:5 000 city maps.", "anzlicid": "ANZVI0803009175", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "075fea33a292e6f26db2eac8bf060732c8a7b45a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "c6758a78-6f0a-5fec-afb3-e8f38448c0ca", "publicationdate": "2022-02-03", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-04-04", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "DIGITAL - all major formats available", "type": "dataset", "title": "Traditional Owner overlays represents the area of land under the TOS ACT that has been granted as Aboriginal Title", "alttitle": "PLM25_OVERLAYS_TO", "tempextentbegin": "2016-03-29T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-07-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35158\", \"uuid\": \"c6758a78-6f0a-5fec-afb3-e8f38448c0ca\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-08-03\", \"changeDate\": \"2022-04-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Traditional Owner overlays represents the area of land under the TOS ACT that has been granted as Aboriginal Title", "abstract": "This dataset was created in conjunction with PLM25, to represent the management overlays. The attributes are based on the PLM25 structure.\nThe overlays contains information extracted from the States cadastre for allotments that have Aboriginal Title granted in association with a settlement agreement under the Traditional Owner Settlement Act.\nPLM25_OVERLAYS_TO is located under the CROWNLAND schema. It has been created in conjunction with PLM25 to ensure the overlays match the PLM25 land management categories.\n\nPLEASE NOTE: This dataset is new and was created in 2016.", "anzlicid": "ANZVI0803005632", "geonet_info_createdate": "2016-08-03", "revisiondate": "2022-04-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0f180d72c3fa11c418b5ef2233f3d41fb9095673", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "545463df-853e-5c13-b585-0785c8e5e357", "publicationdate": "2022-07-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Statewide Marine Habitat Map 2021", "alttitle": "VIC_MARINE_HABITAT_MAP_2021", "tempextentbegin": "2021-08-23T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-08-23T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46917\", \"uuid\": \"545463df-853e-5c13-b585-0785c8e5e357\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-24\", \"changeDate\": \"2022-08-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Statewide Marine Habitat Map 2021", "abstract": "Combined Port Phillip Bay habitat model developed by DELWP 2021 and Open Coast Deakin marine mapping campaign JAN 2019. \n\nThe PPB map was built to predict habitat distributions by applying Random Forest machine learning tools which integrate ground truthed data and environmental predictors. The resulting Habitat Complex map represents 19 different habitat complexes across Port Phillip Bay at Level 3 Combined Biotope Classification Scheme (CBiCS) described by Edmunds and Flynn (2015, 2018; 2021). A total of 8,325 ground-truth records were used within the model (of the 9,683 records) that met the Random Forest modelling criteria (\u00bf5 unique values for each biotope category; Breiman 2001). Environmental parameters were sourced from different methods including lidar, multibeam, and indexes calculated from the Digital Elevation Model (DEM), and mapped at a resolution of 2.5 metres. The Random forest model produced an accuracy (Out-of-bag) of 91%. Link to methodology: https://www.marineandcoasts.vic.gov.au/__data/assets/pdf_file/0031/537169/Mazor-et-al-2021_Port-Phillip-Bay-CBiCS-Habitat-Model.pdf\n\nThe Open Coast statewide marine habitat map (excluding PPB) developed by Deakin Marine Mapping lab using a range of techniques including digitisation of polygons and has been compiled using a compilatiom of various datasets including Boon et al. (2011). Deakin Marine Mapping (Young M et al, 2018). GeoHab Victoria Estuaries Geomorphology (2010). Deakin Marine Mapping (Zavalas, R et al. 2018), DELWP wetlands (1994), Monk et al 2011, Roob and Ball (1997), Ford et al 2016, Edmunds and Flynn (2015), Blake and Ball (2001), Poore (1992), Cohen et al (2000). The map has later been reclassified to CBICS habitat classification scheme at broad-scale level 2 and 3.", "anzlicid": "ANZVI0803009286", "geonet_info_createdate": "2021-08-24", "revisiondate": "2022-08-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "729249ab12981470e23b08ec28165c0086fc67a1", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "4da26d10-0260-598c-a390-7004526f481b", "publicationdate": "2019-12-17", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-10-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "Feature Class", "type": "dataset", "title": "Wetland Intervention Monitoring Program monitoring sites", "alttitle": "WIMP_SITES", "tempextentbegin": "2017-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:10:38+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35191\", \"uuid\": \"4da26d10-0260-598c-a390-7004526f481b\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-10-08\", \"changeDate\": \"2019-10-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "limitedDistribution", "defaulttitle": "Wetland Intervention Monitoring Program monitoring sites", "abstract": "The Wetland Intervention Monitoring Program (WIMP) is a state-wide, long-term program for assessing the effectiveness of management activities commonly applied in wetlands. This data set maps the location of monitoring sites included in the program.", "anzlicid": "ANZVI0803008544", "geonet_info_createdate": "2019-10-08", "revisiondate": "2019-10-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8579f17ffecda4083e35d6a35c25afa216b53369", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d708c9fb-d020-5a18-8faa-d8c98aaf3062", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-10-24", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL: ESRI ArcSDE export, ESRI Shapefile, MapInfo TAB, Oracle Spatial", "type": "dataset", "title": "Victorian Coastal Inundation Sea Level Rise 2070", "alttitle": "SLR47CM_2070", "tempextentbegin": "2009-09-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:10:39+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35195\", \"uuid\": \"d708c9fb-d020-5a18-8faa-d8c98aaf3062\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-10-24\", \"changeDate\": \"2017-10-24\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Coastal Inundation Sea Level Rise 2070", "abstract": "The Victorian Coastal Inundation Dataset (the product) is a digital dataset consisting of eight spatial layers modelling the extent of land subject to coastal inundation due to projected sea level rise from 2009 to 2100.\nThis product is recommended for use at a scale of approximately 1:75,000 or less detail to reflect the limitations in the modelling and the recommended catchment to regional scale of inundation assessments with this product. The product is NOT suitable for assessments of potential risks at property level.\n\nThe datasets available are:\nSea Level Rise:\n- SLR00CM_2009 - Current (2009) sea level \n- SLR20CM_2040 - Projected 20cm sea level rise by 2040 \n- SLR47CM_2070 - Projected 47cm sea level rise by 2070 \n- SLR82CM_2100 - Projected 82cm sea level rise by 2100 \n\nStorm tide (1-in-100 year) with added wind forcing plus sea level rise\n- SLR00CM_ST_2009 - Current (2009) inundation to 1-in-100 year storm tide level \n- SLR20CM_ST_2040 - Inundation to 1-in-100 year storm tide level with storm surge increased by 6% plus 20 cm sea level rise \n- SLR47CM_ST_2070 - Inundation to 1-in-100 year storm tide level with storm surge increased by 13% plus 47 cm sea level rise \n- SLR82CM_ST_2100 - Inundation to 1-in-100 year storm tide level with storm surge increased by 19% plus 82 cm sea level rise\n\nInteractive Map:-\nhttp://mapshare.maps.vic.gov.au/gvh270hydra/\n> Future Coasts (Modelled)\n\nThis data has been computed to support the Victorian Governments Future Coasts Project.", "anzlicid": "ANZVI0803004729", "geonet_info_createdate": "2017-10-24", "revisiondate": "2017-10-24", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4893e79a06f7ae953b4621539e2fc202583db9f9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "259286de-df57-5040-ae91-6e72a1dbdf69", "publicationdate": "2019-06-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-08-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Not Known", "type": "dataset", "title": "Victorian Water Asset Database (VWAD) - POLYGON_LAYER", "alttitle": "VWAD_PY", "tempextentbegin": "2013-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-05-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35197\", \"uuid\": \"259286de-df57-5040-ae91-6e72a1dbdf69\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-08-05\", \"changeDate\": \"2015-08-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Water Asset Database (VWAD) - POLYGON_LAYER", "abstract": "Victorian Water Asset Database (VWAD), contains the identification of water assets and their attributes for the state of Victoria. The VWAD includes features such as lakes, rivers, creeks, wetlands, water storages, estuaries, groundwater aquifers, springs, large marine intertidal zones,\nbut does not include specific irrigation and water supply infrastructure such as irrigation channels, bores and irrigation distribution networks.", "anzlicid": "ANZVI0803005340", "geonet_info_createdate": "2015-08-05", "revisiondate": "2015-08-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9ac9af8e179f9595e1abb20768e4e6e576089e04", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "ada037db-b61d-5dfa-9def-b34d977679a4", "publicationdate": "2022-12-26", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "ESRI Shape, FIle Geo database", "type": "dataset", "title": "UNIQUE_ADDRESS_PT_PROPOSED", "alttitle": "UNIQUE_ADDRESS_PT_PROPOSED", "tempextentbegin": "2021-08-12T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-08-12T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;structure;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46979\", \"uuid\": \"ada037db-b61d-5dfa-9def-b34d977679a4\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-09-02\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "UNIQUE_ADDRESS_PT_PROPOSED", "abstract": "Prototype data to improve performance of map labels in VicPlan. This is a point feature class with the address and PFI as the only attributes in the data. The data has also had duplicate records removed so there only exists one (unique) point for each proposed property address.\n\nSource for this data is VMADD.ADDRESS", "anzlicid": "ANZVI0803009310", "geonet_info_createdate": "2021-09-02", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "555fb11bfb322b778f5feef7e016fe931fcb62bc", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "3b35f080-4088-56db-89ee-9a3afba94c4c", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Port Fairy Coastal Erosion and River Hazard", "alttitle": "PF_COAST_HAZARD_RIVERS", "tempextentbegin": "2012-04-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2013-04-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;geoscientific information;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35074\", \"uuid\": \"3b35f080-4088-56db-89ee-9a3afba94c4c\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-07-12\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Port Fairy Coastal Erosion and River Hazard", "abstract": "The Port Fairy Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Port Fairy coastal environment.\n\nThis data identifies areas where coastal erosion hazard may be subjected to potential water course entrance stability processes in addition to, or independent of, coastal setback from ocean based processes\n\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.", "anzlicid": "ANZVI0803005641", "geonet_info_createdate": "2016-07-12", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "cd732546be2d1331200ebf455709fbf9fe53995e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "63f475a4-3e5b-53af-9aed-25c1100cbba5", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:60,000 Edition 46", "alttitle": "MELWAY_MAPINDEX_60_ED46", "tempextentbegin": "2018-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2018-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46799\", \"uuid\": \"63f475a4-3e5b-53af-9aed-25c1100cbba5\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:60,000 Edition 46", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:60 000 Phillip Island maps.", "anzlicid": "ANZVI0803009180", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fb687fa46622d37f3693bfcce48c89c7392463ff", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "4d8cd54f-6774-537d-be49-67bc2386ba91", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:60,000 Edition 46", "alttitle": "MELWAY_PAGEGRID_60_ED46", "tempextentbegin": "2018-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2018-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46802\", \"uuid\": \"4d8cd54f-6774-537d-be49-67bc2386ba91\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:60,000 Edition 46", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:60 000 Phillip Island maps.", "anzlicid": "ANZVI0803009233", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "3ab5c7685a751958a5d50241b935a35bd83b8e43", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "86789e76-95cf-5d12-b457-c34299bd739e", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:25,000 Edition 42", "alttitle": "MELWAY_PAGEGRID_25_ED42", "tempextentbegin": "2014-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2014-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46806\", \"uuid\": \"86789e76-95cf-5d12-b457-c34299bd739e\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:25,000 Edition 42", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:25 000 Phillip Island maps.", "anzlicid": "ANZVI0803009218", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "92baca5d75a210f7bc6f07d0e18f5e125bc07730", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "2682781f-2284-5154-9600-2525d213d68d", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:60,000 Edition 47", "alttitle": "MELWAY_PAGEGRID_60_ED47", "tempextentbegin": "2019-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2019-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35184\", \"uuid\": \"2682781f-2284-5154-9600-2525d213d68d\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-10-04\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:60,000 Edition 47", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:60 000 Phillip Island maps.", "anzlicid": "ANZVI0803004601", "geonet_info_createdate": "2018-10-04", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6b94e4eaebc557695f79e9f4295a2b42114511c0", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "fc1a1c2f-4364-5dc3-b5f8-50fe1a8f29a6", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:20,000 Edition 39", "alttitle": "MELWAY_PAGEGRID_20_ED39", "tempextentbegin": "2011-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2011-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46831\", \"uuid\": \"fc1a1c2f-4364-5dc3-b5f8-50fe1a8f29a6\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:20,000 Edition 39", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:20 000 greater Melbourne maps.", "anzlicid": "ANZVI0803009213", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f3b1aff05ca2e75b14cdf05021176c8ae60de98d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "e9df501c-58f7-534f-996c-ef788bab057a", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:20,000 Edition 43", "alttitle": "MELWAY_PAGEGRID_20_ED43", "tempextentbegin": "2015-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2015-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46839\", \"uuid\": \"e9df501c-58f7-534f-996c-ef788bab057a\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:20,000 Edition 43", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:20 000 greater Melbourne maps.", "anzlicid": "ANZVI0803009209", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2d8cdde58ae7b6a4442916f0e698aeaf7e061845", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "d9119c10-b557-588f-993e-f66dfcf1d6d4", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:5,000 Edition 42", "alttitle": "MELWAY_PAGEGRID_5_ED42", "tempextentbegin": "2014-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2014-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46840\", \"uuid\": \"d9119c10-b557-588f-993e-f66dfcf1d6d4\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:5,000 Edition 42", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:5 000 city maps.", "anzlicid": "ANZVI0803009227", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "aa8df4c268b146fda739cc13075798f110dce675", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "30ac6167-9ee2-5849-a888-c2890b178cc7", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Index 1:60,000 Edition 44", "alttitle": "MELWAY_MAPINDEX_60_ED44", "tempextentbegin": "2016-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2016-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"46843\", \"uuid\": \"30ac6167-9ee2-5849-a888-c2890b178cc7\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-08-09\", \"changeDate\": \"2021-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Index 1:60,000 Edition 44", "abstract": "This dataset is derived from the Melway directory and contains the map indices for the 1:60 000 Phillip Island maps.", "anzlicid": "ANZVI0803009182", "geonet_info_createdate": "2021-08-09", "revisiondate": "2021-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d1197cc4622ac1bc95c17524456009b929ccff59", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0ba63dff-edac-5a95-99af-1cd616a81f76", "publicationdate": "2018-11-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2018-11-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Not Known", "type": "dataset", "title": "Victorian Land Use Information System 2016-2017", "alttitle": "LANDUSE_2017", "tempextentbegin": "2005-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2017-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Biannually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35208\", \"uuid\": \"0ba63dff-edac-5a95-99af-1cd616a81f76\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-11-08\", \"changeDate\": \"2018-11-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Land Use Information System 2016-2017", "abstract": "The Victorian Land Use Information System (VLUIS) 2016/17 dataset has been created by the Spatial Information Sciences Group of the Agriculture Victoria Research in the Department of Economic Development, Jobs, Transport, and Resources. It covers the entire landmass of Victoria and separately describes the land tenure, land use and land cover across the state at the cadastral parcel level.\n\nThe methodology for creating the VLUIS is described in Morse-McNabb et al. (2015) with the following notable changes:\n1. Land use data provided by the Office of the Valuer-General of Victoria for the 2014 year has been used as a base input. Readily available sources of land use information from government and industry have been used to provide updates to the land tenure and land use components of the 2016/17 dataset. The source dataset and source date are recorded for each parcel. The land cover mapping method remains unchanged to previous versions of the VLUIS.\n2. The Australian Land Use and Management (ALUM) Classification, version 8, has been added to the attribute table. The VLUIS land use code fields have been translated across to the ALUM classification. Version 8 has been used you can find the ALUM Classification on the Department of Agriculture and Water Resources ABARES ALUM page: http://www.agriculture.gov.au/abares/aclump/land-use/alum-classification. \n3. Land parcels within urban areas, mapped in previous versions, have been masked out and have been renamed as Built Up Areas vastly reducing the size of the 2016/17 dataset. Land cover for Built Up Areas (LC_CODE = BUILT) is listed as null.\n4. Road reserves and road parcels have been merged together and renamed Voids. Land cover for Voids (LC_CODE = VOID) is listed as null.\n5. Parcels <12.5 hectares: land cover has not been attributed as the resolution of MODIS cannot support classifications of polygons smaller than 12.5 hectares.\n\nThe data is in the form of an ESRI feature class. \n\nTo use the VLUIS data correctly it is important to understand the difference between the three components of VLUIS. The Guidelines for land use mapping in Australia: principles, procedures and definitions, Edition 3 published in 2006 by the Commonwealth of Australia, defines them as follows: \nLand tenure is the form of an interest in land. Some forms of tenure (such as pastoral leases or nature conservation reserves) relate directly to land use and land management practice. \nLand use means the purpose to which the land cover is committed. Some land uses, such as agriculture, have a characteristic land cover pattern. These usually appear in land cover classifications. Other land uses, such as nature conservation, are not readily discriminated by a characteristic land cover pattern. For example, where the land cover is woodland, land use may be timber production or nature conservation. \nLand cover refers to the physical surface of the earth, including various combinations of vegetation types, soils, exposed rocks and water bodies as well as anthropogenic elements, such as agriculture and built environments. Land cover classes can usually be discriminated by characteristic patterns using remote sensing.\n\nA metadata statement, for the VLUIS product, and ESRI symbology files for the data can be freely downloaded from the VLUIS project page on the Victorian Resources Online website: http://vro.agriculture.vic.gov.au/dpi/vro/vrosite.nsf/pages/vluis\n\nDOI 10.26279/5b96043f7bd02", "anzlicid": "ANZVI0803005950", "geonet_info_createdate": "2018-11-08", "revisiondate": "2018-11-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2d455227c31980d524144806c1a39aeaad796a79", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "bf6672d6-3116-591b-9f99-22dc239da850", "publicationdate": "2021-10-06", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "MapInfo, ESRI Shape", "type": "dataset", "title": "Urban Development Program - Major Residential Redevelopments Sites 2020", "alttitle": "MRS2020", "tempextentbegin": "2020-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2020-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"47047\", \"uuid\": \"bf6672d6-3116-591b-9f99-22dc239da850\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-09-29\", \"changeDate\": \"2022-08-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Urban Development Program - Major Residential Redevelopments Sites 2020", "abstract": "The Urban Development Program (UDP) monitors and reports on major residential redevelopment projects across metropolitan Melbourne. Major redevelopment projects are those comprising ten or more dwellings. Data is collected from commercial data sources and through analysis of aerial imagery, and is verified through consultations with local council representatives.\nThese include projects which may have an existing planning permit, or are in the planning processes, those that are current under construction, as well as potential longer term projects on sites that local councils have identified for residential purposes.\nA timing classification is attributed to each project based on commercial data sources, consultation with local councils, and the stage the project has reached in the planning process. The Urban Development Program reports on major redevelopment projects using the following categories:\n\u00bf\tCompleted (a project was completed from Jan 2017 to Jan 2019)\n\u00bf\tUnder Construction (a project was under construction at Jan 2019)\n\u00bf\tFirm (Recent planning approval, project with pre-sales)\n\u00bf\tLikely (In planning assessment, planning permit extension may be required to develop)\n\u00bf\tPossible (Long term redevelopment site, permit lapsed ).\n\nWhile the UDP acknowledges a proportion of proposed projects may be abandoned or delayed, the classification process provides an indicator of available supply provided there is sufficient demand. In addition, it is acknowledged there are also sites within the established parts of Melbourne that may be suitable for residential development into the future but have not yet been identified. The UDP will continue to report on these sites as they are identified for redevelopment for residential purposes.\nIt should also be noted that the timings attached to these projects are indicative. Construction rates can be cyclical in nature, and highly dependent on underlying demand and pre-sales, economic cycles and industry capacity. This can mean that stated development intentions will vary from on the-ground construction activity over time and by location.", "anzlicid": "ANZVI0803009321", "geonet_info_createdate": "2021-09-29", "revisiondate": "2022-08-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1d7778bb06be2db4d5c1e0e38a11b9255fb87263", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "bb5847f7-6cbb-558c-a16f-d51ce6bf8861", "publicationdate": "2021-11-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "MapInfo, ESRI Shape", "type": "dataset", "title": "Urban Development Program - Industrial Land 2020", "alttitle": "IND2020", "tempextentbegin": "2020-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2020-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"47048\", \"uuid\": \"bb5847f7-6cbb-558c-a16f-d51ce6bf8861\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-09-29\", \"changeDate\": \"2022-08-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Urban Development Program - Industrial Land 2020", "abstract": "Identifies all industrial land and the development status and size of each land parcel in hectare across metropolitan Melbourne.\nThis information identifies all industrial zoned land (Industrial 1, 2 and 3 as well as Commercial 2 Zone), and land of an industrial character and includes the Airport Business Parks, selected Special Use Zones, selected Comprehensive Development Zones and specific precincts within the Activity Centre Zones and Urban Growth Zones.\nEach land parcel is assessed as being either Unavailable (currently being used) or Supply (vacant).\n\nUrban Development Program (UDP).", "anzlicid": "ANZVI0803009324", "geonet_info_createdate": "2021-09-29", "revisiondate": "2022-08-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "15013822d8877f0a3007bd92f0473cc0ff87e7af", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "99ff165f-261e-548e-a9c7-3541f4890b52", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-11-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL All major formats available on request", "type": "dataset", "title": "Port Phillip Bay Depth Contours at 1:25,000", "alttitle": "BATHYMETRY_PORT_PHILLIP_ARC", "tempextentbegin": "1971-01-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2000-05-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35210\", \"uuid\": \"99ff165f-261e-548e-a9c7-3541f4890b52\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-11-13\", \"changeDate\": \"2014-11-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Port Phillip Bay Depth Contours at 1:25,000", "abstract": "This layer contains line features for depth contours (bathymetry) in Port Phillip Bay.", "anzlicid": "ANZVI0803004025", "geonet_info_createdate": "2014-11-13", "revisiondate": "2014-11-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "04f2caa1ceeba173593ff25fdb2d46dd413fa436", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "b1135b78-8d5a-50a3-b9c5-942aa7bc9ed7", "publicationdate": "2022-08-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "MapInfo, ESRI Shape, KML", "type": "dataset", "title": "Urban Development Program - Greenfield Residential Land 2021", "alttitle": "BH2021", "tempextentbegin": "2021-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"47050\", \"uuid\": \"b1135b78-8d5a-50a3-b9c5-942aa7bc9ed7\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-09-29\", \"changeDate\": \"2022-08-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Urban Development Program - Greenfield Residential Land 2021", "abstract": "Identifies undeveloped land for residential development generally on the fringe of the metropolitan area. Each record in the database details the subdivision and planning status of the land, the area of the site in hectares and the potential lot yield. Other details are also records against each site .\n \nThis information maps land areas for both the supply and recent subdivision\n-Unzoned englobo land requiring a PSP\n-Zoned englobo land\n-Proposed lots\n-Lots with a title\n\nUrban Development Program (UDP).", "anzlicid": "ANZVI0803009323", "geonet_info_createdate": "2021-09-29", "revisiondate": "2022-08-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "efcf2aa83dc060345fe60452f3e64a38528e3534", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a94e30f0-c7c7-5ced-b97a-d45c329aa412", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, MapInfo, Non digital - plotted maps", "type": "dataset", "title": "Geological zones of contact metamorphism interpreted from geophysical interpretation (1:250,000) Polygon", "alttitle": "GPCONMETA250_POLYGON", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35317\", \"uuid\": \"a94e30f0-c7c7-5ced-b97a-d45c329aa412\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-29\", \"changeDate\": \"2022-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological zones of contact metamorphism interpreted from geophysical interpretation (1:250,000) Polygon", "abstract": "This dataset displays areas of contact and regional metamorphism, and the style of metamorphism, mapped using using combined interpretations of airborne magnetic, radiometric and gravity survey data at 1:250,000.\n\nAt scales larger than 1:120,000 the display is a combination of both 1:100,000 and 1:250,000 geophysical mapping. Recent 1:250,000 geophysical mapping has been of such quality and detail it has been used to supersede older coincident 1:100,000 mapping. This occurs in the following areas: St Arnaud 7524, Dunolly 7624, Charlton 7525, Wedderburn 7625 and part of Ararat 7423 are superseded by St Arnaud SJ54-4. Bendigo 7724, Heathcote 7824 and Nagambie 7924 are superseded by Bendigo SJ55-1. \n\nBalmoral 7223, Ararat 7423, Horsham SJ54-3 and St Arnaud SJ54-4 supersede Grampians 7323 where there is overlap.\n\nThe Ouyen SI54-15 and Horsham SJ54-3 map areas are datasets derived from a combination of Geological Interpretation of Basement Geophysical Features maps and Geological Interpretation of Post-Cratonic Geophysical Features maps performed by Moore, D. H.\n\nThis data has been collected by the Geological Survey of Victoria. This dataset is accompanied by other datasets representing geological polygons and boundaries, sub-surface geological polygons, structural lines and miscellaneous lines.", "anzlicid": "ANZVI0803003416", "geonet_info_createdate": "2018-03-29", "revisiondate": "2022-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "66f022b86ba9dd4a17c523b87925e935b9235460", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2b74b619-9bce-55f9-8575-64b249ceafb1", "publicationdate": "2022-04-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-04-12", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Shapefile", "type": "dataset", "title": "Bushbank Target Landscapes", "alttitle": "BUSHBANK_TARGET_LANDSCAPES", "tempextentbegin": "2021-11-29T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2022-03-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"47603\", \"uuid\": \"2b74b619-9bce-55f9-8575-64b249ceafb1\", \"schema\": \"iso19115-3\", \"createDate\": \"2022-04-04\", \"changeDate\": \"2022-04-12\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Bushbank Target Landscapes", "abstract": "The Target landscape map ranks locations in Victoria according to their potential to concurrently deliver biodiversity and carbon benefits. A very high rank means that revegetation will deliver very high benefits for carbon and very high benefits for biodiversity. Revegetation in a moderate rank location will deliver at least a moderate benefit for both carbon and biodiversity but may deliver a high or very high benefit for either carbon or biodiversity.\n\nLast revision March 2022", "anzlicid": "ANZVI0803009442", "geonet_info_createdate": "2022-04-04", "revisiondate": "2022-04-12", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4e72b962206a2dfe3e5024e9eaf86ed6bcfdc14b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f1f2d26b-1df0-5bb6-b329-918244e22385", "publicationdate": "2019-11-22", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-11-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Watertable Salinity", "alttitle": "WATERTABLE_SALINITY", "tempextentbegin": "1979-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-03-14T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35321\", \"uuid\": \"f1f2d26b-1df0-5bb6-b329-918244e22385\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-21\", \"changeDate\": \"2019-11-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Watertable Salinity", "abstract": "This dataset comprises watertable salinity for Victoria. Salinity concentration has been mapped in mg/L for Total Dissolved Solids (TDS) using the following classes: <600, 601-1200, 1201-3100, 3101-5400, 5401-7100, 7101-10000, >10000. These classes reflect the beneficial use segments prescribed in the State Environment Protection Policy (Waters) (2018).", "anzlicid": "ANZVI0803004915", "geonet_info_createdate": "2019-11-21", "revisiondate": "2019-11-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7f9e210881326fe52fd6c77b3075f4cad0d217b6", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "77c96843-b2aa-5cfc-a973-ff99575b15fc", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - State Council Polygon 2001", "alttitle": "STATE_COUNCIL_2001", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Victorian Electoral Commission", "tempextentend": "2005-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35322\", \"uuid\": \"77c96843-b2aa-5cfc-a973-ff99575b15fc\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2022-07-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - State Council Polygon 2001", "abstract": "State wide data showing Upper House boundaries and names. These are the Legislative Council Electoral Boundaries referred to as the Upper House Boundaries .\nElectoral Boundaries are defined under the requirements of the Electoral Boundaries Commission Act 1982.\n\nSUPERSESED dataset by VMADMIN_STATE_COUNCIL_2005", "anzlicid": "ANZVI0803002625", "geonet_info_createdate": "2019-09-04", "revisiondate": "2022-07-14", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9713753f6b0d63ef703e2ae23506c5fc567c763a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "730b4c03-38e2-554c-b8a0-8ce4041c6a54", "publicationdate": "2022-08-31", "publishedforgroup": "12264;0", "geonet_info_changedate": "2022-04-11", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Forest Management Zones Update Layer", "alttitle": "FMZ_UPDATE", "tempextentbegin": "1987-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:11:19+00:00", "maintenanceandupdatefrequency_text": "Quarterly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"47623\", \"uuid\": \"730b4c03-38e2-554c-b8a0-8ce4041c6a54\", \"schema\": \"iso19115-3\", \"createDate\": \"2022-04-11\", \"changeDate\": \"2022-04-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Forest Management Zones Update Layer", "abstract": "Forest management planning (FMP) in Victoria aims to attain a balance between economics, conservation, and social values in managing the States forests. This may be achieved by integrated planning for multiple-use with effective public participation. The FMP process results in a zoning scheme which divides state forest into zones which can be managed for specific purposes, such as conservation or timber harvesting, whilst maintaining an overall balance between uses, and assuring the forest resource is managed sustainably. Please refer to the 'Coverage' section of the 'Quality' page for an explanation of area differences between FMZ 100 and the published Forest Management Plans.", "anzlicid": "ANZVI0803009448", "geonet_info_createdate": "2022-04-11", "revisiondate": "2022-04-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "79646390a9ba4a8731a83b5e20775c5a4c3359a1", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "61277d0e-9e40-5ec7-b69e-2d441aeaff71", "publicationdate": "2022-04-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-06-06", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital format", "type": "dataset", "title": "Fuel Hazard Management Units", "alttitle": "FUEL_HAZ_MGT_UNITS", "tempextentbegin": "2022-04-19T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2022-04-19T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;farming;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"47651\", \"uuid\": \"61277d0e-9e40-5ec7-b69e-2d441aeaff71\", \"schema\": \"iso19115-3\", \"createDate\": \"2022-04-20\", \"changeDate\": \"2022-06-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Fuel Hazard Management Units", "abstract": "This layer represents polygon boundaries that define the Fuel Hazard Management Units to calculate compliance with the 'Fuel Hazard in Fire Management Zones' provisions of the Code of Practice for Timber Production 2014 (as amended from time to time) (the Code).\nThe definition provided in the Code (Amended 2022) is: 'fuel hazard management unit' means an area of land of that description shown in the spatial information in the Fuel Hazard Management layer in the Victorian Spatial Data Library, published by the Secretary or delegate. A fuel hazard management unit typically encompasses several fire management zones across a broader landscape, region or district.", "anzlicid": "ANZVI0803009453", "geonet_info_createdate": "2022-04-20", "revisiondate": "2022-06-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f98b40ee839bb688674d6d7d00ddf0e6022fa50a", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "86aefed7-30e4-5dfe-aed2-eb42b586e6d8", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats available: \u00b7 MapInfo \u00b7 ESRI 'SHAPE' files \u00b7 DXF File \u00b7 Intergraph.DGN \u00b7 DWG (AutoCAD)", "type": "nonGeographicDataset", "title": "Planning scheme ordinance Victorian Planning Provisions Links", "alttitle": "PLAN_ORDINANCE_VPP_LGA_URL", "tempextentbegin": "2022-05-05T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:11:21+00:00", "maintenanceandupdatefrequency_text": "Weekly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"47688\", \"uuid\": \"86aefed7-30e4-5dfe-aed2-eb42b586e6d8\", \"schema\": \"iso19115-3\", \"createDate\": \"2022-05-06\", \"changeDate\": \"2022-09-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Planning scheme ordinance Victorian Planning Provisions Links", "abstract": "This dataset Victorian Planning Provisions Ordinance links contains URL links to Planning Scheme Ordinance representing zone and overlay controls for all Victorian planning schemes. This data contains an additional LGA (LGA_CODE) attribute to enable access to the new format html planning scheme ordinance web pages.\n\nThis layer is attributed with:\n- scheme code\n- zone number\n- zone code\n- LGA name\n- LGA code\n-URL", "anzlicid": "ANZVI0803009457", "geonet_info_createdate": "2022-05-06", "revisiondate": "2022-09-08", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "477c696d63d50d74d29c28e2fb5698c1c1ba0f0d", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5cfb1304-471e-51ef-a382-fd156dd51840", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Bank Condition Reach Summary Table", "alttitle": "ISC2010_BANK_CONDITION_R", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35292\", \"uuid\": \"5cfb1304-471e-51ef-a382-fd156dd51840\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Bank Condition Reach Summary Table", "abstract": "The ISC2010_BANK_CONDITION_R table is the Statistical Summary table for the Bank Condition Metric at the Reach level. The Bank Condition Metric is an assessment of the proportion of the bank face that is eroding above expected rates.\n\nThe ISC2010_BANK_CONDITION_R table is designed to JOIN to the ISC2010_RIVER_CENTRELINES_R feature class.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005127", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8d5a74fe1a314e33302a784041f9a64f72e71215", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f2f59e8e-fce4-5c57-9af9-0c505a057dd2", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Fire Severity Classes for Caledonia & Thurra Fire in 1998", "alttitle": "FIRE_SEV98", "tempextentbegin": "2023-01-24T00:11:15+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:11:15+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35312\", \"uuid\": \"f2f59e8e-fce4-5c57-9af9-0c505a057dd2\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-10\", \"changeDate\": \"2022-02-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Fire Severity Classes for Caledonia & Thurra Fire in 1998", "abstract": "Fire Severity Classes for Caledonia & Thurra Fire in 1998 interpretted from Aerial photographs", "anzlicid": "ANZVI0803003208", "geonet_info_createdate": "2020-02-10", "revisiondate": "2022-02-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "151e49ffc467dcd55996ef24dfb7d2c000deddf6", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "6b01395c-34f4-5ab1-ba8c-3963c3dd9409", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-11", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Spatial Vision Mapbook Pagegrid 1:15,000 Edition 5", "alttitle": "MAPBOOK_PAGEGRID_15_ED5", "tempextentbegin": "2016-07-14T14:00:00+00:00", "resowner": "Spatial Vision Pty Ltd", "tempextentend": "2016-07-14T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Biannually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"47184\", \"uuid\": \"6b01395c-34f4-5ab1-ba8c-3963c3dd9409\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-11-11\", \"changeDate\": \"2021-11-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Spatial Vision Mapbook Pagegrid 1:15,000 Edition 5", "abstract": "This dataset is derived from the Mapbook directory and contains the pagegrid for the 1:15 000 Bendigo & Ballarat maps.", "anzlicid": "ANZVI0803009369", "geonet_info_createdate": "2021-11-11", "revisiondate": "2021-11-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f51ce6e1fb674d5a3711951cdf44424b76754a16", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "a6e3fd0f-018d-5ff1-ba4f-b9ea35f309eb", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-11", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Spatial Vision Mapbook Pagegrid 1:20,000 Edition 6", "alttitle": "MAPBOOK_PAGEGRID_20_ED6", "tempextentbegin": "2018-11-26T13:00:00+00:00", "resowner": "Spatial Vision Pty Ltd", "tempextentend": "2018-11-26T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Biannually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35257\", \"uuid\": \"a6e3fd0f-018d-5ff1-ba4f-b9ea35f309eb\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-05-20\", \"changeDate\": \"2021-11-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Spatial Vision Mapbook Pagegrid 1:20,000 Edition 6", "abstract": "This dataset is derived from the Mapbook directory and contains the pagegrid for the 1:20 000 town maps.", "anzlicid": "ANZVI0803004608", "geonet_info_createdate": "2013-05-20", "revisiondate": "2021-11-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "93641ae40edd6aec121034d7c52e6cb9c860408d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "8875ff1c-c528-5b90-a702-628819b1fc70", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-11", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Spatial Vision Mapbook Index 1:100,000 Edition 4", "alttitle": "MAPBOOK_MAPINDEX_100_ED4", "tempextentbegin": "2014-10-08T13:00:00+00:00", "resowner": "Spatial Vision Pty Ltd", "tempextentend": "2014-10-08T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Biannually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"47186\", \"uuid\": \"8875ff1c-c528-5b90-a702-628819b1fc70\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-11-11\", \"changeDate\": \"2021-11-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Spatial Vision Mapbook Index 1:100,000 Edition 4", "abstract": "This dataset is derived from the Mapbook directory and contains the map index for the 1:100 000 regional maps.", "anzlicid": "ANZVI0803009340", "geonet_info_createdate": "2021-11-11", "revisiondate": "2021-11-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "57f890a95c4ad87ac3086540075c8dc833f5af7b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9e54986c-a7a0-5a4d-a410-a0f20c92185f", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-11", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Spatial Vision Mapbook Index 1:150,000 Edition 3", "alttitle": "MAPBOOK_MAPINDEX_150_ED3", "tempextentbegin": "2012-08-13T14:00:00+00:00", "resowner": "Spatial Vision Pty Ltd", "tempextentend": "2012-08-13T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Biannually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"47189\", \"uuid\": \"9e54986c-a7a0-5a4d-a410-a0f20c92185f\", \"schema\": \"iso19115-3\", \"createDate\": \"2021-11-11\", \"changeDate\": \"2021-11-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Spatial Vision Mapbook Index 1:150,000 Edition 3", "abstract": "This dataset is derived from the Mapbook directory and contains the map index for the 1:150 000 Wilsons Promontory maps.", "anzlicid": "ANZVI0803009345", "geonet_info_createdate": "2021-11-11", "revisiondate": "2021-11-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}]} \ No newline at end of file +{"nhits": 999, "parameters": {"dataset": "datashare-metadata", "rows": 100, "start": 1, "format": "json", "timezone": "UTC"}, "records": [{"datasetid": "datashare-metadata", "recordid": "a0a381abc1d5bdd495a5362ec2e301947ce557e8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "15c008e0-5d2f-574c-bb21-3241b4d94214", "publicationdate": "2019-11-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "MapInfo, ESRI Shape", "type": "dataset", "title": "Urban Development Program - Proposed Industrial Areas 2018", "alttitle": "IND2018_PROPOSED_AREAS", "tempextentbegin": "2018-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2018-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35627\", \"uuid\": \"15c008e0-5d2f-574c-bb21-3241b4d94214\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-10-22\", \"changeDate\": \"2022-08-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Urban Development Program - Proposed Industrial Areas 2018", "abstract": "Land identified as future industrial areas. Used in conjunction with Industrial land dataset.\nUrban Development Program (UDP).", "anzlicid": "ANZVI0803008565", "geonet_info_createdate": "2019-10-22", "revisiondate": "2022-08-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "06ec758f53ad644bbb0123336d8d00ea58afa6cc", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "81726131-7c8d-52b9-a243-d6a8429966e2", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Victorian Land Cover Time Series", "alttitle": "VIC_LANDCOVER_TS", "tempextentbegin": "1986-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41525\", \"uuid\": \"81726131-7c8d-52b9-a243-d6a8429966e2\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-07-22\", \"changeDate\": \"2021-07-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Land Cover Time Series", "abstract": "The Victorian Land Cover Time Series provides a consistent through time, whole-of-state, spatial land cover data set for 7 epochs (1987-1990, 1990-1995, 1995-2000, 2000-2005, 2005-2010, 2010-2015 and 2015-19). The dataset uses Landsat satellite imagery and local calibration (or training) data. The most likely layers (one for each epoch) classify each pixel in to one of 19 land cover classes. The dataset provides additional evidence for use alongside other South Australian mapping products to measure and map native and non-native land cover types (although land cover types delineated are different between States).", "anzlicid": "ANZVI0803005976", "geonet_info_createdate": "2020-07-22", "revisiondate": "2021-07-14", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b1dc1e6ca03634955a7cdf5b3b1b5bc5fe6ac56a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "76663b0e-369f-5369-aed7-c6dc52482850", "publicationdate": "2020-08-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-08-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats available:", "type": "dataset", "title": "Melbourne Industrial and Commercial Land Use Plan - Industrial Aug2020", "alttitle": "MICLUP_INDUSTRIAL_AUG2020", "tempextentbegin": "2020-08-02T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:01:58+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41526\", \"uuid\": \"76663b0e-369f-5369-aed7-c6dc52482850\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-08-05\", \"changeDate\": \"2020-08-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Melbourne Industrial and Commercial Land Use Plan - Industrial Aug2020", "abstract": "This data has been developed as a part of the Melbourne Industrial and Commercial Land Use Plan (MICLUP) and represents the spatial extent of industrial and commercial land identified in that plan for metropolitan Melbourne.\n\nThis dataset represents the spatial extent of existing and future industrial land in metropolitan Melbourne. The layer stores details of the precinct name (where known), metropolitan region, local government area, status (existing or future) and classification as identified in MICLUP.\n\nDatasets in the series are listed below. See their metadata entries for more detailed metadata. There are three separate dataset layers as follows: \nCommercial land - existing; \nCommercial land - future; \nIndustrial land - future and existing.\n\nThe layers store details of Metropolitan Region, Local Government Area, MICLUP classification and, depending on the layer, a range of other information relating to land area or floorspace area for each precinct identified in the MICLUP may also be included.\n\nNOTE: The industrial dataset was updated in August 2020 to correct an error in relation to state-significant industrial precincts in the vicinity of Beveridge and Officer-Pakenham.", "anzlicid": "ANZVI0803008677", "geonet_info_createdate": "2020-08-05", "revisiondate": "2020-08-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bdec5c9e7255c74c6ae069baedb7fca12a4d304a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "346c9317-f727-568f-94af-da47ba6826bf", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2011-09-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "Township Protection Plan Extents", "alttitle": "TPP_EXTENTS", "tempextentbegin": "2023-01-24T00:01:59+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:01:59+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35635\", \"uuid\": \"346c9317-f727-568f-94af-da47ba6826bf\", \"schema\": \"iso19115-3\", \"createDate\": \"2011-09-06\", \"changeDate\": \"2011-09-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Township Protection Plan Extents", "abstract": "This dataset defines the extent of Township Protection Plans prepared by the Country Fire Authority.", "anzlicid": "ANZVI0803004110", "geonet_info_createdate": "2011-09-06", "revisiondate": "2011-09-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d0378b89d4203bd2b26504e5cc060293ccd98a0a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "a9c95992-c656-5d96-9b6c-c8a58b2b9466", "publicationdate": "2020-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-01-15", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Emergency Water Supply Points", "alttitle": "EWSP", "tempextentbegin": "2000-09-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:02+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41539\", \"uuid\": \"a9c95992-c656-5d96-9b6c-c8a58b2b9466\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-01-15\", \"changeDate\": \"2020-01-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Emergency Water Supply Points", "abstract": "Victoria has a network of about 300 emergency water supply points (EWSPs). The EWSPs provide water carting for emergency stock and domestic purposes, during severe dry seasonal conditions and surface water scarcity. Some sites are also equipped to supply water to firefighting vehicles. \n\nThe Department of Environment, Land, Water and Planning (DELWP) oversees the network of emergency water supply points.\n\nThe EWSPs are managed by various state agencies, including local councils and urban and rural water corporations. These state agencies are referred to as the EWSP Manager for maintenance, access and use issues, and for further information.\n\nThere are three main types of EWSPs accessible to the public for water carting:\n- Council bores - access groundwater.\n- Urban standpipes - are connected to reticulated potable water systems. These are managed by urban water corporations and access is subject to water availability. A permit may be needed and costs may apply as they are considered a commercial use.\n- Rural standpipes - access channels or reservoirs. These are managed by rural water corporations", "anzlicid": "ANZVI0803005775", "geonet_info_createdate": "2020-01-15", "revisiondate": "2020-01-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e2de8f880fcece8072b3a92454ae1eff80513992", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "084a5409-0bcf-5929-be8d-28197f8169ad", "publicationdate": "2022-12-06", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-04-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Apiary Buffer Zones", "alttitle": "APIARY_BUFF", "tempextentbegin": "2009-11-03T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:01:53+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35613\", \"uuid\": \"084a5409-0bcf-5929-be8d-28197f8169ad\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-06-15\", \"changeDate\": \"2022-04-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Apiary Buffer Zones", "abstract": "This layer is derived from the APIARY layer and defines the buffer zones around CLM Apiary sites in Victoria, based on whether the site is permanent or temporary. There is one zone for each apiary site.", "anzlicid": "ANZVI0803003718", "geonet_info_createdate": "2020-06-15", "revisiondate": "2022-04-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1dc4bb14ba21d1b0390e345fead6d4e545271950", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "b12b43d2-7b1a-52b3-ba63-59fdaaefaf22", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Feature Type Table - Land Administration Themes (Lat)", "alttitle": "FEATURE_TYPE_LAT", "tempextentbegin": "2023-01-24T00:02:05+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:05+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35651\", \"uuid\": \"b12b43d2-7b1a-52b3-ba63-59fdaaefaf22\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Feature Type Table - Land Administration Themes (Lat)", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003224", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "faa86d1a1927fbacc1c7751024c4951a638eb863", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "11208266-a050-5905-8ac6-86da0fd82f7c", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-11-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital: ArcView, ArcInfo & MapInfo", "type": "dataset", "title": "Victorian Coal Sub Crop Regions", "alttitle": "COALINVSCROP", "tempextentbegin": "2007-02-06T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2023-01-24T00:02:05+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35652\", \"uuid\": \"11208266-a050-5905-8ac6-86da0fd82f7c\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-09\", \"changeDate\": \"2015-11-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Coal Sub Crop Regions", "abstract": "Details the location and attributes of coal subcrops in Victoria.\nSpatial accuracy defined as attribute \"Loc_Acc\"\n\nData is from the \"Victorian Coal - A 2006 Inventory of Resources\"\nAvailable via the online store\nOn Line store", "anzlicid": "ANZVI0803003499", "geonet_info_createdate": "2015-11-09", "revisiondate": "2015-11-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b933054fa170750e00b74d8b600975f11909783a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "aa060c26-645a-5ca9-899f-e2ca8fb1e694", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-01-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - Fire Rescue Victoria (FRV) Region Polygon", "alttitle": "FRV_REGION", "tempextentbegin": "2020-06-30T14:00:00+00:00", "resowner": "Fire Rescue Victoria;Fire Rescue Victoria", "tempextentend": "2023-01-24T00:02:06+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41697\", \"uuid\": \"aa060c26-645a-5ca9-899f-e2ca8fb1e694\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-09-11\", \"changeDate\": \"2022-01-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - Fire Rescue Victoria (FRV) Region Polygon", "abstract": "Part of the Vicmap Admin dataset series. This layer contains polygon features delineating the current Fire Rescue Victoria Region Boundaries.\n\nPolygon features demonstrating FRV's two administrative regions. FRV Regions are a parent-group to FRV Districts.\n\nThis data is current as of 1 Dec 2021.", "anzlicid": "ANZVI0803008686", "geonet_info_createdate": "2020-09-11", "revisiondate": "2022-01-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1aa7833a7de0d3a1feb4b041e666f4c7bb38eb7f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7b4e8b68-7803-5844-8b12-4edda539cb4d", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-18", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Geotiff", "type": "dataset", "title": "Fire severity map of the major fires in Gippsland and north east Victoria in 2019/20 (version 1.0)", "alttitle": "BUSHFIRE_SEVERITY_EAST_AND_NORTHEAST_VICTORIA_2019-20", "tempextentbegin": "2019-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2019-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota;farming;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41497\", \"uuid\": \"7b4e8b68-7803-5844-8b12-4edda539cb4d\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-04-27\", \"changeDate\": \"2022-02-18\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Fire severity map of the major fires in Gippsland and north east Victoria in 2019/20 (version 1.0)", "abstract": "Fire severity classification of bushfires (wildfires) impacting ~1.5 million hectares of predominantly forested public land in eastern and north-eastern Victoria (and ~300,000 ha of southern NSW), between November 2019 and March 2020. Fire severity mapping was derived using machine learning classification (Random forests) of eight Spectral Indices (SI) from pre and post fire Sentinel 2 satellite imagery. The fire severity classification model was trained using high resolution (<35 cm) post-fire near-infrared aerial imagery from 12 bushfires which occurred during the 2018/2019 fire season across areas of Central and Eastern Victoria. A detailed description of the classification methodology can be found in Collins et al. (2018). The classification covers woody vegetation landcover types (including native and non-native forest, woodland and shrubland).\nThe primary purpose of this data to provide rapid and comprehensive landscape-scale spatial information about bushfire severity to inform initial risk assessments on the public land in the actual and potential impact zone. This assists with the transition from response to emergency stabilisation and initial recovery in accordance with the Code of Practice for Bushfire Management on Public Land (2012).\nFire severity classes are i) Canopy burnt (Class 6)- CB (> 20% canopy foliage consumed); ii) High canopy scorch (5) - HCS (>80% of canopy foliage is scorched); Medium canopy scorch (4) - MCS (Canopy is a mosaic of both unburnt and scorched foliage, 20 - 80%); iii) Low canopy scorch (3) - LCS (Canopy foliage is largely unaffected (<20% scorched), but the understorey has been burnt); iv) Unburnt (2) - UB (Canopy and understorey foliage are largely (>90%) unburnt). Additional classes: v) No Data (0) (e.g. due to obscuration by cloud, cloud-shadow and/or smoke and haze) and vi) Non-woody vegetation (unclassified) (1). \nAn independent cross-validation of the classification model was used to estimate global and per-class model accuracy. Overall accuracy is estimated to be 85% (0.81 Kappa), with producer per-class accuracy ranging from 97% (CB), 91% (HCS), 88% (UB), 75% (LCS) and 61% (MCS). A ground-based validation of the classification has not been undertaken. \nData is provided on the basis that users undertake responsibility for assessing the relevance and accuracy of its content. The Department of Environment, Land, Water and Planning, on behalf of the Victorian Government, makes no representations, either expressed or implied, as to the suitability of this data for any particular purpose.\nWe do not accept any liability to any person:\n- for the information, data or advice (or the use of such information, data or advice) which is provided or incorporated into it by reference\n- for any interference with or damage to a user's computer, software or data occurring in connection with or relating to this data or its use\nRelated research can be found in L. Collins, P. Griffioen, G. Newell, A. Mellor (2018), The utility of Random Forests for wildfire severity mapping, Remote Sensing of Environment, 216, 374-384", "anzlicid": "ANZVI0803008638", "geonet_info_createdate": "2020-04-27", "revisiondate": "2022-02-18", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bcae6faf4246195675d4b5a40b5a233c9551c179", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6ff1225f-28e6-5c9f-ad68-30110c645a6f", "publicationdate": "2019-12-07", "publishedforgroup": "12264;0", "geonet_info_changedate": "2020-02-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital format", "type": "dataset", "title": "Immediate Protection Areas IPA", "alttitle": "IMMEDIATE_PROTECTION_AREAS", "tempextentbegin": "2019-11-20T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2019-11-20T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41500\", \"uuid\": \"6ff1225f-28e6-5c9f-ad68-30110c645a6f\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-13\", \"changeDate\": \"2020-02-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Immediate Protection Areas IPA", "abstract": "This layer represents polygon coverage of immediate protection areas announced under the Victorian Forestry Plan and updated on 21 November 2019. The Immediate Protection Area (IPA) responds to a new conservation measure described within the Flora and Fauna Guarantee (FFG) Action Statement for the Greater Glider and indicates areas of State Forest (including existing Special Protection Zone, Special Management Zone and General Management Zone) and other public land areas where timber harvesting operations are to be excluded.", "anzlicid": "ANZVI0803008620", "geonet_info_createdate": "2020-02-13", "revisiondate": "2020-02-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2190f356007701828487d79ac6219ef1df34ffae", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8867727d-36e5-5529-9807-3e93c58d4c48", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-06-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Chloride Sampled GMS Bore Locations", "alttitle": "GW_BORES_CL", "tempextentbegin": "2011-08-01T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-03-02T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33622\", \"uuid\": \"8867727d-36e5-5529-9807-3e93c58d4c48\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-06-21\", \"changeDate\": \"2013-06-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Chloride Sampled GMS Bore Locations", "abstract": "This dataset contains information for boreholes that record groundwater chloride concentration levels sourced from the Victorian Groundwater Management System (GMS). It could be used in conjuction with the chloride deposition in rainfall dataset (developed by the CSIRO) to undertake a mass balance analysis to derive groundwater recharge.", "anzlicid": "ANZVI0803004933", "geonet_info_createdate": "2013-06-21", "revisiondate": "2013-06-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d5d84fd0ff30034a7e826d9757a0d6934c3eb3fb", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "e5456012-837b-5982-8f04-b05e01f7c08b", "publicationdate": "2018-01-23", "publishedforgroup": "12264;0", "geonet_info_changedate": "2015-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL: Standard GIS Vector layers", "type": "dataset", "title": "Port Phillip Bay seagrass mapping at nine aerial assessment regions in April 2008", "alttitle": "SEAGRASS_PPB_9REGIONS_APRIL08", "tempextentbegin": "2008-04-19T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2008-08-11T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;farming;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33624\", \"uuid\": \"e5456012-837b-5982-8f04-b05e01f7c08b\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-25\", \"changeDate\": \"2015-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Port Phillip Bay seagrass mapping at nine aerial assessment regions in April 2008", "abstract": "This polygon layer represents seagrass habitat at nine regions in Port Phillip Bay in April 2008 mapped from aerial photography. The mapping was undertaken for the Baywide Seagrass Monitoring Program (CDP_ENV_MD_022 Rev5 - Port of Melbourne Corporation, 2010). The program is being undertaken for the Port of Melbourne Corporation as part of Baywide Monitoring to support the Channel Deepening Project.", "anzlicid": "ANZVI0803004651", "geonet_info_createdate": "2015-11-25", "revisiondate": "2015-11-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2da69894823c13b2c741cf276ce7d8585f72ed0f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "957d76d0-8637-59c8-9b30-ea5bd0df272f", "publicationdate": "2018-10-30", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-31", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Designated Water Supply Catchments", "alttitle": "PWSC100", "tempextentbegin": "1991-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:37+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33715\", \"uuid\": \"957d76d0-8637-59c8-9b30-ea5bd0df272f\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-14\", \"changeDate\": \"2021-08-31\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Designated Water Supply Catchments", "abstract": "Formerly Proclaimed Water Supply Catchments.\nDomestic Water Supply Catchments as proclaimed under the Soil Conservation and Land Utilization Act, 1958 in conjunction with the Land Conservation Act, 1970. This layer identifies domestic Water Supply Catchments that are subject to a Land Use Determination or a Land Use Notice.", "anzlicid": "ANZVI0803001039", "geonet_info_createdate": "2017-03-14", "revisiondate": "2021-08-31", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "df2e8be448d6a60df84cc424fca5fcb1cf09a2ef", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0738854a-a44b-5ace-9e83-61cf4e51996e", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-02-09", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, MapInfo, Non digital - plotted maps", "type": "dataset", "title": "Geophysical Miscellaneous lines (1:100,000), Geophysical Interpretation of other linear geological features", "alttitle": "GPMISCL100", "tempextentbegin": "1994-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33720\", \"uuid\": \"0738854a-a44b-5ace-9e83-61cf4e51996e\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-02-09\", \"changeDate\": \"2016-02-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geophysical Miscellaneous lines (1:100,000), Geophysical Interpretation of other linear geological features", "abstract": "This dataset displays miscellaneous geological line data not covered by the other geophysical datasets.\n\nAt scales larger than 1:120,000 the display is a combination of both 1:100,000 and 1:250,000 geophysical mapping. Recent 1:250,000 geophysical mapping has been of such quality and detail it has been used to supersede older coincident 1:100,000 mapping. This occurs in the following areas: St Arnaud 7524, Dunolly 7624, Charlton 7525, Wedderburn 7625 and part of Ararat 7423 are superseded by St Arnaud SJ54-4. Bendigo 7724, Heathcote 7824 and Nagambie 7924 are superseded by Bendigo SJ55-1. \n\nBalmoral 7223, Ararat 7423, Horsham SJ54-3 and St Arnaud SJ54-4 supersede Grampians 7323 where there is overlap.\n\nThis data has been collected by the Geological Survey of Victoria. This dataset is accompanied by other datasets representing geological polygons and boundaries, sub-surface geological polygons, structural lines and metamorphism.", "anzlicid": "ANZVI0803002669", "geonet_info_createdate": "2016-02-09", "revisiondate": "2016-02-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2efd1673d2e085ee2d14655c611d9f11c2d09e2b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "a42f0610-229d-5642-ae05-a6f2006e12f7", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - Victorian Government Region Polygon Aligned to Property", "alttitle": "VICGOV_REGION", "tempextentbegin": "2005-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:39+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35763\", \"uuid\": \"a42f0610-229d-5642-ae05-a6f2006e12f7\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - Victorian Government Region Polygon Aligned to Property", "abstract": "Part of the Vicmap Admin dataset series. \n\nThis dataset contains the Victorian Government Regional Departmental Boundaries as defined by Local Government Victoria, Dept. of Planning & Community Development (DPCD). There are eight regions.\n\nAligned to Vicmap Property.", "anzlicid": "ANZVI0803003034", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "527a19891d8ca35b68d49e6ade392184da07d2ce", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d6f410a9-57a4-5414-9c22-0360328a02ef", "publicationdate": "2018-04-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-11-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - Shapefile", "type": "dataset", "title": "Geological units represented as two dimensional polygons (1:250,000)", "alttitle": "SG_GEOLOGICAL_UNIT_250K", "tempextentbegin": "2005-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2014-08-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33676\", \"uuid\": \"d6f410a9-57a4-5414-9c22-0360328a02ef\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-11-05\", \"changeDate\": \"2014-11-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological units represented as two dimensional polygons (1:250,000)", "abstract": "This dataset contains primary geological data, namely outcropping/sub-cropping geological rock units and boundary types separating rock units. Other geological features (e.g. fault or dyke) are included where the feature forms a boundary to rock units. The polygon edges are constructed from the corresponding geological contacts and faults layer\n\nThe data have been collected by the GeoScience Victoria.", "anzlicid": "ANZVI0803004691", "geonet_info_createdate": "2014-11-05", "revisiondate": "2014-11-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f295e619b0f4b678399caf846851077cf6ee54ae", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "df71f7c1-e697-5527-b370-88a8f8f323ab", "publicationdate": "2019-06-29", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-11", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Spatial Vision Mapbook Index 1:20,000 Edition 6", "alttitle": "MAPBOOK_MAPINDEX_20_ED6", "tempextentbegin": "2018-11-26T13:00:00+00:00", "resowner": "Spatial Vision Pty Ltd", "tempextentend": "2018-11-26T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Biannually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35717\", \"uuid\": \"df71f7c1-e697-5527-b370-88a8f8f323ab\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-05-20\", \"changeDate\": \"2021-11-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Spatial Vision Mapbook Index 1:20,000 Edition 6", "abstract": "This dataset is derived from the Mapbook directory and contains the map index for the 1:20 000 town maps.", "anzlicid": "ANZVI0803004603", "geonet_info_createdate": "2013-05-20", "revisiondate": "2021-11-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "19b5caf32384cbce8611f8f73ca16aa1408a0199", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f4173d98-ef98-5690-b9d5-70808fcc3403", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-11-13", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Bass Strait Depth Zone Polygons at 1:250,000", "alttitle": "BATHYMETRY_BASS_STRAIT_POLY", "tempextentbegin": "1995-01-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "1995-03-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33657\", \"uuid\": \"f4173d98-ef98-5690-b9d5-70808fcc3403\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-11-13\", \"changeDate\": \"2014-11-13\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Bass Strait Depth Zone Polygons at 1:250,000", "abstract": "This layer contains polygon features which represent depth zones in Bass Strait.", "anzlicid": "ANZVI0803004017", "geonet_info_createdate": "2014-11-13", "revisiondate": "2014-11-13", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ed2cc7ca74d61dd0283f4a08a30ed4b43af2c486", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "8a7b3226-4721-57a8-bc95-035c7478acc0", "publicationdate": "2022-03-16", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "Aircraft Predetermined Dispatch Boundaries", "alttitle": "CFA_PDD", "tempextentbegin": "2014-09-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2015-09-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;planned", "topiccat": "boundaries;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35695\", \"uuid\": \"8a7b3226-4721-57a8-bc95-035c7478acc0\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-10-26\", \"changeDate\": \"2022-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "limitedDistribution", "defaulttitle": "Aircraft Predetermined Dispatch Boundaries", "abstract": "Boundaries indicating the Predetermined Dispatch Boundaries for Aircraft. This dataset has been updated to represent the boundaries for the 2022 season. \n\nThe CFA_PDD_HARVEST and CFA_PDD_POST_HARVEST datasets have been replaced by this one.", "anzlicid": "ANZVI0803005351", "geonet_info_createdate": "2017-10-26", "revisiondate": "2022-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fb6e29930033b3da606c083436f3b859e34f759f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5528c2ea-cdb1-56ca-aa3f-fff9d8277b99", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats.", "type": "product", "title": "Vicmap Property", "alttitle": "VICMAP_PROPERTY", "tempextentbegin": "2023-01-24T00:02:19+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:19+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35696\", \"uuid\": \"5528c2ea-cdb1-56ca-aa3f-fff9d8277b99\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-07\", \"changeDate\": \"2022-07-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Property", "abstract": "Vicmap Property consists of data representing Victoria's land parcels and properties and is used extensively in Geographic Information Systems (GIS) by the public and private sectors. \n\nVicmap Property Content includes\n \u00b7 Parcel and Property Polygon views;\n \u00b7 Parcel and Property Identifiers - parcel descriptors (including Standard Parcel Identifiers (SPI)), \n Council reference numbers;\n \u00b7 Registered and proposed (All proposals entered prior to July 2002 are non-polygonal and all \n entered post July 2002 are polygonised) parcels;\n \u00b7 Crown and Freehold land differentiation;\n \u00b7 Cadastral Road Casements;\n \u00b7 Easements (Note: all new easements are being captured for the whole State. Previously, only \n easements in the metropolitan area were captured. There is no current program to review and \n capture missing easements);\n \u00b7 Unique Feature Identifiers, date stamps and data quality information.\nSpatial Datasets comprising Vicmap Property are listed below. See their metadata entries for more detailed metadata.\nAnnotation Text - Vicmap Property (ANNOTATION_TEXT);\nCadastral Area Boundary - Vicmap Property (CAD_AREA_BDY);\nEasement - Vicmap Property (EASEMENT)\nCentroid - Vicmap Property (CENTROID);\nParcel View - Vicmap Property (PARCEL_VIEW);\nProperty View - Vicmap Property (PROPERTY_VIEW);\nRoad Casement - Vicmap Property (ROAD_CASEMENT_POLYGON );\nUnconnected Centroid - Vicmap Property (UNCONNECTED_CENTROID);", "anzlicid": "ANZVI0803002683", "geonet_info_createdate": "2017-03-07", "revisiondate": "2022-07-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "b49598ed7d59682bf0c7b9328836160b5f29baf4", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f8bb9033-7c7e-506c-b685-35511abae8c5", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Framework State Table", "alttitle": "FR_STATE", "tempextentbegin": "2023-01-24T00:02:19+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:19+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33661\", \"uuid\": \"f8bb9033-7c7e-506c-b685-35511abae8c5\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Framework State Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003229", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a61b9ecae8dd77f62f88e120ffac9bd53656349b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "7b4879b2-8614-513d-97b9-b736786f872e", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Flood height point data 2012", "alttitle": "HISTORIC_HEIGHT_PT", "tempextentbegin": "1869-12-31T14:20:08+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2012-08-20T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35698\", \"uuid\": \"7b4879b2-8614-513d-97b9-b736786f872e\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-12-12\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Flood height point data 2012", "abstract": "Point features delineating observed and interpreted flood heights, derived from observations during flood events as well as flood mapping projects. The height captured is the height in metres above the AHD of flood levels reached. \nIt shows recorded flood heights from 1870 to 2012. \nIt is used in conjunction with historic flood extents and contours.\n\nThe data is coded with date of observation (actual flood time and date) as much as possible.\n\nNote: \n- This data does NOT represent flood water depth.\n- The Flood Height Points dataset accommodate all available flood height point data, including observed flood heights until 2012. \n- All historical data is included with observed, interpreted and modelled flood height data for each event within the one layer.\n\nA reliability and interpretation methodology can apply to each point.", "anzlicid": "ANZVI0803003625", "geonet_info_createdate": "2018-12-12", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d64bd2f83a84a550d3423d8aa023f2bda3531eca", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0f31e046-c713-5fe8-aa75-5e180b2ae148", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Road Type Table", "alttitle": "ROAD_TYPE", "tempextentbegin": "2023-01-24T00:02:21+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:21+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33667\", \"uuid\": \"0f31e046-c713-5fe8-aa75-5e180b2ae148\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Road Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003160", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4a881a11afb7e1b99e3e30107d1346499cbf7b9e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "50438d3f-636a-5a13-abcf-c67e3d7fad53", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - State Council Polygon 2013", "alttitle": "STATE_COUNCIL_2013", "tempextentbegin": "2005-10-29T14:00:00+00:00", "resowner": "Victorian Electoral Commission", "tempextentend": "2023-01-24T00:02:21+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33668\", \"uuid\": \"50438d3f-636a-5a13-abcf-c67e3d7fad53\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-08-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - State Council Polygon 2013", "abstract": "Statewide data showing Upper House boundaries and names. These are the Legislative Council Electoral boundaries referred to as the Upper House Boundaries. \n\nThese boundaries are the result of the 2012-2013 State Redivision conducted under requirements of the Electoral Boundaries Commission Act 1982. These boundaries will apply at the Victorian State Election in 2014.", "anzlicid": "ANZVI0803005250", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-08-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "fb23647055b12ed0d294add73015dad023e25061", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2a68c769-5237-55bc-8848-e0b12935e732", "publicationdate": "2023-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-10-07", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "type": "dataset", "title": "EPA Victoria Groundwater Quality Restriction Use Zones (GQRUZ) - Location Polygons", "alttitle": "GQRUZ_POLYGON", "tempextentbegin": "1905-11-30T14:00:00+00:00", "resowner": "Environment Protection Authority Victoria", "tempextentend": "2020-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Daily", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;society;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33645\", \"uuid\": \"2a68c769-5237-55bc-8848-e0b12935e732\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-08-15\", \"changeDate\": \"2020-10-07\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "EPA Victoria Groundwater Quality Restriction Use Zones (GQRUZ) - Location Polygons", "abstract": "Groundwater Quality Restricted Use Zones (GQRUZ) are areas where there has been historic groundwater pollution as a result of previous industrial or other activities. These zones have been subject to clean up in line with the relevant environmental standards. However, restrictions remain on what the water can be used for if it is extracted via a groundwater bore.\n\nA GQRUZ remains when attempts have been made to clean up the groundwater at the affected site, but full clean-up was not possible - as it is often difficult to remove 100 per cent of groundwater pollution. It also may be impractical to clean up groundwater to the level needed to restore it to its original condition. EPA then identifies restrictions that should remain on how the water can be used without further treatment.\n\nGQRUZ do not represent a comprehensive list of all sites where groundwater quality may not be suitable for use. Rather, they represent locations where EPA has formally recognised that groundwater is polluted, following site investigations under EPA's environmental audit program. Other sources of information on groundwater quality include EPA's Priority Sites Register, which lists sites which are currently undergoing clean-up under EPA's compliance and enforcement activities.\n\nThis dataset mirrors the GQRUZ data available on EPA's website interaction portal, but may not be up to date due to data transfer processes. For the most up to date data, go to EPA's website interaction portal.", "anzlicid": "ANZVI0803005873", "geonet_info_createdate": "2019-08-15", "revisiondate": "2020-10-07", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8834224fa29769c94a4a73981c1d72bf74e1426c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "9de96197-aacd-5dc7-b952-ca759b8a3e43", "publicationdate": "2017-11-09", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-12-02", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "ESRI Shapefile", "type": "dataset", "title": "Electricity Distribution Boundaries", "alttitle": "ELECTRICITY_DISTRIBUTOR", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35729\", \"uuid\": \"9de96197-aacd-5dc7-b952-ca759b8a3e43\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-11-22\", \"changeDate\": \"2022-12-02\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Electricity Distribution Boundaries", "abstract": "The data outlines the boundaries, on a map, of the five electricity distributors in Victoria. http://www.esc.vic.gov.au/", "anzlicid": "ANZVI0803005805", "geonet_info_createdate": "2017-11-22", "revisiondate": "2022-12-02", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1cd3ec52f53414c272661b3b10670d3ff02b8dab", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "60862af2-e3f7-5372-9e06-2bdc85142f67", "publicationdate": "2021-08-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "PTV Regional Bus Routes", "alttitle": "PTV_REGIONAL_BUS_ROUTE", "tempextentbegin": "2018-02-28T13:00:00+00:00", "resowner": "Department of Transport", "tempextentend": "2023-01-24T00:02:30+00:00", "maintenanceandupdatefrequency_text": "Quarterly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33693\", \"uuid\": \"60862af2-e3f7-5372-9e06-2bdc85142f67\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-02\", \"changeDate\": \"2022-02-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "PTV Regional Bus Routes", "abstract": "This layer depicts a spatial object (polyline) representing regional bus routes. Each polylines represents a unique route variation. Each bus route has attributes that describe route, trip headsign (direction), route length, first/last stop, number of stops and operator name. The data has been generated from the PTV GTFS data with extra attributes from PTV's TransNet database. \nThis dataset does not include V/Line Coach Routes. V/Line Coach routes are included in the dataset PTV_REGIONAL_COACH_ROUTE.\nThis dataset supersedes \"PTV_BUS_ROUTE_REGIONAL\" (which included both regional bus and regional coach routes).\nThis dataset was first loaded into the VSDL in March 2018 and will be updated approximately quarterly.", "anzlicid": "ANZVI0803005845", "geonet_info_createdate": "2018-03-02", "revisiondate": "2022-02-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0da8c6086f447e67325430801d0a2b4d552fb84e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8593a7c5-5977-5ea9-a824-9541536804ad", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-12-05", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Catch and Effort Cells for the Gippsland Lakes fisheries", "alttitle": "CE_GIPPSLAND_LAKES_1998", "tempextentbegin": "2004-02-03T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2004-02-03T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35733\", \"uuid\": \"8593a7c5-5977-5ea9-a824-9541536804ad\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-12-05\", \"changeDate\": \"2016-12-05\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Catch and Effort Cells for the Gippsland Lakes fisheries", "abstract": "This layer features the area cells used to record Catch and Effort data for the Gippsland Lakes commercial fisheries since April 1998. This layer is also used by the Gippsland Lakes and Gippsland Lakes (Mussel Dive) fisheries.", "anzlicid": "ANZVI0803002811", "geonet_info_createdate": "2016-12-05", "revisiondate": "2016-12-05", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "67e3a7bd1e5498731aa5d117ec205cadf172f38e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "82794bd0-771f-5e44-b0ac-e736fce55286", "publicationdate": "2022-07-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-20", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "shapefile ArcSDE", "type": "dataset", "title": "Water Corporations", "alttitle": "WATER_CORP", "tempextentbegin": "2007-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2021-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33695\", \"uuid\": \"82794bd0-771f-5e44-b0ac-e736fce55286\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-04-13\", \"changeDate\": \"2022-07-20\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Water Corporations", "abstract": "Boundaries defining the approximate jurisdiction of the Urban Water Corporations.\nOn 1 July 2021, Greater Western Water was formed by merging Western Water and City West Water.", "anzlicid": "ANZVI0803005824", "geonet_info_createdate": "2018-04-13", "revisiondate": "2022-07-20", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f496cc339b93c2b16f0e42990333c0a1209245d2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0058eda4-7b1e-5681-9758-7adbda8481b1", "publicationdate": "2021-08-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-02-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "PTV Metro Tram Stops", "alttitle": "PTV_METRO_TRAM_STOP", "tempextentbegin": "2018-02-28T13:00:00+00:00", "resowner": "Department of Transport", "tempextentend": "2023-01-24T00:02:32+00:00", "maintenanceandupdatefrequency_text": "Quarterly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35739\", \"uuid\": \"0058eda4-7b1e-5681-9758-7adbda8481b1\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-02\", \"changeDate\": \"2022-02-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "PTV Metro Tram Stops", "abstract": "This layer depicts spatial objects (points) representing metropolitan tram stops. Each tram stop has attributes that describe StopID, StopName, Lat/Long, Ticket Zone and Routes Using Stop. The data has been generated from the PTV GTFS data with extra attributes from PTV's TransNet database. \nThis dataset supersedes \"PTV_TRAM_STOP\" (which included metro and regional stops).\nThis dataset was first loaded into the VSDL in March 2018 and will be updated approximately quarterly.", "anzlicid": "ANZVI0803005856", "geonet_info_createdate": "2018-03-02", "revisiondate": "2022-02-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "407a5de6db5353350b91e451c91f4aebae072a9a", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1d1b5a75-39f8-5f7b-841e-b3b416066943", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-04-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Property - Parcel Polygon associated Display View Polygon Table", "alttitle": "PARCEL_VIEW_DVP", "tempextentbegin": "2023-01-24T00:02:33+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:33+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35743\", \"uuid\": \"1d1b5a75-39f8-5f7b-841e-b3b416066943\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-04-08\", \"changeDate\": \"2014-04-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Property - Parcel Polygon associated Display View Polygon Table", "abstract": "Part of VMPROP, PARCEL_VIEW_DVP is an Aspatial table. \n\nIt is created by comparing the polygons in the PARCEL_VIEW table with the polygons in the DISPLAY_VIEW_POLYGON table. It holds a record for each PFI in the PARCEL_VIEW table, and the DISPLAY column has a value indicating whether the polygon is Inside, Outside, or Both (partly inside and partly outside) a DISPLAY_VIEW_POLYGON polygon.\n\nThis dataset provides a way of limiting the display of parcel_view polygons so maps can be drawn efficiently. Polygons with a DISPLAY value of I (inside) can be drawn at larger scales (eg 1:5000), while those with O (outside) can be drawn at smaller scales (eg. 1:50,000). This means rural areas can be displayed at a suitable scale, without the burden of displaying polygons in a town. A DISPLAY value of B (both) is used for some polygons which can be displayed at both scales. These can be rivers, or multi-part polygons with parts inside and outside the DVP. \n\nTo use this flag for drawing a join is needed - parcel_view.pfi = parcel_view_dvp.parcel_view_pfi", "anzlicid": "ANZVI0803005223", "geonet_info_createdate": "2014-04-08", "revisiondate": "2014-04-08", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e97d60841b1cd35615898083313f5e1ca35d3a0a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "82b46b59-9ce5-5baa-a0cf-2a227d1861ac", "publicationdate": "2018-10-25", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-11-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "2016 Bellarine Peninsula 1% AEP Coastal Inundation Dynamic Model with 0.8m Sea Level Rise", "alttitle": "BP_DYNAMIC_1AEP_080SLR", "tempextentbegin": "2014-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;geoscientific information;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33704\", \"uuid\": \"82b46b59-9ce5-5baa-a0cf-2a227d1861ac\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-10-19\", \"changeDate\": \"2022-11-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2016 Bellarine Peninsula 1% AEP Coastal Inundation Dynamic Model with 0.8m Sea Level Rise", "abstract": "The Bellarine-Corio Bay Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Bellarine-Corio Bay coastal environment.\n\nDynamic inundation modelling was carried out to create this data layer for 1% Annual Exceedance Probability (AEP) coastal inundation under the assumption of 0.8 m Sea Level Rise in 2016, for the following study areas along the coast of the Bellarine Peninsula and Greater Geelong area: Barwon Heads / Lake Connewarre; Breamlea; Newcomb; and Queenscliff / Lakers Cutting.\n\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.\n\nAttribute Information: \nMax_d - Maximum depth (m); \nmax_s - Maximum velocity (m/s); \nmax_vxd - Velocity*Depth Criteria; \nmax_wse - Maximuum water surface elevation (mAHD).", "anzlicid": "ANZVI0803005924", "geonet_info_createdate": "2018-10-19", "revisiondate": "2022-11-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "85a2d9bc1bd14404582d219e56716dafc23f2f8e", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ce04d9e3-22e8-5266-814b-ddde962f724b", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Fragmentation Reach Summary Table", "alttitle": "ISC2010_FRAGMENTATION_R", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33706\", \"uuid\": \"ce04d9e3-22e8-5266-814b-ddde962f724b\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Fragmentation Reach Summary Table", "abstract": "The ISC2010_FRAGMENTATION_R table is the Statistical Summary table for the Fragmentation Metric at the Reach level.\n\nThe ISC2010_FRAGMENTATION_R table is designed to JOIN to the ISC2010_RIVER_CENTRELINES_R feature class.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005129", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "769ce82615de1f5222cf20c8920fc68be7913e1d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "438ecb7f-eb2f-5c44-a625-3a464bbb7f11", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-11-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Regolith Observation Points from field mapping", "alttitle": "REGOLPT", "tempextentbegin": "2001-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2002-03-19T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35746\", \"uuid\": \"438ecb7f-eb2f-5c44-a625-3a464bbb7f11\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-11-29\", \"changeDate\": \"2013-11-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Regolith Observation Points from field mapping", "abstract": "Regolith information derived from field mapping. Includes information on regolith materials, landforms, bedrock lithology, geomorphological processes and environmental hazards for particular field sites.", "anzlicid": "ANZVI0803002598", "geonet_info_createdate": "2013-11-29", "revisiondate": "2013-11-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "53511ad6023e3c82af26a90ba5b47c7e659a49cd", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "23efc056-dbb6-5b0d-ab3a-78dbaaed84ad", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Infrastructure Mine Substance Exracted Table", "alttitle": "IN_MINE_SUBSTANCE_EXTRACTED", "tempextentbegin": "2023-01-24T00:02:35+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:35+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35750\", \"uuid\": \"23efc056-dbb6-5b0d-ab3a-78dbaaed84ad\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Infrastructure Mine Substance Exracted Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003204", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f0b16a06cc38b5cc8b0b8bf8768898e31c6e61ef", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "2cefd40b-c5bb-5989-b9b0-c2843f401958", "publicationdate": "2022-05-19", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Admin - State Council Polygon 2005", "alttitle": "STATE_COUNCIL_2005", "tempextentbegin": "2005-10-29T14:00:00+00:00", "resowner": "Victorian Electoral Commission", "tempextentend": "2023-01-24T00:02:36+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33710\", \"uuid\": \"2cefd40b-c5bb-5989-b9b0-c2843f401958\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-06-06\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Admin - State Council Polygon 2005", "abstract": "State wide data showing Upper House boundaries and names. These are the Legislative Council Electoral Boundaries referred to as the Upper House Boundaries .\nElectoral Boundaries are defined under the requirements of the Electoral Boundaries Commission Act 1982.\nSTATE_COUNCIL_2005 boundaries may contain overlaps and slivers due to maintenance regime. It is the intention that these will be removed over the next 12 months.\n\nSUPERSESED dataset by VMADMIN_STATE_COUNCIL_2013.", "anzlicid": "ANZVI0803003063", "geonet_info_createdate": "2018-06-06", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "56dd2ce4db915b82994abb400865a3029d9b6794", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "11cdc5f0-53bd-52bb-af7c-504e2fa2eb8c", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Remote Sensing Reliability Table", "alttitle": "RS_FEATURE_RELIABILITY", "tempextentbegin": "2023-01-24T00:02:36+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:36+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33712\", \"uuid\": \"11cdc5f0-53bd-52bb-af7c-504e2fa2eb8c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Remote Sensing Reliability Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products. VMREFTAB_REFERENCE_TABLE a defintitve list of Reference Tables belonging to Vicmap Reftab.", "anzlicid": "ANZVI0803003157", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "3792d62242f2af6008ae9f92a528df4ff9318a0d", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9758b6cc-9d46-59d2-a7e8-9dbcdb00027e", "publicationdate": "2022-12-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-09-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo, MapInfo", "type": "dataset", "title": "Restricted and Unavailable Crown Land for Petroleum Operations", "alttitle": "PLM25_PA", "tempextentbegin": "2011-08-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2011-08-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;boundaries;economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35754\", \"uuid\": \"9758b6cc-9d46-59d2-a7e8-9dbcdb00027e\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-19\", \"changeDate\": \"2013-09-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Restricted and Unavailable Crown Land for Petroleum Operations", "abstract": "Land where special permission must be obtained for Petroleum Opertaions\n\nThis layer was developed for land classification for the \nPetroleum Act 1998\n\nThis layer is derived mostly from selections from Public Land Management PLM25. Other sources of data include PLM100_V_MMT_WILDLIFE_MGMT for wildlife reserves, PLM100_V_MMT_HERITAGE_RIVER for heritage rivers, PLM100_V_MMT_NATRL_CATCHMENT for natural catchemnt area , PLM100_V_MMT_REFERENCE_AREAS for reference areas, PLM100_V_MMT_WILDERNESS_ZONE for wilderness zones and VEACREC25_POLYGON for water authority land.\n\nThe dataset PLM25_PA is an amalgamation of features defined by:\nPetroleum Act 1998- SECT 137\nPetroleum Act 1998- SECT 139\nPetroleum Act 1998- SECT 140 and \nNational Parks Act 1975 SECT 40 Part (2)\n\nThe GeoVic3 layers:\nWilderness and Reference (PA s.137)\nRestricted Crown Land (PA s.139)\nWater Authority Land (PA s.140) and\nNational and State Parks (NPA s. 40(2))\n\nare subsets from the layer PLM25_PA\n\nPLM25_PA has captured the following features:\nregional parks\ncoastal parks, including Gippsland Lakes Reserve\nmarine parks\nwildlife reserves including Wildlife Management Co-operative Areas\nwildlife reserves including Wildlife Management Co-operative Areas\nnatural features and scenic reserves including caves and geological reserves\nbushland reserves\nhistoric areas and reserves\npublic land water frontage reserves\nstreamside reserves including River Murray Reserve\ncoastal reserves\nnational heritage parks\nnature conservation reserves\nhistoric and cultural features reserves\nalpine resorts\nheritage rivers\nnatural catchment areas\ncrown land reserves - natural feature reserves\ncrown land reserves - nature conservation reserves\ncrown land reserves - forest parks\nreference areas\nnational parks\nwilderness areas\nstate parks\nwilderness zones\nwater authority land", "anzlicid": "ANZVI0803004566", "geonet_info_createdate": "2013-09-19", "revisiondate": "2013-09-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6bd9d4ee6fb4f0eb81eb005cb9081d2b10c6baff", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "243306da-ecf3-5761-a9b9-0b404baeb0ce", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-03-03", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Features - Geomark Line", "alttitle": "GEOMARK_LINE", "tempextentbegin": "2014-08-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:44+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "utilities communication;inland waters;location;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35777\", \"uuid\": \"243306da-ecf3-5761-a9b9-0b404baeb0ce\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-03-03\", \"changeDate\": \"2016-03-03\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Features - Geomark Line", "abstract": "Linear location of named or 'could be' named Victorian topographic features. Inclusions are rivers, water bodies, transport (excluding roads), geographic features and most of the Vicmap Features of Interest linear content. These features all reside within the Vicmap Framework Products. \nFeatures are combined to create one piece of geometry based on name and type. \nLinear features include transmission lines, chairlifts and pipelines", "anzlicid": "ANZVI0803005316", "geonet_info_createdate": "2016-03-03", "revisiondate": "2016-03-03", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "96b401702f9f6cf50992c9e7b0314eea29984b1b", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "c583273a-67f3-5778-a171-ab7878fd9466", "publicationdate": "2020-11-03", "publishedforgroup": "12264;0", "geonet_info_changedate": "2022-08-15", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Fire Management Zones 2017", "alttitle": "FIREFMZ_2017", "tempextentbegin": "2010-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:45+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "obsolete", "topiccat": "environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"41932\", \"uuid\": \"c583273a-67f3-5778-a171-ab7878fd9466\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-10-22\", \"changeDate\": \"2022-08-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Obsolete", "mdclassification": "limitedDistribution", "defaulttitle": "Fire Management Zones 2017", "abstract": "This dataset is OBSOLETE and has been replaced by FIREFMZ (approved Oct 2020)\nThis layer represents polygon coverage of fire management zones across all the State, generally on Public Land. The Fire Management Zone is an area of land which provides a framework for future Fire Operation Plans and whether fire is suitable for managing public land to provide asset protection, bushfire moderation, landscape management or planned burn exclusion.\n\nDataset last updated 20 April 2017 with changes from WCBRL (per A Boak).\nDataset updated 30 Jan 2017 with changes from ECBRL (per F Wilson).\nDataset updated 19 August 2016 with changes from MMGBRL (per D Prior).", "anzlicid": "ANZVI0803008697", "geonet_info_createdate": "2020-10-22", "revisiondate": "2022-08-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a389b90144c7eb29de7725a8134d66c96bf3d063", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "4b9d8b66-a17f-5765-a24f-b581cbba33b4", "publicationdate": "2019-03-22", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-11-19", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Licensed groundwater bores", "alttitle": "LICENSED_BORES", "tempextentbegin": "1970-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2017-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33741\", \"uuid\": \"4b9d8b66-a17f-5765-a24f-b581cbba33b4\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2019-11-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Licensed groundwater bores", "abstract": "The Water Act, 1989, requires that anoyone wishing to extract groundwater must apply for a groundwater licence. Groundwater licences are issued to protect the rights of licence holders, ensure that water is shared amongst users and to ensure that environmental requirements are protected.\n\nThis dataset is derived from the Victorian Water Register.", "anzlicid": "ANZVI0803005941", "geonet_info_createdate": "2019-11-19", "revisiondate": "2019-11-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f95f530dcc8a207ff7e6f067a9c69d30a1351a57", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6871cdb0-2525-5ccc-b3e4-d6721eebd550", "publicationdate": "2022-09-12", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-04-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Hunting Area Dataset Permitted Duck Hunting", "alttitle": "HUNT25_DUCK", "tempextentbegin": "2018-06-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:46+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33743\", \"uuid\": \"6871cdb0-2525-5ccc-b3e4-d6721eebd550\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-06\", \"changeDate\": \"2022-04-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Hunting Area Dataset Permitted Duck Hunting", "abstract": "This hunting area dataset depicting areas where Duck hunting is permitted, have boundaries largely derived from the PLM25 dataset which are supplemented with additional boundaries based on legislative restrictions on hunting. Dataset identifies the conditions under which hunting of given Game and Pest animal groups and species is permitted.\nThe rules used to produce this produce were developed by the legislation unit with the Land Management Division of the Department of Environment , Land, Water and Planning in consultation with the Game Management Authority, VicPolice, Parks Victoria and other relevant government authorities. These rules are based on requirements in the Forest Act, National Park Act, Crown land (Reserve) Act, Land Act, Wildlife Act.\nNote : Hunters are personally responsible for acting in accordance with the Firearms Act 1996\n(including informing themselves about any prohibited locations within the areas shown on this map)\nand other relevant laws; obtaining the required hunting licence; and for hunting only within season.\nMore information can be obtained from the Game Management Authority's web site.\n\nVicmap Basemap Services | State Government of Victoria | @DELWP", "anzlicid": "ANZVI0803005883", "geonet_info_createdate": "2019-11-06", "revisiondate": "2022-04-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "183bced947343e62422b90d060c3d4b41bae09e6", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5f653af2-980d-5135-926b-529b624d954e", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-11-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Groundwater Management Area Zones", "alttitle": "GMA_ZONE", "tempextentbegin": "2004-09-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-12-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35808\", \"uuid\": \"5f653af2-980d-5135-926b-529b624d954e\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2019-11-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Groundwater Management Area Zones", "abstract": "This layer is used in association with the GMA layer and represents the internal zone boundaries within each GMA (if applicable).", "anzlicid": "ANZVI0803002945", "geonet_info_createdate": "2019-11-19", "revisiondate": "2019-11-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "10eeeef7da91051c135b7553af10f9f46ce63692", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "84ee5909-6d46-5f35-823e-e15b81a56eee", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Road Restrictions Table", "alttitle": "TR_ROAD_RESTRICTIONS", "tempextentbegin": "2023-01-24T00:02:53+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:53+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33768\", \"uuid\": \"84ee5909-6d46-5f35-823e-e15b81a56eee\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Road Restrictions Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003173", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "52fb37506d45be6a3271f3896336ef511f274362", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "b1bb7afc-5ea6-59f1-b780-c20134f1254c", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-02", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "SDE, CGDL", "type": "dataset", "title": "Dryland salinity discharge layer (point and line coverage)", "alttitle": "SOILSAL25_ARC", "tempextentbegin": "1974-12-31T13:00:00+00:00", "resowner": "Department of Primary Industries", "tempextentend": "2004-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Monthly", "locale": "eng", "status": "notobsolete;completed", "topiccat": "farming;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33772\", \"uuid\": \"b1bb7afc-5ea6-59f1-b780-c20134f1254c\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-06-20\", \"changeDate\": \"2022-08-02\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Dryland salinity discharge layer (point and line coverage)", "abstract": "This layer represents a statewide coverage of dryland salinity discharge sites that are either linear or only identified by point locations. Each site has been allocated a dryland salinity rating which indicates the severity of salinity for that site. It is additional to and supplements the SOILSAL25_A layer. The linear discharge sites are often associated with streams.", "anzlicid": "ANZVI0803002206", "geonet_info_createdate": "2014-06-20", "revisiondate": "2022-08-02", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0f9a39ec677b4e4280201e73058f62f8a092c602", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "0d63e274-6074-5ed9-b9ad-17a27d69f99c", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-16", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Simplified Vicmap Transport Road Network", "alttitle": "VM_ROADSIMPLE", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:56+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33778\", \"uuid\": \"0d63e274-6074-5ed9-b9ad-17a27d69f99c\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-03-31\", \"changeDate\": \"2021-08-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Simplified Vicmap Transport Road Network", "abstract": "This is a simplified layer derived from the Vicmap Transport layer - TR_ROAD. The simplification process primarily involves expanding coded attributes and then unsplitting all arcs that have identical attributes. All arcs of the original dataset are retained.\n\nIt is currently situated within the PROVISIONAL schema on Departmental SDE servers.\nRefer to metadata of TR_ROAD for more information.", "anzlicid": "ANZVI0803003100", "geonet_info_createdate": "2016-03-31", "revisiondate": "2021-08-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9ad9779b0fca1b2e2262e4c956a7fdd6e4402973", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "eafba877-3e6c-5e9b-97eb-1f03fb5ed9b8", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Feature Vicmap to Vicnames Feature Type Mapping Table", "alttitle": "FEATURE_VICMAP2VICNAMES", "tempextentbegin": "2023-01-24T00:02:47+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:47+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35787\", \"uuid\": \"eafba877-3e6c-5e9b-97eb-1f03fb5ed9b8\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Feature Vicmap to Vicnames Feature Type Mapping Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003225", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "073448d289f0979f0d5fd0f5f783903e4aa48fa3", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "83768375-c3b9-555b-b98a-4ee9e428322f", "publicationdate": "2018-10-26", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-11-19", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "Upper aquifers hydrograph suites", "alttitle": "SUITES_UPPER_GW", "tempextentbegin": "2012-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2017-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33750\", \"uuid\": \"83768375-c3b9-555b-b98a-4ee9e428322f\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2019-11-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Upper aquifers hydrograph suites", "abstract": "Hydrographs from over 2000 state observation bores were reviewed in order to group bores which have a similar water level trend and are screened in the same aquifer. The groupings of observation bores are referred to as 'suites' and are classified according to the Upper, Middle, Lower and Basement aquifers aligning with the Victorian Aquifer Framework. \n\nBy applying a statistical technical, a normalised hydrograph was developed for each suite using the observed water levels from all bores within the suite. This hydrograph is representative of the groundwater trend within the suite.\n\nA spatial boundary has been created for each suite which encompasses all bores within the suite. The boundaries were manually constructed and cover the extent of the mapped aquifers.", "anzlicid": "ANZVI0803005933", "geonet_info_createdate": "2019-11-19", "revisiondate": "2019-11-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "402a5f1fc6fa5ee6f959d8f32e2fb8582d3f0b43", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "24dfb09b-201b-5656-9e44-4c2f6d55ab98", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2018-03-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Sub-surface Geology - Polygons (1:100,000)", "alttitle": "SGEOL1100_POLYGON", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35796\", \"uuid\": \"24dfb09b-201b-5656-9e44-4c2f6d55ab98\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-29\", \"changeDate\": \"2018-03-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Sub-surface Geology - Polygons (1:100,000)", "abstract": "The data contains sub-surface geological rock units. Multiple datasets may exist over some tiles, numbered as SGEOLn.\n\nThe data have been collected by the Geological Survey of Victoria. The dataset is accompanied by other datasets representing geology outcrop and boundaries, structural lines, miscellaneous lines and points, miscellaneous polygons, metamorphism, and placer deposits.", "anzlicid": "ANZVI0803005580", "geonet_info_createdate": "2018-03-29", "revisiondate": "2018-03-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2e88e47a6ec17173fb2f103aa46e80c4b994d97a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9e7590d4-ec98-5aa4-a251-2d957d3da0c7", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Features - Building Point", "alttitle": "BUILDING_POINT", "tempextentbegin": "2013-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:50+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;location;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35797\", \"uuid\": \"9e7590d4-ec98-5aa4-a251-2d957d3da0c7\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Features - Building Point", "abstract": "Part of the Vicmap Features of Interest Product\nPoint/centroid location of undefined buildings across Victoria that are NOT contained within the following polygon datasets VMFEAT_BUILDING_POLYGON, VMFEAT_PL_PLACE_AREA_POLYGON and where they are not repesented as a feature within the VMFEAT_FOI datasets", "anzlicid": "ANZVI0803004976", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8ffded6353036a17287566218adff8b0872ee761", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ce7ba3a2-7f55-5014-b20a-986890daa069", "publicationdate": "2022-10-22", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Crown Land Tenure - Crown Land Management Tenure Line", "alttitle": "CL_CAD_LINE", "tempextentbegin": "1990-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:03+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33798\", \"uuid\": \"ce7ba3a2-7f55-5014-b20a-986890daa069\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Crown Land Tenure - Crown Land Management Tenure Line", "abstract": "Part of the Vicmap Crown Land Tenure dataset series. This is a statewide dataset that plays a key role in the management of Victoria's Crown land. It has been created (June 2003 - Feb 2004) from migrating LCMP layers into the Vicmap structure.", "anzlicid": "ANZVI0803004570", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5fccdea0e03a5db5a4eb3cba089cac4c48845484", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "353a3185-e77d-5947-9b3a-34d74ceba4d6", "publicationdate": "2019-03-27", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "VAF_EXTENT_111LTA", "alttitle": "VAF_EXTENT_111LTA", "tempextentbegin": "2012-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2013-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33808\", \"uuid\": \"353a3185-e77d-5947-9b3a-34d74ceba4d6\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-19\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "VAF_EXTENT_111LTA", "abstract": "This dataset relates to the Victorian Aquifer Framework (VAF) 3D Surface for the Lower Tertiary Aquifer. It represents the mapped extent of the aquifer.\n\nPlease refer to the master metadata record VAF 'Victorian Aquifer Framework (VAF) 3D Surfaces' for detailed information.", "anzlicid": "ANZVI0803008456", "geonet_info_createdate": "2019-11-19", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a1c790907cb159ea2e05b71dd9b43176a310b451", "fields": {"available_formats": "ECW,GeoTIFF,JPEG,JPEG 2000,TIFF", "resclassification": "unclassified", "uuid": "9ac87cd1-db93-5bac-8a22-b141d0c2991e", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-07-14", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL geotiff", "type": "dataset", "title": "Soil Grids of Victorian - Soil pH (water)", "alttitle": "SOIL_pHw", "tempextentbegin": "1957-12-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2016-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33822\", \"uuid\": \"9ac87cd1-db93-5bac-8a22-b141d0c2991e\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-14\", \"changeDate\": \"2021-07-14\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Soil Grids of Victorian - Soil pH (water)", "abstract": "A set of Digital Soil Maps (mean, 5th and 95th percentile prediction values) of soil pH (of a 1:5 soil water solution) across Victoria in geotiff format. \n\nGrids of key soil properties have been produced for Victoria. These grids, in raster format, provide prediction and confidence interval values for key soil properties at a 90 m grid resolution for six set depths; 0 to 5 cm, 5 to 15 cm, 15 to 30 cm, 30 to 60 cm, 60 to 100 cm and 100 to 200 cm, across Victoria.\n\nThe grids have been designed to meet the specifications created by GlobalSoilMap (www.globalsoilmap.net) to develop and deliver detailed soil information in a consistent form.\n\nThe grids are a spatial interpolation of key soil properties to support modelling and decision making in resource management, agricultural production, land use policy and planning, and in further research such as ecosystem modelling.\n\nThe methodology used to develop the Soil Grids of Victoria has been based on that refined by the Australian Soil and Landscape Grid. Data and knowledge embedded into existing soil related datasets, e.g. soil profile and land mapping collections, have been key inputs. \n\nWhilst the new maps show an immense amount of fine scale detail, and are our best spatially continuous and exhaustive estimates of soil attributes across all of Victoria, they are most appropriately used for assessments of regional to state-wide trends of soil properties and their relationship with their environment and pedogenesis. Care should be taken when using the grids for local assessments and it is recommended that the confidence intervals are included at this scale.", "anzlicid": "ANZVI0803005794", "geonet_info_createdate": "2019-05-14", "revisiondate": "2021-07-14", "spatialrepresentationtype_text": "Grid"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "a0c1338c523c1321b81b021f7997aebf910c7e86", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "86b67bc9-f0bb-533e-a4ec-919c03087fb6", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-03-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital - ArcInfo, ArcView, MapInfo, Non digital - plotted maps", "type": "dataset", "title": "Geological zones of contact metamorphism interpreted from geophysical interpretation (1:250,000) Arc", "alttitle": "GPCONMETA250_ARC", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2006-12-29T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33825\", \"uuid\": \"86b67bc9-f0bb-533e-a4ec-919c03087fb6\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-03-29\", \"changeDate\": \"2022-03-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological zones of contact metamorphism interpreted from geophysical interpretation (1:250,000) Arc", "abstract": "This dataset displays areas of contact and regional metamorphism, and the style of metamorphism, mapped using using combined interpretations of airborne magnetic, radiometric and gravity survey data at 1:250,000.\n\nAt scales larger than 1:120,000 the display is a combination of both 1:100,000 and 1:250,000 geophysical mapping. Recent 1:250,000 geophysical mapping has been of such quality and detail it has been used to supersede older coincident 1:100,000 mapping. This occurs in the following areas: St Arnaud 7524, Dunolly 7624, Charlton 7525, Wedderburn 7625 and part of Ararat 7423 are superseded by St Arnaud SJ54-4. Bendigo 7724, Heathcote 7824 and Nagambie 7924 are superseded by Bendigo SJ55-1. \n\nBalmoral 7223, Ararat 7423, Horsham SJ54-3 and St Arnaud SJ54-4 supersede Grampians 7323 where there is overlap.\n\nThe Ouyen SI54-15 and Horsham SJ54-3 map areas are datasets derived from a combination of Geological Interpretation of Basement Geophysical Features maps and Geological Interpretation of Post-Cratonic Geophysical Features maps performed by Moore, D. H.\n\nThis data has been collected by the Geological Survey of Victoria. This dataset is accompanied by other datasets representing geological polygons and boundaries, sub-surface geological polygons, structural lines and miscellaneous lines.", "anzlicid": "ANZVI0803003419", "geonet_info_createdate": "2018-03-29", "revisiondate": "2022-03-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9dc7e93f488f05c20904843444b7360c15fe87cf", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "3269ab1b-2027-5c97-9048-2bb83341d898", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2012-09-26", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "DPI Wood Utilisation Plan (WUP) and DSE District Action Plan (DAP)", "alttitle": "WUP_CURRENT_FINAL_2012", "tempextentbegin": "2012-06-30T14:00:00+00:00", "resowner": "Department of Primary Industries", "tempextentend": "2023-01-24T00:03:15+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;planned", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33830\", \"uuid\": \"3269ab1b-2027-5c97-9048-2bb83341d898\", \"schema\": \"iso19115-3\", \"createDate\": \"2012-09-26\", \"changeDate\": \"2012-09-26\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "limitedDistribution", "defaulttitle": "DPI Wood Utilisation Plan (WUP) and DSE District Action Plan (DAP)", "abstract": "Wood Utilisation Plan for years 2012/13 to 2013/14 (and 2014/15 in some areas)\n\nWUPs incorporate all commercial timber harvesting activities, domestic firewood and minor produce operations where tree felling is required, associated access roading, and significant stand management operations (including thinning, reforestation and treatment of unmerchantable trees) managed or undertaken by DPI and DSE.\n\nDAPs incorporate forest operations that are classified as Level 1 or Level 2 in accordance with the District Action Planning Guidelines. \n\nWUPs and DAPs may incorporate other operations which involve vegetation disturbance and soil removal as determined by the Level 1 Manager.", "anzlicid": "ANZVI0803004739", "geonet_info_createdate": "2012-09-26", "revisiondate": "2012-09-26", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bf53d3096c1064f072f1fb228e5d81dbb0be873f", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "b88701ed-3ad0-5538-90d7-08e7f3e4150d", "publicationdate": "2019-08-24", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Vicmap Topographic 1:30,000 MGA A3 Map Index", "alttitle": "VICMAP_MAPINDEX_30DA3", "tempextentbegin": "2004-08-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2004-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35882\", \"uuid\": \"b88701ed-3ad0-5538-90d7-08e7f3e4150d\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-01-24\", \"changeDate\": \"2022-07-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Vicmap Topographic 1:30,000 MGA A3 Map Index", "abstract": "1:30 000 format Mapgrid of Australia Mapsheet Boundaries as used for the A3 online topographic maps.", "anzlicid": "ANZVI0803004577", "geonet_info_createdate": "2017-01-24", "revisiondate": "2022-07-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "4389470caa3eb73d313ff8832b9b91e074660edf", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "eefd7226-4ad5-5fa8-bdb4-0383e90afc6f", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-21", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Depth Zone Polygons at 1:250,000", "alttitle": "DEPTH250_ARC", "tempextentbegin": "1995-01-31T13:00:00+00:00", "resowner": "Department of Primary Industries", "tempextentend": "1995-03-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "obsolete", "topiccat": "farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33832\", \"uuid\": \"eefd7226-4ad5-5fa8-bdb4-0383e90afc6f\", \"schema\": \"iso19115-3\", \"createDate\": \"2010-08-26\", \"changeDate\": \"2022-07-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Obsolete", "mdclassification": "limitedDistribution", "defaulttitle": "Depth Zone Polygons at 1:250,000", "abstract": "This layer contains polygon features which represent subtidal relief. Isobaths are linear features which are lines of equal depth that form the boundaries of the polygons.\nThis layer has been replaced by BATHYMETRY_BASS_STRAIT_POLY & BATHYMETRY_BASS_STRAIT_ARC", "anzlicid": "ANZVI0803002015", "geonet_info_createdate": "2010-08-26", "revisiondate": "2022-07-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "eb9505f24884bb3fd4df5acd7c6319bf93c6eab3", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "879872cd-f18d-5ada-9ebd-1e09ffc8c5af", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-01-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Transport - Road Infrastructure and Paper Road Infrastructure Point", "alttitle": "TR_ROAD_INFRASTRUCTURE_ALL", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:02:59+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33787\", \"uuid\": \"879872cd-f18d-5ada-9ebd-1e09ffc8c5af\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2022-01-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Transport - Road Infrastructure and Paper Road Infrastructure Point", "abstract": "This layer is a superset of the Vicmap Transport TR_ROAD_INFRASTRUCTURE dataset.\n\nTR_ROAD_INFRASTRUCTURE delineates road infrastructure features including bridges, tunnels, gates, cattle grids, barrirers, level crossings, roundabouts and intersections. In addition, this dataset includes paper road nodes (feature_type_code = 'paper_node').\n\nPaper roads exist only on paper, such as a plan of subdivision, and are unlikely to be ever built due to planning restrictions. However, some councils hold addresses and property information against these paper roads.\n\nPaper nodes have been created to conform with the Vicmap Transport business rules and are of no interest to almost all customers.\n\nMost users needs will be met by the TR_ROAD_INFRASTRUCTURE dataset.", "anzlicid": "ANZVI0803004909", "geonet_info_createdate": "2019-09-04", "revisiondate": "2022-01-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "f3aa6006117534d00588221c7c376aac49f607e7", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9fef15cb-1254-5de7-b83a-685c83fc5704", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2011-07-22", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL", "type": "dataset", "title": "Sensitive ridgelines within the East Gippsland Forest Management Area", "alttitle": "EG_SENSITIVE_RIDGELINES", "tempextentbegin": "2006-01-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2006-01-31T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35830\", \"uuid\": \"9fef15cb-1254-5de7-b83a-685c83fc5704\", \"schema\": \"iso19115-3\", \"createDate\": \"2011-07-22\", \"changeDate\": \"2011-07-22\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "limitedDistribution", "defaulttitle": "Sensitive ridgelines within the East Gippsland Forest Management Area", "abstract": "This layer shows the location of sensitive ridgelines in the East Gippsland FMA and restrictions placed on timber harvesting.\n\nThis layer should be used in conjunction with two other layers EG_SCENIC_DRIVE_NETWORK and EG_SENSITIVE_VIEW_AREAS.\n\nThe East Gippsland Forest Management Plan acknowledges that while timber harvesting is the mainstay of the local economy, harvested areas should not dominate visitor's experience and their impressions of the forest. One component of landscape protection outlined in the Plan is the importance of coupe design to ensure notches on the skyline are not apparent. Map 22 of the Proposed East Gippsland Forest Management Plan clearly shows the location of sensitive ridgelines in the East Gippsland FMA. An Arcview layer was created showing the location of sensitive ridgelines in East Gippsland as shown on map 22. In 2006 the Landscape Management Guidelines EGFMA were developed which involved the review (verification of linework from map 22) of this layer and the consolidation of related prescriptions applying to timber harvesting.", "anzlicid": "ANZVI0803004455", "geonet_info_createdate": "2011-07-22", "revisiondate": "2011-07-22", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "ca4cdcbb316d3f0382114101e1ac838848891327", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "178f127a-a0fd-593c-9ccb-6756a83c68fb", "publicationdate": "2018-02-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-21", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "product", "title": "Victoria Flood Database", "alttitle": "VICTORIA FLOOD DATABASE", "tempextentbegin": "2008-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-12-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;inland waters;structure", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35836\", \"uuid\": \"178f127a-a0fd-593c-9ccb-6756a83c68fb\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-08-20\", \"changeDate\": \"2022-10-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victoria Flood Database", "abstract": "This package of data contains flood extent, contour and spot height features derived from various flood studies, reports, plans and imagery until 2014. It includes both modelled and observed data. It comprises 3 main data groups, containing a total of 26 seperate layers, with data groups as follows:\nModelled Flood Extents: Extent_{n}y_ARI, where n = 5,10,20,30,50,100,200,500,1000 year intervals\nModelled Flood Contours: Contour_{n}y_ARI, where n = 5,10,20,50,100,200 year intervals\nOther flood datasets: Floodway, Historic_extents, Historic_height_pt, Historic_contours, Flow_direction, Flood_structure, Levee, Levee_spotheight, Running_distance.", "anzlicid": "ANZVI0803004341", "geonet_info_createdate": "2019-08-20", "revisiondate": "2022-10-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c08d19ade318c0dd20b0501e8490d65f4dddd213", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d8f69bbc-18b6-53b2-bd8d-558c1c93bed2", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Infrastructure Dump Utility Function Table", "alttitle": "IN_DUMP_UTILITY_FUNCTION", "tempextentbegin": "2023-01-24T00:03:01+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:01+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35837\", \"uuid\": \"d8f69bbc-18b6-53b2-bd8d-558c1c93bed2\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Infrastructure Dump Utility Function Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003201", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2245a20aa0d10a99f16651b87d30537dcd5d681c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "794f9523-0b20-5f66-8c11-5bff9af000b2", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "WESTERN PORT 1% AEP 0.2M SLR INUNDATION", "alttitle": "WP_1AEP_20CMSLR_EXTENT", "tempextentbegin": "2013-01-27T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2015-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;oceans;geoscientific information;climatology, meteorology, atmosphere", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35888\", \"uuid\": \"794f9523-0b20-5f66-8c11-5bff9af000b2\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-05-04\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "WESTERN PORT 1% AEP 0.2M SLR INUNDATION", "abstract": "The Western Port Local Coastal Hazard Assessment (LCHA) provides information on the extent of coastal hazards and their physical impacts for the Western Port coastal environment. Information has been collected on inundation hazards (storm surge and catchment inflows) using modelling for different sea level rise scenarios. \nThis data represents the extent of storm tide inundation for the 1% Average Exceedance Probability (AEP) storm tide with the +0.2 m sea level rise scenario. (based on hydrodynamic modelling).\n\nDetails of the assumptions made in the derivation of this information can be found in project reports on the Our Coast website: http://www.ourcoast.org.au/cb_pages/resources.php.\nUsers of this information should read these project reports to understand the limitations of the data.", "anzlicid": "ANZVI0803005418", "geonet_info_createdate": "2016-05-04", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "095ab01d47097cd49438c59fe8386ff3e45cf8b2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "de36886c-0e1c-5e58-8071-fc304aa6837c", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-01", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Native Vegetation - Flora and Fauna Guarantee Act Listed Communities", "alttitle": "NV2005_FFG_COMM", "tempextentbegin": "2012-09-16T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2012-09-16T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35890\", \"uuid\": \"de36886c-0e1c-5e58-8071-fc304aa6837c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-11-11\", \"changeDate\": \"2022-09-01\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Native Vegetation - Flora and Fauna Guarantee Act Listed Communities", "abstract": "This is a derived dataset displaying the distribution of threatened vegetation communities listed under the Flora and Fauna Guarantee Act (1988). Communities have been matched to one of more Ecological Vegetation Classes (EVCs), and the bioregions in which they occur. Community locations and extent are implied from the extent of the most floristically similar EVCs, and the bioregions in which the EVCs occur. The \"distribution\" field indicates the range of the listed community within a BioEVC, and the extent to which the range of a community might extend beyond BioEVC boundaries.\n\nThis dataset is currently under review to include additional listed communities", "anzlicid": "ANZVI0803004740", "geonet_info_createdate": "2019-11-11", "revisiondate": "2022-09-01", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d2f531671f00a9cfd73b292c0561ecd7fb4917ea", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f50ccc3d-621c-5415-956d-3da572e6dbd5", "publicationdate": "2022-04-12", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Toe of Bank line features", "alttitle": "ISC2010_TOE_OF_BANK", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35894\", \"uuid\": \"f50ccc3d-621c-5415-956d-3da572e6dbd5\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Toe of Bank line features", "abstract": "The ISC2010_TOE_OF_BANK line features represent the left and right stream bed lines of the river channel for each River Reach.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005113", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c475fe4596f5e1588a35bd01148deccd58725150", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "61f633ae-c18c-5967-a546-84ceb44273f6", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Transport - Road Line", "alttitle": "TR_ROAD", "tempextentbegin": "2000-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:20+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35897\", \"uuid\": \"61f633ae-c18c-5967-a546-84ceb44273f6\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-02-21\", \"changeDate\": \"2022-07-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Transport - Road Line", "abstract": "This layer is part of Vicmap Transport and is and extensive digital road network - line features delineating state wide road network.\nIncludes; Bridges, Connectors, Footbridge, Ferry Route, Foot Tracks, Roads, Highways, Roundabouts & Tunnels.\n\nAttribution for names, alias, class, direction, locality, unique feature identification, suburb/locality. Includes alternate names.\n\nFormerly known as Road Network 1:25,000 (Full View) - Vicmap Transport (ROAD_VF)", "anzlicid": "ANZVI0803002595", "geonet_info_createdate": "2020-02-21", "revisiondate": "2022-07-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0948260408f80670e84368ba43b1bc5c15cd7214", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "be6926fd-6ac3-5081-8953-e623e0b16fd5", "publicationdate": "2022-11-11", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Victorian Biodiversity Atlas Restricted Records - 1 minute grid", "alttitle": "VBA_RESTRICTED_1M", "tempextentbegin": "2016-06-30T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:21+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35902\", \"uuid\": \"be6926fd-6ac3-5081-8953-e623e0b16fd5\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-07-22\", \"changeDate\": \"2021-08-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Biodiversity Atlas Restricted Records - 1 minute grid", "abstract": "This layer contains restricted taxa records from the Victorian Biodiversity Atlas (VBA). Record locations have been denatured to a 1 minute polygon grid to enable genaral data access. These records are held seperately from, and should be used in conjunction with VBA_FAUNA/FLORA25/100. VBA records are restricted when deemed by the Department to be vulnerable to collection, harvesting or disturbance. \n\nThe main attributes in this layer are taxon name, conservation status, count, and year of record. The VERS_DATE column identifies the currency of the data.\n\nThe FFG field has been updated to reflect the 2021 FFG Act amendments, and the Victorian Advisory List (VICADV) is now obsolete.", "anzlicid": "ANZVI0803005652", "geonet_info_createdate": "2016-07-22", "revisiondate": "2021-08-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6ed48b8b09e48707187ece53132ce56d7bc85261", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c95c7142-a03e-5fd3-9b15-5dfcd2b9ff33", "publicationdate": "2023-01-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2023-01-11", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Victorian Heritage Register", "alttitle": "HERITAGE_REGISTER", "tempextentbegin": "2008-01-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:08+00:00", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35856\", \"uuid\": \"c95c7142-a03e-5fd3-9b15-5dfcd2b9ff33\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-10-18\", \"changeDate\": \"2023-01-11\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Heritage Register", "abstract": "The Victorian Heritage Register lists the State's most significant heritage places and objects protected under the Heritage Act 1995.", "anzlicid": "ANZVI0803004621", "geonet_info_createdate": "2016-10-18", "revisiondate": "2023-01-11", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bea509b79410b55cfb5b2bf30ce0df3f007fd58d", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "8eee2431-b13a-5a4a-a14e-12dd670eb70d", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Bridge Construction Type Table", "alttitle": "TR_BRIDGE_CONSTRUCTION_TYPE", "tempextentbegin": "2023-01-24T00:03:08+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:08+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35857\", \"uuid\": \"8eee2431-b13a-5a4a-a14e-12dd670eb70d\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Bridge Construction Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003163", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e602b0b1779835a765928bcc69c7925b185510da", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "13c53605-ee2a-50b5-b24b-b00087e7de71", "publicationdate": "2020-11-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-21", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "LGA boundaries Victoria 1991 Historic", "alttitle": "VIC_LGA_1991", "tempextentbegin": "1991-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "1991-05-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42004\", \"uuid\": \"13c53605-ee2a-50b5-b24b-b00087e7de71\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-04\", \"changeDate\": \"2022-10-21\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "LGA boundaries Victoria 1991 Historic", "abstract": "This dataset contains polygon features representing historic Local Government Area boudaries prior to LGA amalgamations in 1992.", "anzlicid": "ANZVI0803008704", "geonet_info_createdate": "2020-11-04", "revisiondate": "2022-10-21", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "772afe15774988baed87cc60901ba4f565c193b6", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "9453b736-9b2f-5cee-a05b-74b70f3e5f5a", "publicationdate": "2020-11-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2020-11-04", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "All major digital formats available:", "type": "dataset", "title": "Regional Population Growth, Victoria", "alttitle": "ABS_POPULATION_LGA_2019", "tempextentbegin": "2018-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-05-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment;boundaries;economy;structure;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42005\", \"uuid\": \"9453b736-9b2f-5cee-a05b-74b70f3e5f5a\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-04\", \"changeDate\": \"2020-11-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Regional Population Growth, Victoria", "abstract": "This dataset contains polygon features representing statistical areas with associated popualtion data from ABS 3218.0 Regional Population Growth report as at June 2019.\n\nLocal Government Areas attributes;\nLGA Name Colac-Otway (S)\nLGA Code LGA21750\nPopulation June 2018 21502\nPopulation June 2019 21564\nDensity Population per Km2 6.3\nYear Population Change 62\nYear Percent Change 0.3\nNatural Increase 37\nNet Interstate Migration -61\nNet Overseas Migration 86\nArea Km2 3437.5", "anzlicid": "ANZVI0803008703", "geonet_info_createdate": "2020-11-04", "revisiondate": "2020-11-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "8cf9d1056a907b4291bb11c434ca43f04e0c01c2", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "4de9770e-af29-5c0d-94f8-143f42742438", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-16", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Limited Distribution", "format": "ESRI Shapefile", "type": "dataset", "title": "Withdrawn Applications for Exploration Licences", "alttitle": "ELAP", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:03:10+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33815\", \"uuid\": \"4de9770e-af29-5c0d-94f8-143f42742438\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-19\", \"changeDate\": \"2022-09-16\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Withdrawn Applications for Exploration Licences", "abstract": "Withdrawn Applications for Exploration Licences", "anzlicid": "ANZVI0803002329", "geonet_info_createdate": "2013-09-19", "revisiondate": "2022-09-16", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "59027248f128d12c785d1486423535d27ab37dbc", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "1c5108cb-f3d5-58f4-a82e-62d361fb5c39", "publicationdate": "2023-01-20", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-08-06", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Index - Melway Mapbook Pagegrid 1:10,000 Edition 47", "alttitle": "MELWAY_PAGEGRID_10_ED47", "tempextentbegin": "2019-06-30T14:00:00+00:00", "resowner": "Melway Publishing Pty Ltd", "tempextentend": "2019-06-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35863\", \"uuid\": \"1c5108cb-f3d5-58f4-a82e-62d361fb5c39\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-10-04\", \"changeDate\": \"2021-08-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Index - Melway Mapbook Pagegrid 1:10,000 Edition 47", "abstract": "This dataset is derived from the Melway directory and contains the pagegrid for the 1:10 000 inner urban maps.", "anzlicid": "ANZVI0803004597", "geonet_info_createdate": "2018-10-04", "revisiondate": "2021-08-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c869a2d6eb8134ce52bf830664f363e4ecefd306", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5e869d7a-a149-5aa7-8f63-1d7a431fd1c1", "publicationdate": "2018-04-05", "publishedforgroup": "0;12264", "geonet_info_changedate": "2018-04-20", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital Shapefile", "type": "dataset", "title": "Murray Basin - Depth To Basement (1:1,000,000)", "alttitle": "DEPTH_TO_BASEMENT_MURRAY_BASIN", "tempextentbegin": "2013-03-22T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Jobs, Precincts and Regions", "tempextentend": "2013-03-22T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33817\", \"uuid\": \"5e869d7a-a149-5aa7-8f63-1d7a431fd1c1\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-04-20\", \"changeDate\": \"2018-04-20\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Murray Basin - Depth To Basement (1:1,000,000)", "abstract": "The polygons represent the depth from the surface to the Palaeozoic bedrock. The polygon data was constructed using the depth to basement contours at 50m interval generated from both drill hole data, and depth to magnetic source estimates. For detailed methodology refer to Gold Undercover report 21 - Depth to Palaeozoic basement of the Gold Undercover region using borehole and magnetic data.", "anzlicid": "ANZVI0803004871", "geonet_info_createdate": "2018-04-20", "revisiondate": "2018-04-20", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7a1c5e12a915249058e44805450e50cca0ed60ad", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f34f20b1-2e68-5309-b227-eb9ad3169441", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2014-02-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL", "type": "dataset", "title": "2010 Index of Stream Condition - Structure1 100m Section Summary Table", "alttitle": "ISC2010_STRUCTURE1_S", "tempextentbegin": "2010-05-31T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;inland waters;imagery base maps earth cover;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35867\", \"uuid\": \"f34f20b1-2e68-5309-b227-eb9ad3169441\", \"schema\": \"iso19115-3\", \"createDate\": \"2014-02-04\", \"changeDate\": \"2014-02-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "2010 Index of Stream Condition - Structure1 100m Section Summary Table", "abstract": "The ISC2010_STRUCTURE1_S table is the Statistical Summary table for the Structure1 Metric at the 100m Section level. Structure 1 represents Vegetation Cover for two grouped height categories: Shrubs which are defined as vegetation in the height range 1.5m to 5m and Trees which are defined as vegetation with height greater than 5m.\n\nThe ISC2010_STRUCTURE1_S table is designed to JOIN to the ISC2010_RIVER_CENTRELINES_S feature class.\n\nRiver condition in Victoria is assessed every 5 years using the Index of Stream Condition (ISC). The Department of Environment and Primary Industries (DEPI) developed a methodology to assess the Physical Form and Riparian Vegetation components of the ISC using remote sensing data, specifically LIDAR and aerial photography. \n\nA State Wide mapping project was undertaken in 2010-13 to accurately map the Physical Form and Riparian Vegetation metrics of the ISC . Other ISC metrics were not assessed in the project and were derived from other sources.\n\nThe Physical Form and Riparian Vegetation Metric products are a combination of mapped Vector and Raster data as well as Tabular Summary Statistics about the mapped features. In the context of the project, the term Metrics is used to refer to both the mapped features and the summary statistics. \n\nRemote sensing data used includes 15cm true colour and infra-red aerial photography and four return multi-pulse LiDAR data. This source data was used to derive a variety of Raster data sets including Digital Terrain Models, Slope, Vegetation Height and Vegetation Cover. The Digital Terrain and Slope rasters were used to map Physical Form metrics including Stream Bed, Top of Bank and River Centre Lines while the Vegetation Height and Cover rasters were used to map the Riparian Vegetation metrics.\nThe Project Report \"Aerial Remote Sensing for Physical Channel Form and Riparian Vegetation Mapping\" describes the remote sensing and mapping approach used to create this data set.", "anzlicid": "ANZVI0803005137", "geonet_info_createdate": "2014-02-04", "revisiondate": "2014-02-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5bd81eda0124ad988f6654b1a8feac804c2d8279", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "5567ec39-0580-52ed-bf16-bb7d2a3024cf", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available on request", "type": "dataset", "title": "Wingan Inlet Seagrass 1999", "alttitle": "SEAGRASS_WINGAN_INLET_1999", "tempextentbegin": "1998-05-31T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "1999-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33820\", \"uuid\": \"5567ec39-0580-52ed-bf16-bb7d2a3024cf\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-25\", \"changeDate\": \"2015-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Wingan Inlet Seagrass 1999", "abstract": "This layer contains polygons defining the spatial extent, species distribution and density of seagrass meadows within Wingan Inlet mapped from 1999 aerial photography and ground-truthing.", "anzlicid": "ANZVI0803004107", "geonet_info_createdate": "2015-11-25", "revisiondate": "2015-11-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "efd5043ee0a9d620e90ee83b77ed240c7a83b7bb", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "2e8a6daf-38b8-5562-ba14-3ae72a205216", "publicationdate": "2019-10-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-10-08", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "Feature Class", "type": "dataset", "title": "Wetland Monitoring and Assessment Program monitoring sites", "alttitle": "WETMAP_SITES", "tempextentbegin": "2016-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:42+00:00", "maintenanceandupdatefrequency_text": "Irregular", "locale": "eng", "status": "notobsolete;underDevelopment", "topiccat": "inland waters", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33902\", \"uuid\": \"2e8a6daf-38b8-5562-ba14-3ae72a205216\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-10-08\", \"changeDate\": \"2019-10-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Under development", "mdclassification": "limitedDistribution", "defaulttitle": "Wetland Monitoring and Assessment Program monitoring sites", "abstract": "WetMAP is measuring the response of wetland vegetation and a range of fauna to natural water regimes that are supplemented by environmental water. Numerous aspects of wetland ecology are being monitored including vegetation, waterbirds, fish and frogs. This data set maps the location of WetMAP monitoring sites.", "anzlicid": "ANZVI0803008545", "geonet_info_createdate": "2019-10-08", "revisiondate": "2019-10-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "e188675cafa20072f4cbd7046d1a7b3c830e587e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "0468f496-1197-5d39-9ed2-351b27b6735f", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-10-12", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Simplified outline of Victoria and adjoining States", "alttitle": "MAPBASE_G200", "tempextentbegin": "2023-01-24T00:03:43+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:43+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33903\", \"uuid\": \"0468f496-1197-5d39-9ed2-351b27b6735f\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-03-07\", \"changeDate\": \"2021-10-12\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Simplified outline of Victoria and adjoining States", "abstract": "Simplified outline of Victoria (coastline, major islands, borders and Murray River) plus the coastline of the adjoining States (SA, NSW and Tasmania).", "anzlicid": "ANZVI0803002850", "geonet_info_createdate": "2017-03-07", "revisiondate": "2021-10-12", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "9e77da51acb0181578718f3939e8f4f2850c5e8c", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "668c567c-0539-54ae-81a5-46f13e015233", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available on request", "type": "dataset", "title": "Port Phillip Bay 1:25,000 Seagrass 2000", "alttitle": "SEAGRASS_PORT_PHILLIP_BAY_2000", "tempextentbegin": "2000-02-29T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2000-11-30T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35974\", \"uuid\": \"668c567c-0539-54ae-81a5-46f13e015233\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-25\", \"changeDate\": \"2015-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Port Phillip Bay 1:25,000 Seagrass 2000", "abstract": "This is a polygon layer defining the spatial extent, species distribution and density of seagrass and macroalgae within Port Phillip Bay mapped from aerial photography in 2000. The mapping was ground-truthed in the field.", "anzlicid": "ANZVI0803004034", "geonet_info_createdate": "2015-11-25", "revisiondate": "2015-11-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "6760b18a31af7fbf64a702cf6e2234afc4a6b5e9", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d44fdd10-1397-56cc-93f5-ed9aab7a410e", "publicationdate": "2018-01-23", "publishedforgroup": "0;12264", "geonet_info_changedate": "2015-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL: Standard GIS Vector layers", "type": "dataset", "title": "Port Phillip Bay seagrass mapping at nine aerial assessment regions in April 2009", "alttitle": "SEAGRASS_PPB_9REGIONS_APRIL09", "tempextentbegin": "2009-04-11T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2009-05-21T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;farming;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35977\", \"uuid\": \"d44fdd10-1397-56cc-93f5-ed9aab7a410e\", \"schema\": \"iso19115-3\", \"createDate\": \"2015-11-25\", \"changeDate\": \"2015-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Port Phillip Bay seagrass mapping at nine aerial assessment regions in April 2009", "abstract": "This polygon layer represents seagrass habitat at nine regions in Port Phillip Bay in April 2009 mapped from aerial photography. The mapping was undertaken for the Baywide Seagrass Monitoring Program (CDP_ENV_MD_022 Rev5 - Port of Melbourne Corporation, 2010). The program is being undertaken for the Port of Melbourne Corporation as part of Baywide Monitoring to support the Channel Deepening Project.", "anzlicid": "ANZVI0803004663", "geonet_info_createdate": "2015-11-25", "revisiondate": "2015-11-25", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "659e0bbfd42ddd54759f69e90599f27d11c706bd", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6f3867ee-2960-5062-8bd9-1ed994d6c9b8", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-08", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "product", "title": "Vicmap Crown Land Tenure", "alttitle": "VICMAP_CLTENURE", "tempextentbegin": "1990-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:45+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "society;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35981\", \"uuid\": \"6f3867ee-2960-5062-8bd9-1ed994d6c9b8\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2022-07-08\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Crown Land Tenure", "abstract": "Vicmap Crown Land Tenure is a statewide dataset series that plays a key role in the management of Victoria's Crown land. It was created (June 2003 - Feb 2004) from migrating LCMP layers into the Vicmap structure.\nThe layer provides information about the Private use of Crown land Parcels and Crown Roads. CL_TENURE_VIEW contains a number of Tenure types including:\n- (A) Agricultural including Unused Road licences, Water Frontage licences and Grazing licences,\n- (L) Lease including Commercial type leases,\n- (G) General Licences including miscellaneous community use licences, permits & consents\n- (P) Pipe including Water supply pipelines,\n- (RM) Reserve including land gazetted as a Reserve in Government Gazettes,\n- Tenure Identifiers, Tenure type identifiers and Tenure code identifiers.\nThe database is continually maintained, obtaining maintenance from authoritative sources within State Government.\n\nDatasets in the series are listed below. See their metadata entries for more detailed metadata.\nTenure boundaries and descriptors as per Crown Land Management - Vicmap Crown Land Tenure (CL_TENURE_VIEW);\nGovernment Roads as per Crown Land Management - Vicmap Crown Land Tenure (GOV_ROAD_POLYGON);", "anzlicid": "ANZVI0803002777", "geonet_info_createdate": "2019-09-04", "revisiondate": "2022-07-08", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "102c8f720ac599f2e8be36fa6953c0e20d685fb1", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "409893f9-19dd-5386-9084-4fb0100aa0d8", "publicationdate": "2019-01-03", "publishedforgroup": "0;12264", "geonet_info_changedate": "2017-01-04", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All ESRI supported formats available", "type": "dataset", "title": "DSE Roads database - Category", "alttitle": "RDB_CATEGORY", "tempextentbegin": "2005-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:24+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35909\", \"uuid\": \"409893f9-19dd-5386-9084-4fb0100aa0d8\", \"schema\": \"iso19115-3\", \"createDate\": \"2017-01-04\", \"changeDate\": \"2017-01-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "DSE Roads database - Category", "abstract": "Category is a linear representation of roads on Public land defined by management category.\nThis layer is used to determine 'Public Access' roads as defined in the State Road Management Act.\nIt also defines non-public register roads and breaks them down into operational categories such as seasonal closures, maintenance vehicle only and unmaintained tracks.\n\nThe underlying linear data is derived from Vicmap Transport Roads. Categories are assigned through a relational database connection and the arcs grouped to simplify data geometry.\n\nDSE's ROADS database contains information relating to DSE-managed road assets.\nIt is envisaged that the database be accessible through GIMS asset management system.", "anzlicid": "ANZVI0803003388", "geonet_info_createdate": "2017-01-04", "revisiondate": "2017-01-04", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5649e3bfcb079e6747d6f309072a91c76d933dd5", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ec3d42c4-e7b3-5456-9320-61c2b5473a0b", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Property Multi Assessment Table", "alttitle": "PR_MULTI_ASSESSMENT", "tempextentbegin": "2023-01-24T00:03:24+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:24+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33861\", \"uuid\": \"ec3d42c4-e7b3-5456-9320-61c2b5473a0b\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Property Multi Assessment Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003148", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "bf4a767d99a0c241f570c15e9c036890479c523e", "fields": {"available_formats": "ECW,GeoTIFF,JPEG,JPEG 2000,TIFF", "resclassification": "unclassified", "uuid": "2fd9d712-5407-51df-bc75-bb13d37499af", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-09-12", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI Grid and GeoTiff - COG (Cloud Optimized GeoTIFF)", "type": "dataset", "title": "Vicmap Elevation DEM 10m", "alttitle": "VICMAP_ELEV_DEM_10M", "tempextentbegin": "2008-06-29T14:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2016-04-26T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "elevation;environment;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33863\", \"uuid\": \"2fd9d712-5407-51df-bc75-bb13d37499af\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-07-14\", \"changeDate\": \"2022-09-12\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Elevation DEM 10m", "abstract": "Vicmap Elevation DEM 10m is a product which is a raster representation of Victoria's elevation. DEM 10m has a spatial resolution of 10 metres with respective horizontal and vertical accuracy of 12.5m and 5m or better. The DEM is constructed from source data of various resolutions, accuracies and ages to produce an improved DEM containing increased detail in localised areas. The DEMs are hydrologically enforced and correctly defines the natural surface drainage and hydrological flow. \nThis product has been quality assured by DELWP and additional third-party consultants.\n\nUpdate of the dataset Vicmap Elevation DTM 10m.", "anzlicid": "ANZVI0803003582", "geonet_info_createdate": "2020-07-14", "revisiondate": "2022-09-12", "spatialrepresentationtype_text": "Grid"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "72e8d46680237a6fd9b0d935917994f3c2f81f64", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f191d19a-eaf0-5642-9f93-2989db361095", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcInfo", "type": "dataset", "title": "Exploration Graticules with 1 km intervals -- GDA94 - Effective 1st July 2005", "alttitle": "MG941KM", "tempextentbegin": "2005-02-28T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:03:25+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33864\", \"uuid\": \"f191d19a-eaf0-5642-9f93-2989db361095\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Exploration Graticules with 1 km intervals -- GDA94 - Effective 1st July 2005", "abstract": "Exploration Graticules are used as the main boundaries for Exploration Licences since 1973\n- GDA94 - Effective 1st July 2005", "anzlicid": "ANZVI0803002976", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "cf65563f0c4aa9b2ecf3c59e7f6d96715061b1d0", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9128adcc-f8fd-5295-bcac-cc45a7247e8b", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-03-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Property - Annotation Text", "alttitle": "ANNOTATION_TEXT", "tempextentbegin": "2023-01-24T00:03:27+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:27+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33870\", \"uuid\": \"9128adcc-f8fd-5295-bcac-cc45a7247e8b\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-03-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Property - Annotation Text", "abstract": "Annotation Text is a point layer belonging to Vicmap Property and consists of point data representing the location of Annotation and Text for Vicmap Property. The points have been attributed with the appropropriate text.\n\nThis layer should be used in conjuction with the other layers and aspatial tables that make up Vicmap Property.", "anzlicid": "ANZVI0803002902", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-03-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "07224a1fad9cc466447f2fbb4c6606bfa20e8d53", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "d34f3607-62f4-52b1-8f34-5c2ad4f9ed6e", "publicationdate": "2023-01-21", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "product", "title": "Geological Sites - Earth Resources Spatial Data Collection for the Datamart.", "alttitle": "DM_MIN_GEOLOGICAL_SITES", "tempextentbegin": "1998-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2023-01-24T00:03:29+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35930\", \"uuid\": \"d34f3607-62f4-52b1-8f34-5c2ad4f9ed6e\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-17\", \"changeDate\": \"2019-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Geological Sites - Earth Resources Spatial Data Collection for the Datamart.", "abstract": "Datasets relating to geological sites, geologically significant features & mine shafts.\nCollected for Earth Resources within DSDBI", "anzlicid": "ANZVI0803003358", "geonet_info_createdate": "2019-09-17", "revisiondate": "2019-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "44813497ac2f63e22d167cbbef3692bdf91b20c8", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "f305b156-b8fd-513b-b40e-dafffde32ddc", "publicationdate": "2021-09-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-10-12", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Index of Estuarine Condition Estuarine Boundaries", "alttitle": "IEC2021_ESTUARY_BOUNDARIES", "tempextentbegin": "2017-01-23T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-02-07T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42083\", \"uuid\": \"f305b156-b8fd-513b-b40e-dafffde32ddc\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-17\", \"changeDate\": \"2021-10-12\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Index of Estuarine Condition Estuarine Boundaries", "abstract": "IEC2021_ESTUARY_BOUNDARIES is the spatial boundaries of the merged polygons in the IEC2021_SUB_VEG layer.", "anzlicid": "ANZVI0803008719", "geonet_info_createdate": "2020-11-17", "revisiondate": "2021-10-12", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d86b24186db8dcc84e11db1f87a997d4291d36ae", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c12380d9-db04-5873-ab42-e779e4df99e2", "publicationdate": "2023-01-15", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Transport Railway Gauge Table", "alttitle": "TR_RAIL_GAUGE", "tempextentbegin": "2023-01-24T00:03:38+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:38+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35957\", \"uuid\": \"c12380d9-db04-5873-ab42-e779e4df99e2\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Transport Railway Gauge Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803003166", "geonet_info_createdate": "2019-09-04", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7fba8ddf91eae87e24a42d2dd4945e615bcdb1b1", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "6cb9e551-1237-52e0-8622-07733a897545", "publicationdate": "2021-09-07", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-10-15", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "Digital", "type": "dataset", "title": "Index of Estuarine Condition Estuarine Fringing Vegetation", "alttitle": "IEC2021_FRINGING_VEG", "tempextentbegin": "2017-01-23T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2019-02-07T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;oceans", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42085\", \"uuid\": \"6cb9e551-1237-52e0-8622-07733a897545\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-17\", \"changeDate\": \"2021-10-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Index of Estuarine Condition Estuarine Fringing Vegetation", "abstract": "IEC2021_ FRINGING _VEG is the spatial representation of fringing vegetation used in the calculation of Index of Estuarine Condition (IEC) scores. In the context of the IEC, 'fringing vegetation' refers to the vegetation which grows above the permanently inundated portion of the estuary but within the zone of influence of the more-or-less saline estuarine waters. It includes vegetation in intertidal areas and riparian areas in the estuary but not subtidal vegetation (see Sinclair and Kohout 2018 for more precise working definitions of vegetation zones). In the field, the extent of the fringing vegetation and any built structures that impinge on it were mapped (by annotating an aerial photograph). Fringing vegetation was mapped according to Ecological Vegetation Classes (EVC) (https://www.environment.vic.gov.au/biodiversity/bioregions-and-evc-benchmarks) and subjectively classified into areas of different condition with reference to vegetation structure, weediness and land use. Each patch of vegetation that could be accessed was scored for its degree of invasion by perennial weeds and its structural resemblance to a relevant benchmark (https://www.environment.vic.gov.au/biodiversity/bioregions-and-evc-benchmarks). Additional observations were recorded on the score sheet, relating to `Health of the dominant plant species\u00bf and `Extent of engineered hydrological modifications\u00bf. Scores were estimated for the areas that could not be observed. These estimated scores were based on the areas that were observed. The areas of all relevant polygons were calculated, and a score produced for each metric (IEC Report 2021).", "anzlicid": "ANZVI0803008720", "geonet_info_createdate": "2020-11-17", "revisiondate": "2021-10-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1145ebfdf7d558eec9a3542c88751effa1d3b3c5", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "1490d477-0c6f-5e30-910b-4032eaf9895a", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-05-06", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Tree Cover", "alttitle": "TREE100", "tempextentbegin": "1989-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "1993-04-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Unknown", "locale": "eng", "status": "notobsolete;completed", "topiccat": "biota;farming", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35961\", \"uuid\": \"1490d477-0c6f-5e30-910b-4032eaf9895a\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-05-06\", \"changeDate\": \"2016-05-06\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Tree Cover", "abstract": "Polygons showing tree cover as defined by woody vegetation greater than 2 metres in height and with a crown cover (foliar density) greater than 10%.\nTree cover is mapped down to a minimum area of one hectare. \nThis layer was derived from LANDSAT TM digital data.", "anzlicid": "ANZVI0803001075", "geonet_info_createdate": "2016-05-06", "revisiondate": "2016-05-06", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "d0c49a54d8a17d4360bccce839bc072735302a39", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "21747078-fec7-58e6-b70d-754680cdc751", "publicationdate": "2020-11-04", "publishedforgroup": "0;12264", "geonet_info_changedate": "2013-09-17", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "MapInfo , ArcView, ArcInfo and Microsoft Access.", "type": "dataset", "title": "Surface Geochemistry Samples (being Superceded by GEOCHEMISTRY)", "alttitle": "GCHEM", "tempextentbegin": "1996-12-31T13:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions;Department of Primary Industries", "tempextentend": "2008-05-31T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Annually", "locale": "eng", "status": "notobsolete;completed", "topiccat": "economy;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"33895\", \"uuid\": \"21747078-fec7-58e6-b70d-754680cdc751\", \"schema\": \"iso19115-3\", \"createDate\": \"2013-09-17\", \"changeDate\": \"2013-09-17\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Surface Geochemistry Samples (being Superceded by GEOCHEMISTRY)", "abstract": "Surface Geochemistry Samples is derived from Minerals and Petroleum's SITES Oracle RDBMS. Data have been obtained from company reports of expired mineral Exploration and Mining Licences since 1965.\n\nA surface sample is typically taken to comprise a sample taken from the weathered profile, and which is the only sample taken at that location. It may be a soil or it may be a sediment taken from an active stream bed. Though most soil samples are taken from the B- or C-horizon (approx. 10-40 cm depth) the dataset may, for example, include a sample taken from 2 m depth and obtained by augering. There is, thus, a continuum between surface geochemistry and boreholes datasets.", "anzlicid": "ANZVI0803002548", "geonet_info_createdate": "2013-09-17", "revisiondate": "2013-09-17", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "5e31c4a8c77e9cfe574e8546999cb8043b9fd769", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ef16a123-5c78-5acc-af1f-cd118f60ef84", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-04-07", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "dataset", "title": "Vicmap Property - Parcel Polygon with Approved Parcel Detail", "alttitle": "V_S_PARCEL_APPROVED", "tempextentbegin": "2023-01-24T00:03:40+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:40+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre;environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42088\", \"uuid\": \"ef16a123-5c78-5acc-af1f-cd118f60ef84\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-16\", \"changeDate\": \"2021-04-07\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Property - Parcel Polygon with Approved Parcel Detail", "abstract": "Approved Parcel Map Polygons is a polygon layer belonging to Vicmap Property Simplified 2, a modified and simplified model of Vicmap Property, specifically generated for Local Government use.. It consists of polygons representing Victoria's land parcels.\nThis layer should be used in conjuction with the other layers and aspatial tables that make up Vicmap Property Simplified 2, see metadata for Vicmap Property and Vicmap Property Simplified 2.\n\nVicmap Property Simplified 2 Content includes\n \u00b7 Parcel and Property Polygons;\n \u00b7 Parcel and Property Identifiers - parcel descriptors (including Standard Parcel Identifiers (SPI)), \n Council reference numbers;\n \u00b7 Registered and proposed;\n \u00b7 Crown and Freehold land differentiation;\n \u00b7 Cadastral Road Casements;\n \u00b7 Easements (Note: all new easements are being captured for the whole State. Previously, only \n easements in the metropolitan area were captured. There is no current program to review and \n capture missing easements);\n \u00b7 Unique Feature Identifiers, date stamps and data quality information.", "anzlicid": "ANZVI0803008711", "geonet_info_createdate": "2020-11-16", "revisiondate": "2021-04-07", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "59fb091a383bb462b854291329ed71237077d53e", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "c6499383-f8eb-5cf6-9463-b04bc4b017fe", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2019-05-29", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ArcGIS shapefile", "type": "dataset", "title": "Victorian Soil type mapping", "alttitle": "SOIL_TYPE", "tempextentbegin": "2014-06-30T14:00:00+00:00", "resowner": "Department of Jobs, Precincts and Regions", "tempextentend": "2016-02-28T13:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "farming;geoscientific information", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35969\", \"uuid\": \"c6499383-f8eb-5cf6-9463-b04bc4b017fe\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-05-29\", \"changeDate\": \"2019-05-29\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Victorian Soil type mapping", "abstract": "A spatial map layer of soil type (Australian Soil Classification) for Victoria. The harmonised map consists of 3,300 land units (totaling about 225,000 polygons) derived from around 100 soil and land surveys carried out in Victoria over the past 70 years. The land units have been attributed according to the Australian Soil Classification (Order and Suborder levels of the classification scheme) based on their likely dominant soil type. Particular attention was given to harmonising land units across survey boundaries. A reliability index has been assigned to each land unit based on the quality and relevance of the originating survey, providing a qualitative reliability measure to support interpretation and data use.\n\nSoil site data contained in the Victorian Soil Information System (VSIS), and information on the Victorian Resources Online (VRO) website and original study reports have been combined with landscape knowledge to develop the new maps. Data from approximately 10,000 existing sites recorded, mostly recorded in the VSIS have been used.\n\nThe soil type is based on land mapping conducted at different times, at variable scale, and for different purposes. Land units are therefore of variable scale and quality in relation to the soil they are representing. Many units will be comprised of multiple soil types and a range of soil properties, and local variability (e.g. at paddock scale level) can also sometimes be high. The mapping, therefore, is intended to represent the dominant, or most prevalent, broad soil type within the map unit. It is therefore adequate for regional or state-wide overviews but may not often be accurate enough for localised or within-farm assessments. For more detailed soil and land information, users are advised to refer to the original land study for any given map unit (e.g. via Victorian Resources Online website).", "anzlicid": "ANZVI0803005522", "geonet_info_createdate": "2019-05-29", "revisiondate": "2019-05-29", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "c07389d56b89558d366fafd4082124a19fac5942", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "restricted", "uuid": "6f312a91-3459-5749-88c8-69255499e4e4", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2016-06-01", "standardname": "ISO 19115-3:2018", "classification_text": "Restricted;Limited Distribution", "format": "SDM formats", "type": "dataset", "title": "River Health Program Environmental Watering Priority Reaches for the Victorian Investment Framework", "alttitle": "VIF_RIVERHEALTH_EW100", "tempextentbegin": "2010-02-16T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2011-06-29T14:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35970\", \"uuid\": \"6f312a91-3459-5749-88c8-69255499e4e4\", \"schema\": \"iso19115-3\", \"createDate\": \"2016-06-01\", \"changeDate\": \"2016-06-01\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "River Health Program Environmental Watering Priority Reaches for the Victorian Investment Framework", "abstract": "OBSOLETE POLICY LAYER - A white paper for land and biodiversity at a time of climate change 2009\n\nThe 'Priority reaches for environmental watering' layer (derived from ISC_REACH) represents priority reaches for environmental watering as identified through environmental entitlements, water recovery plans and projects, Sustainable Water Strategies, Regional River Health Strategies and associated Addendums. \n\nThis layer should be used in conjunction with the latest Victorian Investment Framework (VIF) Statement of Priorities document. Catchment Management Authorities are responsible for prioritising actions within their region based upon these priorities and available funding.\n\nTo be viewed in conjunction with VIF_RIVERHEALTH_PRI100; VIF_RIVERHEALTH_LSRR100 and VIF_RIVERHEALTH_EWA100", "anzlicid": "ANZVI0803003982", "geonet_info_createdate": "2016-06-01", "revisiondate": "2016-06-01", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "2f23218d6fed3c3eae89a1d9c8af5cd7b22a9f0a", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "ac31f7d7-6131-5b5e-9cdd-b7dfacc11c0e", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2021-11-25", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Reference - Address Building Unit Type Table", "alttitle": "ADDRESS_BLG_UNIT_TYPE", "tempextentbegin": "2023-01-24T00:03:48+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:48+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "planning cadastre", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42105\", \"uuid\": \"ac31f7d7-6131-5b5e-9cdd-b7dfacc11c0e\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-19\", \"changeDate\": \"2021-11-25\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Reference - Address Building Unit Type Table", "abstract": "Part of VMREFTAB, the set of Reference Tables for the VICMAP suite of products.", "anzlicid": "ANZVI0803008727", "geonet_info_createdate": "2020-11-19", "revisiondate": "2021-11-25", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "99a62a06784a9a947b07fb34444db22bf58b27ea", "fields": {"available_formats": "GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "90fdf641-9400-525d-be09-e6ec860fbe9c", "publicationdate": "2023-01-14", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-07-04", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "All major digital formats", "type": "nonGeographicDataset", "title": "Vicmap Property - Parcel Table", "alttitle": "PARCEL", "tempextentbegin": "2023-01-24T00:03:49+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:49+00:00", "maintenanceandupdatefrequency_text": "Continual", "locale": "eng", "status": "notobsolete;completed", "topiccat": "environment;planning cadastre;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35993\", \"uuid\": \"90fdf641-9400-525d-be09-e6ec860fbe9c\", \"schema\": \"iso19115-3\", \"createDate\": \"2019-09-04\", \"changeDate\": \"2022-07-04\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Vicmap Property - Parcel Table", "abstract": "This layer contains aspatial details for all legal parcel boundaries in Victoria, both freehold and crown. A parcel is defined as the smallest area of land capable of sale without further approval to subdivide. It may consist of more than one piece. Parcels are described by a parcel description (either lot/plan or allotment/section/parish).\n\nIt includes:\n- Parcel Identifiers, both freehold and crown;\n- Registered and proposed status;\n- Crown and Freehold land differentiation;\n- Council reference numbers;\n- LGA code;\n- Unique Feature Identifiers, date stamps and data quality information.\n\nMetaX records this dataset as VMPROP.PARCEL", "anzlicid": "ANZVI0803001034", "geonet_info_createdate": "2019-09-04", "revisiondate": "2022-07-04", "spatialrepresentationtype_text": "Table"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "1e2e9aa711469f59d075961d09d52b766bf724ee", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "4ccf6a63-f700-57c9-9441-9c28c2319b5b", "publicationdate": "2018-02-01", "publishedforgroup": "0;12264", "geonet_info_changedate": "2018-11-15", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "arcview, coverage, SDE layer", "type": "dataset", "title": "Conservation Management Network boundaries - CMN", "alttitle": "CMN", "tempextentbegin": "2011-11-30T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning;Department of Environment, Land, Water & Planning", "tempextentend": "2012-04-30T14:00:00+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;planned", "topiccat": "environment;boundaries", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35994\", \"uuid\": \"4ccf6a63-f700-57c9-9441-9c28c2319b5b\", \"schema\": \"iso19115-3\", \"createDate\": \"2018-11-15\", \"changeDate\": \"2018-11-15\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Planned", "mdclassification": "limitedDistribution", "defaulttitle": "Conservation Management Network boundaries - CMN", "abstract": "Conservation Management Network boundaries as a statewide coverage. This layer will be changing over time depending on new networks and amalgamations.\n A CMN:\nis a network of sites with native vegetation\nis a network of people who work together to protect and restore these sites, and also work to expand and link them across the landscape\nworks closely with local Landcare, government agencies and nongovernment organizations\nworks on both public and private land with site-based activities like revegetation, and addressing landscape-wide problems like tree die-back, weeds and foxes\nhas a strong focus on community education", "anzlicid": "ANZVI0803004708", "geonet_info_createdate": "2018-11-15", "revisiondate": "2018-11-15", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "7695e1477987a140b7b59fbaba59cd590a53bf8a", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "unclassified", "uuid": "9aeabfbc-23ef-5bbe-9ea4-56b0051cfa3a", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-10-19", "standardname": "ISO 19115-3:2018", "classification_text": "Unclassified;Unclassified", "format": "ESRI", "type": "dataset", "title": "Statistical extents for 0.2% AEP or 1 in 500 years floods until 2014", "alttitle": "EXTENT_500Y_ARI", "tempextentbegin": "1999-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2014-11-10T13:00:00+00:00", "maintenanceandupdatefrequency_text": "Not planned", "locale": "eng", "status": "notobsolete;completed", "topiccat": "inland waters;environment", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"42108\", \"uuid\": \"9aeabfbc-23ef-5bbe-9ea4-56b0051cfa3a\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-11-19\", \"changeDate\": \"2022-10-19\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "unclassified", "defaulttitle": "Statistical extents for 0.2% AEP or 1 in 500 years floods until 2014", "abstract": "This layer contains information from multiple flood studies undertaken until 2014.\nThe data is statistically derived using hydrological models depicting the 1 in 500 year ARI (or 0.2% AEP) scenario flood extents. \nThis is Polygon data or a Shapefile.\nThis layer will not be updated.", "anzlicid": "ANZVI0803008743", "geonet_info_createdate": "2020-11-19", "revisiondate": "2022-10-19", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}, {"datasetid": "datashare-metadata", "recordid": "0b099df03457ee71d60226c62f8ec1ccfdf564f1", "fields": {"available_formats": "DWG,DXF,GDB,SHP,MIF,TAB,Extended TAB", "resclassification": "limitedDistribution", "uuid": "8a607fad-a3d2-56af-a6c6-cdc20a12f0db", "publicationdate": "2018-02-02", "publishedforgroup": "0;12264", "geonet_info_changedate": "2022-08-09", "standardname": "ISO 19115-3:2018", "classification_text": "Limited Distribution;Limited Distribution", "format": "DIGITAL - All major formats available", "type": "dataset", "title": "Public Access Road Crossing", "alttitle": "PAIM_RDB_CROSSINGS", "tempextentbegin": "2014-12-31T13:00:00+00:00", "resowner": "Department of Environment, Land, Water & Planning", "tempextentend": "2023-01-24T00:03:50+00:00", "maintenanceandupdatefrequency_text": "As needed", "locale": "eng", "status": "notobsolete;completed", "topiccat": "transportation", "geonet_info": "{\"@xmlns:geonet\": \"http://www.fao.org/geonetwork\", \"id\": \"35997\", \"uuid\": \"8a607fad-a3d2-56af-a6c6-cdc20a12f0db\", \"schema\": \"iso19115-3\", \"createDate\": \"2020-05-19\", \"changeDate\": \"2022-08-09\", \"source\": \"a18b679e-4040-4101-9fe2-82ebdd4736b2\", \"isPublishedToAll\": \"false\", \"view\": \"true\", \"notify\": \"false\", \"download\": \"true\", \"dynamic\": \"true\", \"featured\": \"false\", \"selected\": \"false\", \"lock\": \"false\"}", "datasetlang": "eng", "status_text": "Completed", "mdclassification": "limitedDistribution", "defaulttitle": "Public Access Road Crossing", "abstract": "The layer is a subset of FORESTSROADS.RDB_CROSSINGS. It is used in the Public Access Map to display closed and accessible road crossings within public land.", "anzlicid": "ANZVI0803005655", "geonet_info_createdate": "2020-05-19", "revisiondate": "2022-08-09", "spatialrepresentationtype_text": "Vector"}, "record_timestamp": "2023-01-23T17:00:40.746Z"}]} diff --git a/ckanext/datavic_harvester/harvesters/base.py b/ckanext/datavic_harvester/harvesters/base.py index 9fc5924..9b15cc4 100644 --- a/ckanext/datavic_harvester/harvesters/base.py +++ b/ckanext/datavic_harvester/harvesters/base.py @@ -17,6 +17,10 @@ class DataVicBaseHarvester(HarvesterBase): + def __init__(self, **kwargs): + self.test = kwargs.get("test", False) + super().__init__(**kwargs) + def _set_config(self, config_str: str) -> None: if config_str: self.config = json.loads(config_str) @@ -29,17 +33,7 @@ def _set_config(self, config_str: str) -> None: self.config = {} def validate_config(self, config: Optional[str]) -> str: - """ - Harvesters can provide this method to validate the configuration - entered in the form. It should return a single string, which will be - stored in the database. Exceptions raised will be shown in the form's - error messages. - - Validates the default_group entered exists and creates default_group_dicts - - :param harvest_object_id: Config string coming from the form - :returns: A string with the validated configuration options - """ + """Validates source config""" if not config: raise ValueError("No config options set") diff --git a/ckanext/datavic_harvester/harvesters/delwp.py b/ckanext/datavic_harvester/harvesters/delwp.py index 0c6aad1..4989cff 100644 --- a/ckanext/datavic_harvester/harvesters/delwp.py +++ b/ckanext/datavic_harvester/harvesters/delwp.py @@ -70,14 +70,14 @@ def _validate_organisation_mapping(self, config: dict[str, Any]) -> None: raise ValueError("organisation_mapping must be a *list* of organisations") for organisation in config["organisation_mapping"]: - resowner: Optional[str] = organisation.get("resowner") - org_name: Optional[str] = organisation.get("org-name") - if not isinstance(organisation, dict): raise ValueError( 'organisation_mapping item must be a *dict*. eg {"resowner": "Organisation A", "org-name": "organisation-a"}' ) + resowner: Optional[str] = organisation.get("resowner") + org_name: Optional[str] = organisation.get("org-name") + if not resowner: raise ValueError( 'organisation_mapping item must have property "resowner". eg "resowner": "Organisation A"' @@ -85,7 +85,7 @@ def _validate_organisation_mapping(self, config: dict[str, Any]) -> None: if not org_name: raise ValueError( - 'organisation_mapping item must have property *org-name*. eg "org-name": "organisation-a"}' + 'organisation_mapping item must have property "org-name". eg "org-name": "organisation-a"}' ) try: @@ -112,7 +112,9 @@ def gather_stage(self, harvest_job): harvest_source_url: str = harvest_job.source.url.rstrip("?") while True: - log.debug(f"{self.HARVESTER} fetching records by url: {harvest_source_url}, page: {page}") + log.debug( + f"{self.HARVESTER} fetching records by url: {harvest_source_url}, page: {page}" + ) records = self._fetch_records(harvest_source_url, page, records_per_page) batch_guids = [] @@ -152,6 +154,9 @@ def gather_stage(self, harvest_job): if len(batch_guids) > 0: guids_in_source.extend(set(batch_guids) - set(previous_guids)) + if self.test: + break + page = page + 1 previous_guids = batch_guids @@ -194,9 +199,13 @@ def _fetch_records( ) log.debug(f"{self.HARVESTER}: getting page of records {request_url}") - resp_text: Optional[str] = self._make_request( - request_url, - {"Authorization": self.config["api_auth"]}, + resp_text: Optional[str] = ( + self._get_mocked_records() + if self.test + else self._make_request( + request_url, + {"Authorization": self.config["api_auth"]}, + ) ) if not resp_text: @@ -256,24 +265,17 @@ def import_stage(self, harvest_object: HarvestObject) -> bool: if previous_harvest_object: previous_harvest_object.current = False - # previous_harvest_object.add() harvest_object.current = True pkg_dict = self._get_pkg_dict(harvest_object) - # harvest_object.add() - if status not in ["new", "change"]: return True if status == "new": pkg_dict["id"] = str(uuid.uuid4()) harvest_object.package_id = pkg_dict["id"] - # harvest_object.add() - # Defer constraints and flush so the dataset can be indexed with - # the harvest object id (on the after_show hook from the harvester - # plugin) model.Session.execute( "SET CONSTRAINTS harvest_object_package_id_fkey DEFERRED" ) @@ -453,13 +455,7 @@ def _create_organization(self, resowner: str, harvest_object: HarvestObject) -> try: org_id = tk.get_action("organization_create")( - { - "user": self._get_user_name(), - "return_id_only": True, - "ignore_auth": True, - "model": model, - "session": model.Session, - }, + self._make_context(), {"name": org_name, "title": resowner}, ) except Exception as e: @@ -592,7 +588,11 @@ def _get_geoserver_content_with_uuid( self, geoserver_url: str, metadata_uuid: Optional[str] ) -> Optional[Union[Tag, NavigableString]]: - resp_text: Optional[str] = self._make_request(geoserver_url) + resp_text: Optional[str] = ( + self._get_mocked_geores() + if self.test + else self._make_request(geoserver_url) + ) if not resp_text: return diff --git a/ckanext/datavic_harvester/helpers.py b/ckanext/datavic_harvester/helpers.py index c6066c7..5f011ba 100644 --- a/ckanext/datavic_harvester/helpers.py +++ b/ckanext/datavic_harvester/helpers.py @@ -7,6 +7,7 @@ from bs4 import BeautifulSoup import ckan.plugins.toolkit as tk +from ckan.lib.munge import munge_title_to_name as munge_title from ckanext.datavicmain.helpers import field_choices @@ -84,11 +85,7 @@ def get_from_to(page: int, datasets_per_page: int) -> tuple[int, int]: def munge_title_to_name(value: str) -> str: - """Munge a title into a name""" - name = re.sub("[ .:/,]", "-", value) - name = re.sub("[^a-zA-Z0-9-_]", "", name).lower() - name = re.sub("[-]+", "-", name) - return name.strip("-")[:99] + return munge_title(value) def get_tags(tags: str) -> list[dict[str, str]]: diff --git a/ckanext/datavic_harvester/tests/conftest.py b/ckanext/datavic_harvester/tests/conftest.py new file mode 100644 index 0000000..313558f --- /dev/null +++ b/ckanext/datavic_harvester/tests/conftest.py @@ -0,0 +1,136 @@ +import pytest +import factory +from pytest_factoryboy import register +from ckantoolkit.tests.factories import _get_action_user_name +from faker import Faker + +import ckan.plugins.toolkit as tk +from ckan.tests import factories + +import ckanext.harvest.model as harvest_model +from ckanext.harvest.tests.factories import HarvestJob, HarvestSource + +fake = Faker() + + +@register +class GroupFactory(factories.Group): + pass + + +register(GroupFactory, "group") + + +class OrganizationFactory(factories.Organization): + pass + + +register(OrganizationFactory, "organization") + + +@register +class DatasetFactory(factories.Dataset): + access = "yes" + category = factory.LazyFunction(lambda: GroupFactory()["id"]) + date_created_data_asset = factory.Faker("date") + extract = factory.Faker("sentence") + license_id = "notspecified" + personal_information = "yes" + organization_visibility = "all" + update_frequency = "unknown" + workflow_status = "test" + protective_marking = "official" + enable_dtv = False + + +register(DatasetFactory, "dataset") + + +@register +class HarvestSourceFactory(HarvestSource): + owner_org = factory.LazyFunction(lambda: OrganizationFactory()["id"]) + _return_type = "obj" + + +@register +class HarvestJobFactory(HarvestJob): + source = factory.SubFactory(HarvestSourceFactory) + + _return_type = "obj" + + +class HarvestObject(factory.Factory): + + FACTORY_FOR = harvest_model.HarvestObject + + class Meta: + model = harvest_model.HarvestObject + + _return_type = "dict" + + job = factory.SubFactory(HarvestJobFactory) + extras = {"status": "new"} + + @classmethod + def _create(cls, target_class, *args, **kwargs): + if args: + assert False, "Positional args aren't supported, use keyword args." + + if "job_id" not in kwargs: + kwargs["job_id"] = kwargs["job"].id + kwargs["source_id"] = kwargs["job"].source.id + + if "job" in kwargs: + kwargs.pop("job") + + job_dict = tk.get_action("harvest_object_create")( + {"user": _get_action_user_name(kwargs)}, kwargs + ) + + if cls._return_type == "dict": + return job_dict + else: + return harvest_model.HarvestObject.get(job_dict["id"]) + + +@register +class HarvestObjectFactory(HarvestObject): + _return_type = "obj" + + +@pytest.fixture +def harvest_object(): + return HarvestObjectFactory() + + +@pytest.fixture +def clean_db(reset_db): + reset_db() + harvest_model.setup() + + +@pytest.fixture +def delwp_config(group, organization_factory): + org1 = organization_factory() + org2 = organization_factory() + return { + "default_groups": [group["id"]], + "default_group_dicts": [group], + "full_metadata_url_prefix": "https://metashare.maps.vic.gov.au/geonetwork/srv/api/records/{UUID}/formatters/sdm-html?root=html&output=html", + "resource_url_prefix": "https://datashare.maps.vic.gov.au/search?md=", + "resource_attribution": "Copyright (c) The State of Victoria, Department of Environment, Land, Water & Planning", + "license_id": "cc-by", + "dataset_type": "datashare-metadata", + "api_auth": "Apikey XXX", + "geoserver_dns": "https://opendata-uat.maps.vic.gov.au", + "organisation_mapping": [ + { + "resowner": org1["title"], + "org-name": org2["name"], + }, + { + "resowner": org1["title"], + "org-name": org2["name"], + }, + ], + } diff --git a/ckanext/datavic_harvester/tests/harvesters/__init__.py b/ckanext/datavic_harvester/tests/harvesters/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/ckanext/datavic_harvester/tests/harvesters/base/test_base.py b/ckanext/datavic_harvester/tests/harvesters/base/test_base.py new file mode 100644 index 0000000..985d422 --- /dev/null +++ b/ckanext/datavic_harvester/tests/harvesters/base/test_base.py @@ -0,0 +1,48 @@ +import pytest + +from ckan.model import State +from ckan.tests.helpers import call_action + +from ckanext.datavic_harvester.harvesters.base import DataVicBaseHarvester as Base + + +@pytest.fixture +def harvester(): + return Base() + + +class TestBaseHarvester: + @pytest.mark.usefixtures("clean_db") + def test_delete_package(self, dataset, harvester: Base): + dataset_id: str = dataset["id"] + assert dataset_id + harvester._delete_package(dataset_id, "guid") + + package_dict = call_action("package_show", id=dataset_id) + assert package_dict["state"] == State.DELETED + + def test_make_context(self, harvester: Base): + context = harvester._make_context() + + assert context["user"] == harvester._get_user_name() + assert context["return_id_only"] + assert context["ignore_auth"] + assert context["model"] + assert context["session"] + + def test_get_extra(self, harvester: Base): + assert harvester._get_extra( + {"extras": [{"key": "test", "value": True}]}, "test" + ) + assert not harvester._get_extra({}, "test") + assert not harvester._get_extra( + {"extras": [{"key": "test2", "value": True}]}, "test" + ) + + @pytest.mark.usefixtures("with_plugins", "clean_db") + def test_get_extra_object(self, harvester: Base, harvest_object_factory): + harvest_object = harvest_object_factory(extras={"test": "1"}) + assert harvester._get_object_extra(harvest_object, "test") + + harvest_object = harvest_object_factory() + assert not harvester._get_object_extra(harvest_object, "test") diff --git a/ckanext/datavic_harvester/tests/harvesters/base/test_base_config.py b/ckanext/datavic_harvester/tests/harvesters/base/test_base_config.py new file mode 100644 index 0000000..3726ea3 --- /dev/null +++ b/ckanext/datavic_harvester/tests/harvesters/base/test_base_config.py @@ -0,0 +1,98 @@ +from __future__ import annotations + +from typing import Any + +import json +import pytest + +from ckanext.datavic_harvester.harvesters.base import DataVicBaseHarvester as Base + + +@pytest.fixture +def harvester(): + return Base() + + +@pytest.fixture +def valid_config(group): + return { + "default_groups": [group["id"]], + "default_license": {"id": "test", "title": "test"}, + } + + +class TestBaseConfig: + def test_set_config(self, harvester: Base): + assert harvester.config is None + harvester._set_config("") + assert harvester.config == {} + + def test_validate_empty(self, harvester: Base): + with pytest.raises(ValueError, match="No config options set"): # type: ignore + harvester.validate_config(None) + + def test_validate_only_json_string(self, harvester: Base): + with pytest.raises(ValueError, match="Expecting value:"): # type: ignore + harvester.validate_config("hello") + + def test_validate_no_default_group(self, harvester: Base): + with pytest.raises(ValueError, match="default_groups must be set"): # type: ignore + harvester.validate_config("{}") + + def test_validate_default_group_not_list(self, harvester: Base): + with pytest.raises( + ValueError, match="default_groups must be a \*list\* of group names\/ids" # type: ignore + ): + harvester.validate_config(json.dumps({"default_groups": {}})) + + def test_validate_default_group_value_not_string(self, harvester: Base): + with pytest.raises( + ValueError, + match="default_groups must be a list of group names/ids", # type: ignore + ): + harvester.validate_config(json.dumps({"default_groups": [1]})) + + def test_validate_default_group_not_exist(self, harvester: Base): + group_name: str = "test" + with pytest.raises(ValueError, match=f"Default group {group_name} not found"): # type: ignore + harvester.validate_config(json.dumps({"default_groups": [group_name]})) + + @pytest.mark.usefixtures("clean_db") + def test_validate_default_group_exist(self, harvester: Base, group): + """If group exists, the `default_group_dicts` will be populated with a list + of group data""" + config_str: str = harvester.validate_config( + json.dumps({"default_groups": [group["id"]]}) + ) + config: dict[str, Any] = json.loads(config_str) + + # default_license is not mandatory + assert "default_license" not in config + assert isinstance(config["default_group_dicts"], list) + assert config["default_group_dicts"][0]["id"] == group["id"] + + def test_validate_default_license_not_dict(self, harvester: Base, group): + + with pytest.raises( + ValueError, match="default_license field must be a dictionary" # type: ignore + ): + harvester._validate_default_license( + {"default_groups": [group["id"]], "default_license": "test"} + ) + + @pytest.mark.usefixtures("clean_db") + def test_validate_default_license_missing_id_or_title(self, harvester: Base, group): + + with pytest.raises( + ValueError, match="default_license must contain `id` and `title` fields" # type: ignore + ): + harvester._validate_default_license( + {"default_groups": [group["id"]], "default_license": {"id": "test"}} + ) + + @pytest.mark.usefixtures("clean_db") + def test_validate_return_dumped_json(self, harvester: Base, valid_config): + config: str = harvester.validate_config(json.dumps(valid_config)) + + assert config + assert isinstance(config, str) diff --git a/ckanext/datavic_harvester/tests/harvesters/dcat_json/test_dcat_json.py b/ckanext/datavic_harvester/tests/harvesters/dcat_json/test_dcat_json.py new file mode 100644 index 0000000..e69de29 diff --git a/ckanext/datavic_harvester/tests/harvesters/dcat_json/test_dcat_json_config.py b/ckanext/datavic_harvester/tests/harvesters/dcat_json/test_dcat_json_config.py new file mode 100644 index 0000000..e69de29 diff --git a/ckanext/datavic_harvester/tests/harvesters/delwp/test_delwp.py b/ckanext/datavic_harvester/tests/harvesters/delwp/test_delwp.py new file mode 100644 index 0000000..9250f56 --- /dev/null +++ b/ckanext/datavic_harvester/tests/harvesters/delwp/test_delwp.py @@ -0,0 +1,227 @@ +from __future__ import annotations + +import json +from typing import Any +from typing_extensions import TypedDict +from types import GeneratorType +from datetime import datetime as dt + +import pytest + +from ckan import model +from ckan.tests.helpers import call_action + +import ckanext.harvest.model as harvest_model + +import ckanext.datavic_harvester.helpers as h +from ckanext.datavic_harvester.harvesters import DelwpHarvester + + +class DelwpConfig(TypedDict): + default_groups: list[str] + default_group_dicts: dict[str, Any] + full_metadata_url_prefix: str + resource_url_prefix: str + resource_attribution: str + license_id: str + dataset_type: str + api_auth: str + geoserver_dns: str + organisation_mapping: list[dict[str, str]] + + +@pytest.fixture +def harvester(): + harvester = DelwpHarvester(test=True) + + harvester._set_config(json.dumps({"dataset_type": "delwp"})) + + return harvester + + +@pytest.fixture +def delwp_dataset(harvester: DelwpHarvester): + records = harvester._fetch_records("test_url", 0, 0) + datasets = harvester._get_record_metadata(records) + return next(datasets) + + +class TestDelwpHarvester: + @pytest.mark.usefixtures("with_plugins", "clean_db") + def test_gather_stage( + self, + harvester: DelwpHarvester, + harvest_job_factory, + harvest_source_factory, + delwp_config: DelwpConfig, + ): + source = harvest_source_factory( + config=json.dumps(delwp_config), source_type=harvester.info()["name"] + ) + harvest_job = harvest_job_factory(source=source) + obj_ids = harvester.gather_stage(harvest_job) + + assert harvest_job.gather_errors == [] + assert type(obj_ids) == list + + datasets = json.loads(harvester._get_mocked_records())["records"] + assert len(set(obj_ids)) == len(datasets) + + harvest_object = harvest_model.HarvestObject.get(obj_ids[0]) + assert harvest_object.guid == datasets[0]["fields"]["uuid"] + assert json.loads(harvest_object.content) == datasets[0]["fields"] + + @pytest.mark.usefixtures("with_plugins", "clean_db") + def test_import_stage( + self, + harvester: DelwpHarvester, + harvest_source_factory, + harvest_job_factory, + harvest_object_factory, + delwp_config: DelwpConfig, + delwp_dataset: dict[str, Any], + ): + source = harvest_source_factory( + config=json.dumps(delwp_config), source_type=harvester.info()["name"] + ) + harvest_job = harvest_job_factory(source=source) + harvest_object = harvest_object_factory( + guid=delwp_dataset["uuid"], + content=json.dumps(delwp_dataset), + job=harvest_job, + ) + + result = harvester.import_stage(harvest_object) + + assert harvest_object.errors == [] + assert result is True + assert harvest_object.package_id + + package = model.Package.get(harvest_object.package_id) + + assert package + assert package.name == h.munge_title_to_name(delwp_dataset["title"]) + assert package.extras["primary_purpose_of_collection"] == delwp_dataset["uuid"] + + def test_mock_geores_data(self, harvester: DelwpHarvester): + """The geoserver_url doesn't matter, because we're mocking response. + The `content` with uuid below exists in test data""" + assert harvester._get_geoserver_content_with_uuid( + "geoserver_url", "8ad36246-9a39-53aa-bcbc-8b33aec63cde" + ) + + assert not harvester._get_geoserver_content_with_uuid("geoserver_url", "uuid") + + def test_mock_records_data(self, harvester: DelwpHarvester): + """The actual params doesn't matter, because we're mocking response""" + records = harvester._fetch_records("test_url", 0, 0) + + assert records + assert len(records) == 100 + + datasets = harvester._get_record_metadata(records) + + def test_get_record_metadata(self, harvester: DelwpHarvester): + records = harvester._fetch_records("test_url", 0, 0) + datasets = harvester._get_record_metadata(records) + + assert isinstance(datasets, GeneratorType) + + dataset: dict[str, Any] = next(datasets) + + assert dataset["uuid"] + assert dataset["title"] + assert len([i for i in datasets]) == 99 + + def test_custom_package_create_schema(self, harvester: DelwpHarvester): + custom_schema = harvester._create_custom_package_create_schema() + + assert custom_schema["id"] == [str] + + @pytest.mark.usefixtures("with_plugins", "clean_db") + def test_get_pkg_dict( + self, + harvester: DelwpHarvester, + harvest_object_factory, + delwp_config: DelwpConfig, + delwp_dataset: dict[str, Any], + ): + harvester.config = delwp_config + harvest_object = harvest_object_factory( + guid=delwp_dataset["uuid"], + content=json.dumps(delwp_dataset), + ) + + pkg_dict = harvester._get_pkg_dict(harvest_object) + + assert pkg_dict["primary_purpose_of_collection"] == delwp_dataset["uuid"] + assert pkg_dict["title"] == delwp_dataset["title"] + assert pkg_dict["name"] == h.munge_title_to_name(delwp_dataset["title"]) + assert pkg_dict["license_id"] == delwp_config["license_id"] + assert pkg_dict["notes"] == delwp_dataset["abstract"] + assert pkg_dict["extract"].rstrip(".") in f"{delwp_dataset['abstract']}" + assert pkg_dict["category"] in delwp_config["default_groups"] + assert dt.fromisoformat(pkg_dict["date_created_data_asset"]) + assert dt.fromisoformat(pkg_dict["date_modified_data_asset"]) + + assert pkg_dict["personal_information"] == "no" + assert pkg_dict["protective_marking"] == "official" + assert pkg_dict["access"] == "yes" + assert pkg_dict["organization_visibility"] == "all" + assert pkg_dict["workflow_status"] == "published" + + assert pkg_dict["resources"] + assert pkg_dict["resources"][0]["format"] + assert pkg_dict["resources"][0]["period_end"] + assert pkg_dict["resources"][0]["period_start"] + resource_url: str = pkg_dict["resources"][0]["url"] + assert resource_url + assert delwp_config["resource_url_prefix"] in resource_url + assert delwp_dataset["uuid"] in resource_url + assert ( + pkg_dict["resources"][0]["attribution"] + == delwp_config["resource_attribution"] + ) + + assert pkg_dict["full_metadata_url"] == delwp_config[ + "full_metadata_url_prefix" + ].format(UUID=delwp_dataset["uuid"]) + + for tag in pkg_dict["tags"]: + assert tag["name"] in delwp_dataset["topiccat"] + + organization = call_action("organization_show", id=pkg_dict["owner_org"]) + assert organization["title"] == delwp_dataset["resowner"] + assert organization["name"] == h.munge_title_to_name(delwp_dataset["resowner"]) + + @pytest.mark.usefixtures("with_plugins", "clean_db") + def test_get_existing_organization_exist( + self, harvester: DelwpHarvester, delwp_config: DelwpConfig + ): + resowner: str = delwp_config["organisation_mapping"][0]["resowner"] + orgname: str = delwp_config["organisation_mapping"][0]["org-name"] + + assert ( + harvester._get_existing_organization( + delwp_config["organisation_mapping"], resowner + ) + == orgname + ) + + def test_get_existing_organization_missing(self, harvester: DelwpHarvester): + assert not harvester._get_existing_organization( + [{"resowner": "test", "org-name": "test"}], "whatever" + ) + + @pytest.mark.usefixtures("with_plugins", "clean_db") + def test_create_organization(self, harvester: DelwpHarvester, harvest_object): + assert harvester._create_organization("organization title", harvest_object) + + @pytest.mark.usefixtures("with_plugins", "clean_db") + def test_create_organization_error(self, harvester: DelwpHarvester, harvest_object, organization_factory): + resowner = "organization title" + organization_factory(name=h.munge_title_to_name(resowner)) + org_id: str = harvester._create_organization(resowner, harvest_object) + source = call_action("package_show", id=harvest_object.harvest_source_id) + + assert source["owner_org"] == org_id diff --git a/ckanext/datavic_harvester/tests/harvesters/delwp/test_delwp_config.py b/ckanext/datavic_harvester/tests/harvesters/delwp/test_delwp_config.py new file mode 100644 index 0000000..eac2de8 --- /dev/null +++ b/ckanext/datavic_harvester/tests/harvesters/delwp/test_delwp_config.py @@ -0,0 +1,91 @@ +from __future__ import annotations + +from typing import Any + +import json +import pytest +import mock + +from ckanext.datavic_harvester.harvesters import DelwpHarvester as Base +from ckanext.datavic_harvester.harvesters.base import DataVicBaseHarvester + + +@pytest.fixture +def harvester(): + return Base(test=True) + + +class TestDelwpConfig: + @mock.patch.object(DataVicBaseHarvester, "validate_config") + def test_validate(self, mock_validate, harvester: Base): + """Testing config validation for delwp harvester, skipping super class + validation.""" + config: dict[str, Any] = {} + mock_validate.side_effect = lambda x: x + + with pytest.raises(ValueError, match="full_metadata_url_prefix must be set"): # type: ignore + harvester.validate_config(json.dumps(config)) + + config["full_metadata_url_prefix"] = "test" + with pytest.raises( + ValueError, match="full_metadata_url_prefix must have the \{UUID\} identifier in the URL" # type: ignore + ): + harvester.validate_config(json.dumps(config)) + + config["full_metadata_url_prefix"] = "test{UUID}" + with pytest.raises( + ValueError, match="resource_url_prefix must be set" # type: ignore + ): + harvester.validate_config(json.dumps(config)) + + config["resource_url_prefix"] = "test" + with pytest.raises(ValueError, match="license_id must be set"): # type: ignore + harvester.validate_config(json.dumps(config)) + + config["license_id"] = "test" + with pytest.raises( + ValueError, match="resource_attribution must be set" # type: ignore + ): + harvester.validate_config(json.dumps(config)) + + config["resource_attribution"] = "test" + with pytest.raises( + ValueError, match="dataset_type must be set" # type: ignore + ): + harvester.validate_config(json.dumps(config)) + + config["dataset_type"] = "test" + with pytest.raises(ValueError, match="api_auth must be set"): # type: ignore + harvester.validate_config(json.dumps(config)) + + config["api_auth"] = "test" + + harvester.validate_config(json.dumps(config)) + + def test_validate_organisation_mapping(self, harvester: Base): + config: dict[str, Any] = {"organisation_mapping": {}} + with pytest.raises(ValueError, match="organisation_mapping must be a \*list\* of organisations"): # type: ignore + harvester._validate_organisation_mapping(config) + + config["organisation_mapping"] = [()] + with pytest.raises(ValueError, match="organisation_mapping item must be a \*dict\*"): # type: ignore + harvester._validate_organisation_mapping(config) + + config["organisation_mapping"] = [{"resowner": "test-title"}] + with pytest.raises(ValueError, match='organisation_mapping item must have property "org-name"'): # type: ignore + harvester._validate_organisation_mapping(config) + + config["organisation_mapping"] = [{"org-name": "test-name"}] + with pytest.raises(ValueError, match='organisation_mapping item must have property "resowner"'): # type: ignore + harvester._validate_organisation_mapping(config) + + config["organisation_mapping"] = [{"org-name": "test", "resowner": "test"}] + with pytest.raises(ValueError, match="Organisation test not found"): # type: ignore + harvester._validate_organisation_mapping(config) + + @pytest.mark.usefixtures("clean_db") + def test_validate_return_dumped_json(self, harvester: Base, delwp_config): + config: str = harvester.validate_config(json.dumps(delwp_config)) + + assert config + assert isinstance(config, str) diff --git a/ckanext/datavic_harvester/tests/harvesters/ods/test_ods.py b/ckanext/datavic_harvester/tests/harvesters/ods/test_ods.py new file mode 100644 index 0000000..9d282ba --- /dev/null +++ b/ckanext/datavic_harvester/tests/harvesters/ods/test_ods.py @@ -0,0 +1,15 @@ +from ckanext.datavic_harvester.harvesters import DataVicODSHarvester + + +class TestODSHarvester(object): + def test_description_refine_markdown(self): + harvester = DataVicODSHarvester() + + assert not harvester._description_refine(None) + assert not harvester._description_refine("") + assert ( + harvester._description_refine( + "'Yay GitHub'" + ) + == "'**Yay** [GitHub](http://github.com)'" + ) diff --git a/ckanext/datavic_harvester/tests/test_helpers.py b/ckanext/datavic_harvester/tests/test_helpers.py new file mode 100644 index 0000000..e69de29 diff --git a/dev-requirements.txt b/dev-requirements.txt index e69de29..709328d 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -0,0 +1,5 @@ +pytest-ckan +pytest-mock +pytest-factoryboy +pytest==4.6.5 +black diff --git a/test.ini b/test.ini index c7c70e7..7341e47 100644 --- a/test.ini +++ b/test.ini @@ -11,9 +11,16 @@ port = 5000 [app:main] use = config:../ckan/test-core.ini -# Insert any custom config settings to be used when running your extension's -# tests here. - +ckan.plugins = + datavicmain_dataset + harvest + test_harvester delwp_harvester + scheming_datasets +scheming.dataset_schemas = + ckanext.datavicmain:iar_ckan_dataset.yaml +scheming.presets = + ckanext.scheming:presets.json + ckanext.datavicmain:iar_presets.json # Logging configuration [loggers] @@ -46,4 +53,4 @@ level = NOTSET formatter = generic [formatter_generic] -format = %(asctime)s %(levelname)-5.5s [%(name)s] %(message)s \ No newline at end of file +format = %(asctime)s %(levelname)-5.5s [%(name)s] %(message)s From 4f026c71c878ab0191c4502724a8c985fb06c83e Mon Sep 17 00:00:00 2001 From: mutantsan Date: Fri, 3 Feb 2023 16:01:44 +0200 Subject: [PATCH 19/21] SXDEDPCXZIC-109 / write test for dcat_json harvester and helpers --- .../data/dcat_json_datasets.txt | 148 +-- .../data/dcat_json_full_metadata.txt | 915 ++++++++++++++++++ .../datavic_harvester/harvesters/dcat_json.py | 35 +- ckanext/datavic_harvester/helpers.py | 14 +- ckanext/datavic_harvester/tests/conftest.py | 89 ++ .../harvesters/dcat_json/test_dcat_json.py | 151 +++ .../dcat_json/test_dcat_json_config.py | 2 + .../datavic_harvester/tests/test_helpers.py | 59 ++ test.ini | 2 +- 9 files changed, 1319 insertions(+), 96 deletions(-) create mode 100644 ckanext/datavic_harvester/data/dcat_json_full_metadata.txt diff --git a/ckanext/datavic_harvester/data/dcat_json_datasets.txt b/ckanext/datavic_harvester/data/dcat_json_datasets.txt index 41ed05e..6259e50 100644 --- a/ckanext/datavic_harvester/data/dcat_json_datasets.txt +++ b/ckanext/datavic_harvester/data/dcat_json_datasets.txt @@ -3,78 +3,80 @@ "@type": "dcat:Catalog", "conformsTo": "https://project-open-data.cio.gov/v1.1/schema", "describedBy": "https://project-open-data.cio.gov/v1.1/schema/catalog.json", - "dataset": [ - { - "@type": "dcat:Dataset", - "identifier": "https://www.arcgis.com/home/item.html?id=4a3f184ced3d48c883917804393ad420&sublayer=0", - "landingPage": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::melbourne-water-land-availability-for-our-space-your-place", - "title": "Melbourne Water Land Availability for Our Space Your Place", - "description": "
This dataset shows land parcels owned by Melbourne Water that have potential to be utilised for liveability related projects. The data does not provide a guarantee that the land can be used, or used by any particular activity. Authority to use the land will still need to be assessed and granted by Melbourne Water. Due to the restrictive nature of potentially using land containing assets such as pipes, pits, retarding basins etc the land has been classified into three landuse types. These types describe the potential for using the land area for different purposes. Land classified as "A" (or "Likely Available") are those area that are likely to be available for community projects and could be used for a variety of purposes depending on the space. Land classified as "L" (or "Restrictions Apply") are areas likely to be available for small scale or portable infrastructure such as park benches, goal posts, landscaping and temporary food vans. They are unlikely to be available for large scale infrastructure due to access, drainage, safety, current lease or licence agreements or other requirements. Land classified as "X" (or "Access Only") are areas likely to be available for access related activities such as walking, running or yoga. 24 hour access is usually required and infrastructure is unlikely to be permitted. To apply, visit: Our Space Your Place

Approximately 100 Melbourne Water asset datasets were used in the creation of this dataset. Rules governing the use of land on and around each asset class were established and applied to these areas. Coverage is across approximately 80% of MW owned land areas. The next edition aims to increase this to all applicable MW owned land.


NOTE: Whilst every effort has been taken in collecting, validating and providing the attached data, Melbourne Water Corporation makes no representations or guarantees as to the accuracy or completeness of this data. Any person or group that uses this data does so at its own risk and should make their own assessment and investigations as to the suitability and/or application of the data. Melbourne Water Corporation shall not be liable in any way to any person or group for loss of any kind including damages, costs, interest, loss of profits or special loss or damage, arising from any use, error, inaccuracy, incompleteness or other defect in this data.
", - "keyword": [ - "Land Availability Conditions" - ], - "issued": "2017-08-02T07:18:27.000Z", - "modified": "2022-05-06T05:29:14.178Z", - "publisher": { - "source": "Melbourne Water Corporation", - "name": "Melbourne Water Corporation" - }, - "contactPoint": { - "fn": "Melbourne Water Corporation", - "hasEmail": "mailto:enquiry@melbournewater.com.au", - "@type": "vcard:Contact" - }, - "accessLevel": "public", - "spatial": "144.3896,-38.5081,146.4106,-37.1463", - "license": "Creative Commons Attribution Share-Alike 4.0 International", - "distribution": [ - { - "@type": "dcat:Distribution", - "title": "ArcGIS Hub Dataset", - "format": "Web Page", - "mediaType": "text/html", - "accessURL": "https://data-melbournewater.opendata.arcgis.com/maps/melbournewater::melbourne-water-land-availability-for-our-space-your-place" - }, - { - "@type": "dcat:Distribution", - "title": "ArcGIS GeoService", - "format": "ArcGIS GeoServices REST API", - "mediaType": "application/json", - "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Land_Availability_Conditions/FeatureServer/0" - }, - { - "@type": "dcat:Distribution", - "title": "GeoJSON", - "format": "GeoJSON", - "mediaType": "application/vnd.geo+json", - "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::melbourne-water-land-availability-for-our-space-your-place.geojson?outSR=%7B%22latestWkid%22%3A3857%2C%22wkid%22%3A102100%7D" - }, - { - "@type": "dcat:Distribution", - "title": "CSV", - "format": "CSV", - "mediaType": "text/csv", - "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::melbourne-water-land-availability-for-our-space-your-place.csv?outSR=%7B%22latestWkid%22%3A3857%2C%22wkid%22%3A102100%7D" - }, - { - "@type": "dcat:Distribution", - "title": "KML", - "format": "KML", - "mediaType": "application/vnd.google-earth.kml+xml", - "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::melbourne-water-land-availability-for-our-space-your-place.kml?outSR=%7B%22latestWkid%22%3A3857%2C%22wkid%22%3A102100%7D" - }, - { - "@type": "dcat:Distribution", - "title": "Shapefile", - "format": "ZIP", - "mediaType": "application/zip", - "accessURL": "https://data-melbournewater.opendata.arcgis.com/datasets/melbournewater::melbourne-water-land-availability-for-our-space-your-place.zip?outSR=%7B%22latestWkid%22%3A3857%2C%22wkid%22%3A102100%7D" - } - ], - "theme": [ - "geospatial" - ] - }, + "dataset": [ + { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=74dd92127eea4404b0dad1d7e39bf0e3&sublayer=1", + "landingPage": "https://vicroadsopendata-vicroadsmaps.opendata.arcgis.com/maps/vicroadsmaps::road-crashes-for-five-years-victoria", + "title": "Road Crashes for five Years Victoria", + "description": "Fatal and injury crashes on Victorian roads during the latest five year reporting period. This data allows users to analyse Victorian fatal and injury crash data based on time, location, conditions, crash type, road user type, object hit etc. Road Safety data is provided by VicRoads for educational and research purposes. This data is in Web Mercator (Auxiliary Sphere) projection.", + "keyword": [ + "Crash", + "RCIS", + "DoT", + "EIM" + ], + "issued": "2021-02-19T11:02:30.000Z", + "modified": "2021-10-05T02:14:37.000Z", + "publisher": { + "name": "Department of Transport" + }, + "contactPoint": { + "@type": "vcard:Contact", + "fn": "VicRoads", + "hasEmail": "mailto:sissupport@roads.vic.gov.au" + }, + "accessLevel": "public", + "spatial": "140.7174,-38.9561,149.5451,-34.0182", + "license": "http://creativecommons.org/licenses/by/4.0", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://vicroadsopendata-vicroadsmaps.opendata.arcgis.com/maps/vicroadsmaps::road-crashes-for-five-years-victoria" + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://vicdata.vicroads.vic.gov.au/server/rest/services/SMOP/SMOP_Open_Data_040521/FeatureServer/1" + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://vicroadsopendata-vicroadsmaps.opendata.arcgis.com/datasets/vicroadsmaps::road-crashes-for-five-years-victoria.geojson?outSR=%7B%22latestWkid%22%3A3111%2C%22wkid%22%3A102171%7D" + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://vicroadsopendata-vicroadsmaps.opendata.arcgis.com/datasets/vicroadsmaps::road-crashes-for-five-years-victoria.csv?outSR=%7B%22latestWkid%22%3A3111%2C%22wkid%22%3A102171%7D" + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://vicroadsopendata-vicroadsmaps.opendata.arcgis.com/datasets/vicroadsmaps::road-crashes-for-five-years-victoria.kml?outSR=%7B%22latestWkid%22%3A3111%2C%22wkid%22%3A102171%7D" + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://vicroadsopendata-vicroadsmaps.opendata.arcgis.com/datasets/vicroadsmaps::road-crashes-for-five-years-victoria.zip?outSR=%7B%22latestWkid%22%3A3111%2C%22wkid%22%3A102171%7D" + } + ], + "theme": [ + "geospatial" + ] + }, { "@type": "dcat:Dataset", "identifier": "https://www.arcgis.com/home/item.html?id=dba0069ce11940bab87420344abdff78&sublayer=0", @@ -3301,4 +3303,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/ckanext/datavic_harvester/data/dcat_json_full_metadata.txt b/ckanext/datavic_harvester/data/dcat_json_full_metadata.txt new file mode 100644 index 0000000..5415582 --- /dev/null +++ b/ckanext/datavic_harvester/data/dcat_json_full_metadata.txt @@ -0,0 +1,915 @@ + + + + + +Metadata Capture & Discovery Tool + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+
+
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + +
+ + + + diff --git a/ckanext/datavic_harvester/harvesters/dcat_json.py b/ckanext/datavic_harvester/harvesters/dcat_json.py index 665aa87..bb0c83f 100644 --- a/ckanext/datavic_harvester/harvesters/dcat_json.py +++ b/ckanext/datavic_harvester/harvesters/dcat_json.py @@ -47,6 +47,8 @@ def _get_package_dict( soup: BeautifulSoup = BeautifulSoup(pkg_dict["notes"], "html.parser") + pkg_dict["name"] = self._get_package_name(harvest_object, pkg_dict["title"]) + self._set_description_and_extract(pkg_dict, soup) self._set_full_metadata_url_and_update_frequency(pkg_dict, soup) self._mutate_tags(pkg_dict) @@ -60,10 +62,8 @@ def _set_description_and_extract(self, pkg_dict: dict[str, Any], soup) -> None: pkg_dict["notes"] = "No description has been entered for this dataset." pkg_dict["extract"] = "No abstract has been entered for this dataset." else: - allowed_tags: list[str] = ["a", "br"] pkg_dict["notes"] = helpers.unwrap_all_except( - helpers.remove_all_attrs_except_for(soup, allowed_tags), - allowed_tags, + helpers.remove_all_attrs_except_for(soup), ) pkg_dict["extract"] = self._generate_extract(soup) @@ -77,6 +77,7 @@ def _generate_extract(self, soup: BeautifulSoup) -> str: except Exception as ex: log.error(f"Generate extract error for: {soup}") log.error(str(ex)) + return "" return notes def _set_full_metadata_url_and_update_frequency( @@ -104,7 +105,11 @@ def _fetch_update_frequency(self, full_metadata_url: str) -> str: default_udp_frequency: str = "unknown" - resp_text: Optional[str] = self._make_request(full_metadata_url) + resp_text: Optional[str] = ( + self._get_mocked_full_metadata() + if self.test + else self._make_request(full_metadata_url) + ) if not resp_text: log.error(f"Request error occured during fetching update_frequency") @@ -124,10 +129,8 @@ def _fetch_update_frequency(self, full_metadata_url: str) -> str: for tag in soup( "script", attrs={"id": "tpx_ExternalView_Frequency_of_Updates"} ): - tag_text: str = tag.get_text() - for k, v in frequency_mapping.items(): - if k in tag_text: + if k in tag.string: return v return default_udp_frequency @@ -162,7 +165,7 @@ def _set_default_group(self, pkg_dict: dict[str, Any]) -> None: pkg_dict["groups"].extend( [ - group + {"id": group["id"], "name": group["name"]} for group in default_groups if group["id"] not in existing_group_ids ] @@ -181,9 +184,6 @@ def _set_required_fields_defaults( if not self._get_extra(pkg_dict, "protective_marking"): pkg_dict["protective_marking"] = "official" - if not self._get_extra(pkg_dict, "update_frequency"): - pkg_dict["update_frequency"] = "unknown" - if not self._get_extra(pkg_dict, "organization_visibility"): pkg_dict["organization_visibility"] = "current" @@ -228,11 +228,20 @@ def _get_existing_dataset(self, guid: str) -> Optional[dict[str, Any]]: {"id": datasets[0][0]}, ) - def __get_content_and_type(self, url, harvest_job, page=1, content_type=None): + def _get_content_and_type(self, url, harvest_job, page=1, content_type=None): """Mock data, use it instead of actual request for develop process""" - return self._get_mocked_content(), "" + + if self.test: + return self._get_mocked_content(), "" + + return super()._get_content_and_type(url, harvest_job, page, content_type) def _get_mocked_content(self) -> str: here: str = path.abspath(path.dirname(__file__)) with open(path.join(here, "../data/dcat_json_datasets.txt")) as f: return f.read() + + def _get_mocked_full_metadata(self): + here: str = path.abspath(path.dirname(__file__)) + with open(path.join(here, "../data/dcat_json_full_metadata.txt")) as f: + return f.read() diff --git a/ckanext/datavic_harvester/helpers.py b/ckanext/datavic_harvester/helpers.py index 5f011ba..71cf061 100644 --- a/ckanext/datavic_harvester/helpers.py +++ b/ckanext/datavic_harvester/helpers.py @@ -2,7 +2,7 @@ import re import logging -from typing import Optional +from typing import Optional, Any from bs4 import BeautifulSoup @@ -15,14 +15,12 @@ log = logging.getLogger(__name__) -def remove_all_attrs_except_for( - soup: BeautifulSoup, allowed_tags: list[str] = ["a", "br"] -) -> BeautifulSoup: +def remove_all_attrs_except_for(soup: BeautifulSoup) -> BeautifulSoup: """Remove all attributes from tags inside soup except for the listed ones Leave only "target" and "href" attributes for allowed ones.""" for tag in soup.find_all(True): - if tag.name not in allowed_tags: + if tag.name not in ["a", "br"]: tag.attrs = {} else: attrs = dict(tag.attrs) @@ -32,12 +30,10 @@ def remove_all_attrs_except_for( return soup -def unwrap_all_except( - soup: BeautifulSoup, allowed_tags: list[str] = ["a", "br"] -) -> str: +def unwrap_all_except(soup: BeautifulSoup) -> str: """Removes all tags from soup obj except for allowed ones""" for tag in soup.find_all(True): - if tag.name not in allowed_tags: + if tag.name not in ["a", "br"]: tag.unwrap() return str(soup) diff --git a/ckanext/datavic_harvester/tests/conftest.py b/ckanext/datavic_harvester/tests/conftest.py index 313558f..c9a5c65 100644 --- a/ckanext/datavic_harvester/tests/conftest.py +++ b/ckanext/datavic_harvester/tests/conftest.py @@ -1,3 +1,7 @@ +from __future__ import annotations + +from typing import Any + import pytest import factory from pytest_factoryboy import register @@ -134,3 +138,88 @@ def delwp_config(group, organization_factory): }, ], } + + +@pytest.fixture +def dcat_config(group): + return { + "default_groups": [group["id"]], + "default_group_dicts": [group], + "default_license": {"id": "notspecified", "title": "License not specified"}, + "default_full_metadata_url": "https://localhost/metadata/", + "full_metadata_url_pattern": "localhost/metadata", + } + + +@pytest.fixture +def dcat_dataset(): + return { + "@type": "dcat:Dataset", + "identifier": "https://www.arcgis.com/home/item.html?id=4a3f184ced3d48c883917804393ad420&sublayer=0", + "landingPage": "https://localhost/maps/melbournewater::melbourne-water-land-availability-for-our-space-your-place", + "title": "Melbourne Water Land Availability for Our Space Your Place", + "description": "Fatal and injury crashes on Victorian roads during the latest five year reporting period. This data allows users to analyse Victorian fatal and injury crash data based on time, location, conditions, crash type, road user type, object hit etc. Road Safety data is provided by VicRoads for educational and research purposes. This data is in Web Mercator (Auxiliary Sphere) projection.", + "issued": "2017-08-02T07:18:27.000Z", + "modified": "2022-05-06T05:29:14.178Z", + "publisher": { + "source": "Melbourne Water Corporation", + "name": "Melbourne Water Corporation", + }, + "contactPoint": { + "fn": "Melbourne Water Corporation", + "hasEmail": "mailto:enquiry@melbournewater.com.au", + "@type": "vcard:Contact", + }, + "accessLevel": "public", + "spatial": "144.3896,-38.5081,146.4106,-37.1463", + "license": "Creative Commons Attribution Share-Alike 4.0 International", + "distribution": [ + { + "@type": "dcat:Distribution", + "title": "ArcGIS Hub Dataset", + "format": "Web Page", + "mediaType": "text/html", + "accessURL": "https://localhost/maps/melbournewater::melbourne-water-land-availability-for-our-space-your-place", + }, + { + "@type": "dcat:Distribution", + "title": "ArcGIS GeoService", + "format": "ArcGIS GeoServices REST API", + "mediaType": "application/json", + "accessURL": "https://services5.arcgis.com/ZSYwjtv8RKVhkXIL/arcgis/rest/services/Land_Availability_Conditions/FeatureServer/0", + }, + { + "@type": "dcat:Distribution", + "title": "GeoJSON", + "format": "GeoJSON", + "mediaType": "application/vnd.geo+json", + "accessURL": "https://localhost/datasets/melbournewater::melbourne-water-land-availability-for-our-space-your-place.geojson?outSR=%7B%22latestWkid%22%3A3857%2C%22wkid%22%3A102100%7D", + }, + { + "@type": "dcat:Distribution", + "title": "CSV", + "format": "CSV", + "mediaType": "text/csv", + "accessURL": "https://localhost/datasets/melbournewater::melbourne-water-land-availability-for-our-space-your-place.csv?outSR=%7B%22latestWkid%22%3A3857%2C%22wkid%22%3A102100%7D", + }, + { + "@type": "dcat:Distribution", + "title": "KML", + "format": "KML", + "mediaType": "application/vnd.google-earth.kml+xml", + "accessURL": "https://localhost/datasets/melbournewater::melbourne-water-land-availability-for-our-space-your-place.kml?outSR=%7B%22latestWkid%22%3A3857%2C%22wkid%22%3A102100%7D", + }, + { + "@type": "dcat:Distribution", + "title": "Shapefile", + "format": "ZIP", + "mediaType": "application/zip", + "accessURL": "https://localhost/datasets/melbournewater::melbourne-water-land-availability-for-our-space-your-place.zip?outSR=%7B%22latestWkid%22%3A3857%2C%22wkid%22%3A102100%7D", + }, + ], + "theme": ["geospatial"], + } + +@pytest.fixture +def dcat_description(dcat_dataset: dict[str, Any]): + return dcat_dataset["description"] diff --git a/ckanext/datavic_harvester/tests/harvesters/dcat_json/test_dcat_json.py b/ckanext/datavic_harvester/tests/harvesters/dcat_json/test_dcat_json.py index e69de29..dafc932 100644 --- a/ckanext/datavic_harvester/tests/harvesters/dcat_json/test_dcat_json.py +++ b/ckanext/datavic_harvester/tests/harvesters/dcat_json/test_dcat_json.py @@ -0,0 +1,151 @@ +from __future__ import annotations + +import json +from typing import Any +from typing_extensions import TypedDict +from types import GeneratorType +from datetime import datetime as dt + +import pytest + +from ckan import model +from ckan.tests.helpers import call_action + +import ckanext.harvest.model as harvest_model + +import ckanext.datavic_harvester.helpers as h +from ckanext.datavic_harvester.harvesters import ( + DataVicDCATJSONHarvester as DcatHarvester, +) + + +class DcatConfig(TypedDict): + default_groups: list[str] + default_group_dicts: dict[str, Any] + default_license: dict[str, str] + default_full_metadata_url: str + full_metadata_url_pattern: str + + +@pytest.fixture +def harvester(dcat_config: DcatConfig): + harvester = DcatHarvester(test=True) + harvester.config = dcat_config + + return harvester + + +class TestDcatHarvester: + @pytest.mark.usefixtures("with_plugins", "clean_db") + def test_gather_stage( + self, + harvester: DcatHarvester, + harvest_job_factory, + harvest_source_factory, + dcat_config: DcatConfig, + ): + source = harvest_source_factory( + config=json.dumps(dcat_config), source_type=harvester.info()["name"] + ) + harvest_job = harvest_job_factory(source=source) + obj_ids = harvester.gather_stage(harvest_job) + + assert harvest_job.gather_errors == [] + assert type(obj_ids) == list + + datasets = json.loads(harvester._get_mocked_content())["dataset"] + assert len(set(obj_ids)) == len(datasets) + + harvest_object = harvest_model.HarvestObject.get(obj_ids[0]) + assert harvest_object.guid == datasets[0]["identifier"] + assert json.loads(harvest_object.content) == datasets[0] + + @pytest.mark.usefixtures("with_plugins", "clean_db") + def test_import_stage( + self, + harvester: DcatHarvester, + harvest_source_factory, + harvest_job_factory, + harvest_object_factory, + dcat_config: DcatConfig, + dcat_dataset: dict[str, Any], + ): + source = harvest_source_factory( + config=json.dumps(dcat_config), source_type=harvester.info()["name"] + ) + harvest_job = harvest_job_factory(source=source) + harvest_object = harvest_object_factory( + guid=dcat_dataset["identifier"], + content=json.dumps(dcat_dataset), + job=harvest_job, + ) + + result = harvester.import_stage(harvest_object) + + assert harvest_object.errors == [] + assert result is True + assert harvest_object.package_id + + package = model.Package.get(harvest_object.package_id) + + assert package + assert package.name == h.munge_title_to_name(dcat_dataset["title"]) + assert package.extras["guid"] == dcat_dataset["identifier"] + + source = call_action("package_show", id=source.id) + assert source["owner_org"] == package.owner_org + + @pytest.mark.usefixtures("with_plugins", "clean_db") + def test_get_pkg_dict( + self, + harvester: DcatHarvester, + harvest_object_factory, + dcat_config: DcatConfig, + dcat_dataset: dict[str, Any], + ): + harvest_object = harvest_object_factory( + guid=dcat_dataset["identifier"], + content=json.dumps(dcat_dataset), + ) + + pkg_dict, dcat_dict = harvester._get_package_dict(harvest_object) + + assert pkg_dict["notes"] + assert pkg_dict["extract"] in pkg_dict["notes"] + assert pkg_dict["update_frequency"] == "asNeeded" + assert pkg_dict["full_metadata_url"] + + assert pkg_dict["title"] == dcat_dict["title"] + assert pkg_dict["name"] == h.munge_title_to_name(dcat_dataset["title"]) + + assert pkg_dict["license_id"] == dcat_config["default_license"]["id"] + assert ( + pkg_dict["custom_licence_text"] == dcat_config["default_license"]["title"] + ) + + assert pkg_dict["category"] in dcat_config["default_groups"] + + assert dt.fromisoformat(pkg_dict["date_created_data_asset"]) + assert dt.fromisoformat(pkg_dict["date_modified_data_asset"]) + + assert pkg_dict["personal_information"] == "no" + assert pkg_dict["protective_marking"] == "official" + assert pkg_dict["access"] == "yes" + assert pkg_dict["organization_visibility"] == "current" + assert pkg_dict["workflow_status"] == "draft" + + assert pkg_dict["resources"] + assert pkg_dict["resources"][0]["format"] + assert pkg_dict["resources"][0]["name"] + assert pkg_dict["resources"][0]["url"] + + for tag in pkg_dict["tags"]: + assert tag["name"] in dcat_dataset["keyword"] + + def test_get_existing_dataset_by_guid( + self, dataset_factory, harvester: DcatHarvester + ): + dataset = dataset_factory(extras=[{"key": "guid", "value": "test"}]) + assert dataset == harvester._get_existing_dataset("test") + + assert not harvester._get_existing_dataset("test2") diff --git a/ckanext/datavic_harvester/tests/harvesters/dcat_json/test_dcat_json_config.py b/ckanext/datavic_harvester/tests/harvesters/dcat_json/test_dcat_json_config.py index e69de29..2ce9baf 100644 --- a/ckanext/datavic_harvester/tests/harvesters/dcat_json/test_dcat_json_config.py +++ b/ckanext/datavic_harvester/tests/harvesters/dcat_json/test_dcat_json_config.py @@ -0,0 +1,2 @@ +class TestDcatJsonConfig: + """No custom validations yet""" diff --git a/ckanext/datavic_harvester/tests/test_helpers.py b/ckanext/datavic_harvester/tests/test_helpers.py index e69de29..734788e 100644 --- a/ckanext/datavic_harvester/tests/test_helpers.py +++ b/ckanext/datavic_harvester/tests/test_helpers.py @@ -0,0 +1,59 @@ +from bs4 import BeautifulSoup + +import ckanext.datavic_harvester.helpers as h + + +class TestHelpers: + def test_get_update_frequencies(self): + result = h.get_datavic_update_frequencies() + + assert result + assert isinstance(result, list) + assert isinstance(result[0], dict) + assert result[0]["label"] + assert result[0]["value"] + + def test_map_update_frequency(self): + """We're not going to test actual values, because they could change + Instead, check if random value doesn't break anything""" + assert h.map_update_frequency("random") == "unknown" + + def test_get_tags(self): + assert h.get_tags("test1;test2") == [{"name": "test1"}, {"name": "test2"}] + assert h.get_tags("test1,test2") == [{"name": "test1"}, {"name": "test2"}] + assert h.get_tags("test1&test2") == [{"name": "test1&test2"}] + + def test_get_from_to(self): + assert h.get_from_to(1, 500) == (1, 500) + assert h.get_from_to(2, 500) == (501, 1000) + + def test_convert_date_to_isoformat(self): + """We are using key and dataset name params only for logging.""" + assert not h.convert_date_to_isoformat(None, "", "") + assert h.convert_date_to_isoformat( + "2019-10-08T02:12:36.428Z", "", "", strip_tz=False + ) + assert h.convert_date_to_isoformat("2019-12-30T13:00:00+00:00", "", "") + + def test_extract_metadata_url(self, dcat_description: str): + soup = BeautifulSoup(dcat_description, "html.parser") + assert h.extract_metadata_url(soup, "https://localhost/metadata") + assert not h.extract_metadata_url(soup, "https://127.0.0.1/metadata") + + def test_remote_attrs(self, dcat_description: str): + soup = BeautifulSoup(dcat_description) + assert "style" in soup.find("span").attrs # type: ignore + + result: BeautifulSoup = h.remove_all_attrs_except_for(soup) + + assert "style" not in soup.find("span").attrs # type: ignore + assert "href" in result.find("a").attrs # type: ignore + + def test_unwrap(self, dcat_description: str): + soup = BeautifulSoup(dcat_description) + assert soup.find("span") + + result: str = h.unwrap_all_except(h.remove_all_attrs_except_for(soup)) + + assert "span" not in result + assert " Date: Fri, 3 Feb 2023 16:17:50 +0200 Subject: [PATCH 20/21] SXDEDPCXZIC-109 / append TestDelwpHarvester.test_import_stage test --- .../datavic_harvester/tests/harvesters/delwp/test_delwp.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ckanext/datavic_harvester/tests/harvesters/delwp/test_delwp.py b/ckanext/datavic_harvester/tests/harvesters/delwp/test_delwp.py index 9250f56..18b0be1 100644 --- a/ckanext/datavic_harvester/tests/harvesters/delwp/test_delwp.py +++ b/ckanext/datavic_harvester/tests/harvesters/delwp/test_delwp.py @@ -103,6 +103,9 @@ def test_import_stage( assert package.name == h.munge_title_to_name(delwp_dataset["title"]) assert package.extras["primary_purpose_of_collection"] == delwp_dataset["uuid"] + # no new harvest_object, cause it's update + assert harvest_model.HarvestObject.filter(guid=delwp_dataset["uuid"]).one() + def test_mock_geores_data(self, harvester: DelwpHarvester): """The geoserver_url doesn't matter, because we're mocking response. The `content` with uuid below exists in test data""" @@ -218,7 +221,9 @@ def test_create_organization(self, harvester: DelwpHarvester, harvest_object): assert harvester._create_organization("organization title", harvest_object) @pytest.mark.usefixtures("with_plugins", "clean_db") - def test_create_organization_error(self, harvester: DelwpHarvester, harvest_object, organization_factory): + def test_create_organization_error( + self, harvester: DelwpHarvester, harvest_object, organization_factory + ): resowner = "organization title" organization_factory(name=h.munge_title_to_name(resowner)) org_id: str = harvester._create_organization(resowner, harvest_object) From 67969445f74ae20a86971a4da1bef78f06c93d2e Mon Sep 17 00:00:00 2001 From: mutantsan Date: Thu, 9 Mar 2023 14:01:10 +0200 Subject: [PATCH 21/21] SXDEDPCXZIC-129 / add temporal coverage for wms/wmf resources --- ckanext/datavic_harvester/harvesters/delwp.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ckanext/datavic_harvester/harvesters/delwp.py b/ckanext/datavic_harvester/harvesters/delwp.py index 4989cff..3d26a8e 100644 --- a/ckanext/datavic_harvester/harvesters/delwp.py +++ b/ckanext/datavic_harvester/harvesters/delwp.py @@ -579,6 +579,16 @@ def _get_geoserver_resoures( "name": f"{layer_title} {res_fmt}", "format": res_fmt, "url": resource_url.format(layername=layer_name), + "period_start": helpers.convert_date_to_isoformat( + metashare_dict.get("tempextentbegin"), + "tempextentbegin", + metashare_dict.get("name"), + ), + "period_end": helpers.convert_date_to_isoformat( + metashare_dict.get("tempextentend"), + "tempextentend", + metashare_dict.get("name"), + ), } )