Skip to content
A NSW Government website
  • Datasets
  • Organizations
  • Groups
  • About
  • Admin Login
  • Request Data
NSW Government
Data.NSW
Menu
  • About keyboard_arrow_right
    About east
    Test description
    • NSW Data Analytics Centre keyboard_arrow_right
      NSW Data Analytics Centre east
      • Working with the DAC
      • DAC Data Governance
      • Agency Resources
    • Security Statement
  • Data Policy keyboard_arrow_right
    Data Policy east
    • Key NSW Data Legislation and Policies
    • NSW Government Data Strategy keyboard_arrow_right
      NSW Government Data Strategy east
      • Introduction
      • Our Vision
      • NSW Data Reform
      • Connected Government
      • Themes, Principles and Actions keyboard_arrow_right
        Themes, Principles and Actions east
        • Accelerating actionable insights
        • Treating data as an asset
        • Strengthening transparency and trust
        • Fostering culture, leadership and capability
      • Next Steps
      • Glossary
      • Case Studies keyboard_arrow_right
        Case Studies east
        • NSW Data Reform Phase 1: Embedding data practices from COVID-19
        • NSW Better Outcomes Lab
        • New South Wales (NSW) Trend Atlas
        • NSW Suicide Monitoring System
        • Pathways of Care Longitudinal Study (POCLS)
        • HealthStats NSW
        • Domestic violence mobile application for police
        • National Disability Data Asset (NDDA)
        • NSW Human Services Dataset
        • DPIE Information Asset Register (IAR)
        • Pathways of Care Longitudinal Study (POCLS)
        • Personal Information Factor (PIF) Tool
        • Ngaramanala and the Pathways of Care Longitudinal Study (POCLS)
        • Service Point
        • Water Data
        • NSW Health Data Literacy Capability Framework
      • Actions and Future Outlook
    • NSW Government Data Glossary
    • Smart Places Data Protection Policy
    • Information Management Framework
    • Data Custodianship Policy
    • Open Data Policy
    • Data Governance Toolkit keyboard_arrow_right
      Data Governance Toolkit east
      • 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
    • Infrastructure Data Management Framework keyboard_arrow_right
      Infrastructure Data Management Framework east
      • Vision and Principles
      • Overview
      • Key Concepts
      • Organising the Organisation
      • Data Requirements
      • Data Structure and Coordination
      • Data Management and Practice
      • Data
      • Implementation Guidance
    • Data Quality Reporting Tool
    • NSW Government Information Classification, Labelling and Handling Guidelines keyboard_arrow_right
      NSW Government Information Classification, Labelling and Handling Guidelines east
      • Overview
      • Assessing information for its security classification and sensitivity keyboard_arrow_right
        Assessing information for its security classification and sensitivity east
        • NSW Business Impact Levels Tool
      • Labelling different types of information keyboard_arrow_right
        Labelling different types of information east
        • Unofficial or official information
      • Sensitive information
      • Handling sensitive information
      • Security classifications
      • Caveats and accountable material
      • Information management markers (optional and not applied to NSW information)
      • Definitions and acronyms
  • Sharing Data keyboard_arrow_right
    Sharing Data east
    • Design and Manage Data for Sharing keyboard_arrow_right
      Design and Manage Data for Sharing east
      • Data Sharing Checklist for Data Owners
      • Making Data Safe for Sharing
      • Making Data Available for Sharing
      • Responding to Data Access Requests
    • Developing a Business Case for Data Sharing
    • Data Sharing Agreements and Licenses
    • Measuring Data Maturity
    • Testing Archive
  • Using Data keyboard_arrow_right
    Using Data east
    • Publishing Open Data on Data.NSW keyboard_arrow_right
      Publishing Open Data on Data.NSW east
      • Data.NSW Frequently Asked Questions (Admin)
      • NSW Government Open Data Publishing Guidlines
      • Open Data Portal Refresh
      • Dataset quick links keyboard_arrow_right
        Dataset quick links east
        • NSW COVID-19 data
        • Bushfire and air quality data
        • Economic and social indicators
    • Visualising Data
    • Requesting Agency Data keyboard_arrow_right
      Requesting Agency Data east
      • Requesting data checklist
    • Using Spatial Data
    • Data Champions Network
  • Insights keyboard_arrow_right
    Insights east
    • Department of Education Insights Hub
    • Popular Baby Names from 1952 to 2023
  • Our Work
  • Contact
  1. Home
  2. Open Data
  3. Search
  4. NSW eastern forest soil...
  5. Forest soil pH and other...
Department of Planning, Industry and Environment

Forest soil pH and other indicators

chevron_left Back to dataset

Download URL: https://www.planningportal.nsw.gov.au/opendata/dataset/4604aaa3-0679-439a-8f88-d44e047d54d9/resource/d020a236-2167-45c6-926d-98bbcb318584/download/ph_other_indicators.zip

There are no views created for this resource yet.

Additional Information
Field Value
Title Forest soil pH and other indicators
Data last updated 18/10/2021
Metadata last updated 18/10/2021
Format GEOTIFF
License Creative Commons Attribution
Original URL https://www.planningportal.nsw.gov.au/opendata/dataset/4604aaa3-0679-439a-8f88-d44e047d54d9/resource/d020a236-2167-45c6-926d-98bbcb318584/download/ph_other_indicators.zip
download Download GEOTIFF
Updates
Last updated 18/10/2021
Date Created 18/10/2021
File format GEOTIFF
Licence
Creative Commons Attribution

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": "0c627abc-fd3e-472c-88da-2443944f22da",
  "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: '0c627abc-fd3e-472c-88da-2443944f22da',
        limit: 5,
        q: 'jones'
    })
})
await resp.json()
$json = @'
{
  "resource_id": "0c627abc-fd3e-472c-88da-2443944f22da",
  "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="0c627abc-fd3e-472c-88da-2443944f22da",
    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 = '0c627abc-fd3e-472c-88da-2443944f22da',
        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": "0c627abc-fd3e-472c-88da-2443944f22da",
  "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: '0c627abc-fd3e-472c-88da-2443944f22da', filters: {
        subject: ['watershed', 'survey'],
        stage: 'active'
    }})})
await resp.json()
$json = @'
{
  "resource_id": "0c627abc-fd3e-472c-88da-2443944f22da",
  "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="0c627abc-fd3e-472c-88da-2443944f22da",
    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='0c627abc-fd3e-472c-88da-2443944f22da', 
        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=0c627abc-fd3e-472c-88da-2443944f22da&limit=5

Query example (results containing 'jones')

https://uatweb.datansw.links.com.au/data/api/action/datastore_search?resource_id=0c627abc-fd3e-472c-88da-2443944f22da&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
  • 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.


Copyright © 2025
Built by NSW Design System