Skip to content
A NSW Government website
  • Datasets
  • Organizations
  • Groups
  • About
  • Admin Login
  • Request Data
NSW Government
Data.NSW
Menu
  • NSW Data Strategy keyboard_arrow_right
    NSW Data Strategy east
    • Introduction
    • Mission 1
    • Mission 2
    • Mission 3
    • Mission 4
    • Mission 5
  • Data Policy keyboard_arrow_right
    Data Policy east
    • Data and Information Custodianship Policy
    • Open Data Policy
    • Smart Places Data Protection Policy
    • Data quality reporting standard
    • Information Management Framework
    • Infrastructure Data Management Framework
    • NSW Government Information Classification, Labelling and Handling Guidelines
    • NSW Legislation Twin
  • Data Capability keyboard_arrow_right
    Data Capability east
    • Data Sharing keyboard_arrow_right
      Data Sharing east
      • The Five Safes Framework
      • Sharing data under the legislation
      • Requesting access to data
      • Responding to data sharing and access requests
    • Data practices
    • Data Skills keyboard_arrow_right
      Data Skills east
      • Data Training Index
      • Visualising Data
      • Safe researcher training
    • Strategy and governance keyboard_arrow_right
      Strategy and governance east
      • Data Governance Toolkit keyboard_arrow_right
        Data Governance Toolkit east
        Data Governance Toolkit
        • Module 1: Introduction to Data Governance
        • Module 2: Legal and Policy Context
        • Module 3: Data Governance Model
        • Module 4: Strategy and Planning
        • Module 5: Organisational Structures
        • Module 6: Assigning roles and responsibilities
        • Module 7: Leadership
        • Module 8: Data-driven Culture
        • Module 9: Workforce Skills and Capability
        • Module 10: Technology
        • Module 11: Data Management
        • Module 12: Data Governance Checklist
    • Technology and tools keyboard_arrow_right
      Technology and tools east
      • Data Quality Reporting Tool
      • NSW Insights Hub
    • Use of data
    • Data Champions Network
    • NSW Government Data Glossary
    • test
  • Data Tools
  • Data Insights keyboard_arrow_right
    Data Insights east
    • Department of Education Insights Hub
    • NSW Arbovirus and Mosquito Monitoring Surveillance Program Dashboard
  • Open Data keyboard_arrow_right
    Open Data east
    Search and explore open data
    • Learn about open data keyboard_arrow_right
      Learn about open data east
      • Your responsibilities as an open data user
    • Learn about the Data.NSW Open Data Portal keyboard_arrow_right
      Learn about the Data.NSW Open Data Portal east
      • Contacting the data publisher / agency
      • Find open data
    • Frequently Asked Questions
    • Publishing Open Data on Data.NSW
    • NSW Government Open Data Publishing Guidelines keyboard_arrow_right
      NSW Government Open Data Publishing Guidelines east
      • Measuring Open Data Maturity
    • Dataset Quick Links keyboard_arrow_right
      Dataset Quick Links east
      • Performance and wellbeing open data
  • About Us keyboard_arrow_right
    About Us east
    • Contact
    • About Data.NSW
    • NSW Data Analytics Centre keyboard_arrow_right
      NSW Data Analytics Centre east
      • Working with the DAC
      • DAC Data Governance
  1. Home
  2. Open Data
  3. Search
  4. Tweed LGA Vegetation 2012....
  5. Show on SEED Web Map
Department of Planning, Industry and Environment

Show on SEED Web Map

chevron_left Back to dataset

Download URL: https://geo.seed.nsw.gov.au/Public_Viewer/index.html?viewer=Public_Viewer&locale=en-AU&runWorkflow=AppendLayerCatalog&CatalogLayer=SEED_Catalog.176.Major Vegetation Community,SEED_Catalog.176.Labels,SEED_Catalog.176.Vegetation Type

Details
Last updated 27/10/2021
Date Created 27/10/2021
File format SEED Web Map
Licence Creative Commons Attribution

There are no views created for this resource yet.

Additional Information
Field Value
Title Show on SEED Web Map
Data last updated 27/10/2021
Metadata last updated 27/10/2021
Format SEED Web Map
License Creative Commons Attribution
Original URL https://geo.seed.nsw.gov.au/Public_Viewer/index.html?viewer=Public_Viewer&locale=en-AU&runWorkflow=AppendLayerCatalog&CatalogLayer=SEED_Catalog.176.Major Vegetation Community,SEED_Catalog.176.Labels,SEED_Catalog.176.Vegetation Type

CKAN Data API

Access resource data via a web API with powerful query support. Further information in the main CKAN Data API and DataStore documentation.

Code examples:

Querying
Get 5 results containing "jones" in any field:
curl https://uatweb.datansw.links.com.au/data/api/action/datastore_search \
  -H"Authorization:$API_TOKEN" -d '
{
  "resource_id": "f7d85046-ffdc-4113-845c-cb36bdc6632b",
  "limit": 5,
  "q": "jones"
}'
const resp = await fetch(`https://uatweb.datansw.links.com.au/data/api/action/datastore_search`, {
    method: 'POST',
    headers: {
        'content-type': 'application/json',
        authorization: API_TOKEN
    },
    body: JSON.stringify({
        resource_id: 'f7d85046-ffdc-4113-845c-cb36bdc6632b',
        limit: 5,
        q: 'jones'
    })
})
await resp.json()
$json = @'
{
  "resource_id": "f7d85046-ffdc-4113-845c-cb36bdc6632b",
  "limit": 5,
  "q": "jones"
}
'@
$response = Invoke-RestMethod https://uatweb.datansw.links.com.au/data/api/action/datastore_search`
  -Method Post -Body $json -Headers @{"Authorization"="$API_TOKEN"}
$response.result.records

(using the ckanapi client library)

from ckanapi import RemoteCKAN

rc = RemoteCKAN('https://uatweb.datansw.links.com.au/data/', apikey=API_TOKEN)
result = rc.action.datastore_search(
    resource_id="f7d85046-ffdc-4113-845c-cb36bdc6632b",
    limit=5,
    q="jones",
)
print(result['records'])
library(httr2)

req <- request("https://uatweb.datansw.links.com.au/data/api/action/datastore_search")
result <- req %>% 
    req_headers(Authorization = API_TOKEN) %>% 
    req_body_json(list(
        resource_id = 'f7d85046-ffdc-4113-845c-cb36bdc6632b',
        limit = 5,
        q = 'jones'))
    req_perform %>% 
    resp_body_json
Get results with either "watershed" or "survey" as subject and "active" as its stage:
curl https://uatweb.datansw.links.com.au/data/api/action/datastore_search \
-H"Authorization:$API_TOKEN" -d '
{
"resource_id": "f7d85046-ffdc-4113-845c-cb36bdc6632b",
  "filters": {
    "subject": ["watershed", "survey"],
    "stage": "active"
  }
}'
const resp = await fetch(`https://uatweb.datansw.links.com.au/data/api/action/datastore_search`, {
    method: 'POST',
    headers: {
        'content-type': 'application/json',
        authorization: API_TOKEN
    },
    body: JSON.stringify({resource_id: 'f7d85046-ffdc-4113-845c-cb36bdc6632b', filters: {
        subject: ['watershed', 'survey'],
        stage: 'active'
    }})})
await resp.json()
$json = @'
{
  "resource_id": "f7d85046-ffdc-4113-845c-cb36bdc6632b",
  "filters": {
    "subject": ["watershed", "survey"],
    "stage": "active"
  }
}
'@
$response = Invoke-RestMethod https://uatweb.datansw.links.com.au/data/api/action/datastore_search`
  -Method Post -Body $json -Headers @{"Authorization"="$API_TOKEN"}
$response.result.records
from ckanapi import RemoteCKAN

rc = RemoteCKAN('https://uatweb.datansw.links.com.au/data/', apikey=API_TOKEN)
result = rc.action.datastore_search(
    resource_id="f7d85046-ffdc-4113-845c-cb36bdc6632b",
    filters={
      "subject": ["watershed", "survey"],
      "stage": "active",
    },
)
print(result['records'])
library(httr2)

req <- request("https://uatweb.datansw.links.com.au/data/api/action/datastore_search")
result <- req %>% 
    req_headers(Authorization = API_TOKEN) %>% 
    req_body_json(list(
        resource_id='f7d85046-ffdc-4113-845c-cb36bdc6632b', 
        filters = list(
            subject = list("watershed", "survey"), 
            stage = "active")))
    req_perform %>% 
    resp_body_json
Using the API with this Web Browser

Some API endpoints may be accessed using a GET query string.

Query example (first 5 results)

https://uatweb.datansw.links.com.au/data/api/action/datastore_search?resource_id=f7d85046-ffdc-4113-845c-cb36bdc6632b&limit=5

Query example (results containing 'jones')

https://uatweb.datansw.links.com.au/data/api/action/datastore_search?resource_id=f7d85046-ffdc-4113-845c-cb36bdc6632b&q=jones

Popular
  • About Data.NSW
  • Key NSW Data Legislation and Policies
  • Data.NSW Policy
  • Data Skills
  • Twitter
Open Data Portals
  • API.NSW
  • Environmental Data Portal, SEED
  • NSW Department of Education
  • NSW Health
  • Transport for NSW
  • NSW Bureau of Crime Statistics and Research
  • Spatial Collaboration Portal
  • NSW Flood Portal
  • ePlanning
  • State Insurance Regulatory Authority
About This Site
  • Contact
  • Accessibility
  • Copyright
  • Disclaimer
  • Get in Touch
  • Privacy
  • Site Search

We pay respect to the Traditional Custodians and First Peoples of NSW, and acknowledge their continued connection to their country and culture.


  • About
  • Privacy Policy
  • Recent Developments
  • Give feedback
  • Contact us
Copyright © 2025
Built by NSW Design System