diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index e70de0e0..ac67de34 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -6,7 +6,7 @@ body: - type: markdown attributes: value: | - ## Bug Report + ## 🐛 Bug Report Thanks for submitting a bug report to map2loop! Please use this template to report a bug. Please provide as much detail as possible to help us reproduce and fix the issue efficiently. @@ -16,6 +16,8 @@ body: label: Version description: What version of map2loop and LoopProjectFile are you running? You can find this information by running `import map2loop` and `map2loop.__version__` in your python terminal or jupyter notebook. placeholder: "Enter map2loop and LoopProjectFile versions" + validations: + required: true - type: textarea id: bug_description @@ -33,25 +35,7 @@ body: description: "Provide a minimal reproducible example with the code necessary to reproduce the bug. For more guidance, visit: [How to create a minimal complete reproducible example](https://forum.access-hive.org.au/t/how-to-create-a-minimal-complete-reproducible-example/843)" placeholder: "Enter the steps to reproduce the bug" validations: - required: true - - - type: textarea - id: expected_behavior - attributes: - label: "Expected Behavior" - description: "Describe what you expected to happen." - placeholder: "Enter the expected behavior" - validations: - required: true - - - type: textarea - id: actual_behavior - attributes: - label: "Actual Behavior" - description: "Describe what actually happened when you encountered the bug." - placeholder: "Enter the actual behavior" - validations: - required: true + required: false - type: textarea id: additional_context @@ -69,18 +53,7 @@ body: description: "Specify the environment in which the bug occurred (e.g., operating system, browser, application version)." placeholder: "Enter the environment details" validations: - required: true + required: false + - - type: checkboxes - id: severity - attributes: - label: "Severity" - description: "Select the severity level of the bug." - options: - - label: "Low" - - label: "Medium" - - label: "High" - - label: "Critical" - validations: - required: true diff --git a/.github/ISSUE_TEMPLATE/documentation_request.yml b/.github/ISSUE_TEMPLATE/documentation_request.yml index 9d2ce617..253d9219 100644 --- a/.github/ISSUE_TEMPLATE/documentation_request.yml +++ b/.github/ISSUE_TEMPLATE/documentation_request.yml @@ -6,8 +6,7 @@ body: - type: markdown attributes: value: | - ## Documentation Request - + ## 📓 Documentation Request Please use this template to suggest an improvement or addition to map2loop documentation. Provide as much detail as possible to help us understand and implement your request efficiently @@ -18,13 +17,4 @@ body: description: "Describe the documentation you would like to see. Include details on why it is needed and how it should be structured." placeholder: "Enter a detailed description of the documentation" validations: - required: true - - - type: textarea - id: additional_context - attributes: - label: "Additional Context" - description: "Any other context or information that may be helpful." - placeholder: "Enter any additional context" - validations: - required: false + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 5d2d409a..f8fedbdc 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -6,8 +6,7 @@ body: - type: markdown attributes: value: | - ## Feature Request - + ## 🚀 Feature Request Please use this template to submit your feature request. Provide as much detail as possible to help us understand and implement your request efficiently. - type: checkboxes @@ -29,50 +28,12 @@ body: validations: required: true - - type: textarea - id: current_situation - attributes: - label: "Current Situation" - description: "Describe the current situation and how the absence of this feature affects you." - placeholder: "Explain the current situation and its drawbacks" - validations: - required: true - - type: textarea id: version attributes: label: Version description: What version of map2loop and LoopProjectFile are you running that doesn't have this feature? You can find this information by running `import map2loop` and `map2loop.__version__` in your python terminal or jupyter notebook. placeholder: "Enter map2loop and LoopProjectFile versions" - - - type: textarea - id: proposed_solution - attributes: - label: "Proposed Solution" - description: "Describe how you envision the feature working. Include any specific requirements or details" - placeholder: "Explain how the feature should work" validations: required: true - - type: input - id: additional_context - attributes: - label: "Additional Context" - description: "Provide any other context or information that may be helpful in understanding the feature request." - placeholder: "Enter any additional context" - validations: - required: false - - - type: checkboxes - id: affected_areas - attributes: - label: "Affected Areas" - description: "Select the areas of the project that this feature request impacts." - options: - - label: "input data" - - label: "project creation" - - label: "samplers" - - label: "sorters" - - label: "stratigraphic column" - - label: "data types" - - label: "Other" diff --git a/.github/ISSUE_TEMPLATE/question.yml b/.github/ISSUE_TEMPLATE/question.yml index ba6b949b..871f7252 100644 --- a/.github/ISSUE_TEMPLATE/question.yml +++ b/.github/ISSUE_TEMPLATE/question.yml @@ -6,8 +6,7 @@ body: - type: markdown attributes: value: | - ## Question - + ## 💬 Question Please use this template to ask a question about applying map2loop to your data. Provide as much detail as possible to help us understand and answer your question efficiently. @@ -29,11 +28,11 @@ body: validations: required: false - - type: input + - type: textarea id: additional_context attributes: label: "Additional Context" description: "Provide any other context or information that may be helpful in answering your question." placeholder: "Enter any additional context" validations: - required: false + required: false \ No newline at end of file diff --git a/.github/workflows/CD.yml b/.github/workflows/CD.yml deleted file mode 100644 index a5d5b47b..00000000 --- a/.github/workflows/CD.yml +++ /dev/null @@ -1,271 +0,0 @@ -# for this workflow to work, need to release LPF=1.0.5, map2model=1.0.1, use json instead of hjson - -name: release-please - -on: [push, pull_request] - -permissions: - contents: write - pull-requests: write - -jobs: - linting: - name: Linting - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install black ruff - - name: Autoformat with black - run: | - black . - - name: Lint with ruff - run: | - ruff check . --fix - - name: Check for local changes - run: | - if [ -n "$(git status --porcelain)" ]; then - git config --global user.name "github-actions[bot]" - git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" - git add . - git commit -m "style: style fixes by ruff and autoformatting by black" - fi - - uses: stefanzweifel/git-auto-commit-action@v5 - with: - commit_message: "style: style fixes by ruff and autoformatting by black" - - pypi-build-sdist: - name: Build SDist - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Build SDist - run: | - pip install build - python -m build - - - uses: actions/upload-artifact@v4 - with: - name: map2loop-dist - path: dist/*.tar.gz - compression-level: 0 - - pypi-test-sdist: - name: Test sdist - needs: pypi-build-sdist - runs-on: ubuntu-latest - steps: - - name: Install GDAL - run: | - sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable - sudo apt-get update - sudo apt-get install -y libgdal-dev gdal-bin - - - name: Download sdist from artifacts - uses: actions/download-artifact@v4 - with: - name: map2loop-dist - path: dist - - - name: Build Map2Loop from sdist and install test dependencies - shell: bash - run: | - pip install --upgrade pip - pip install numpy==1.26.4 - pip install geopandas shapely networkx owslib map2model loopprojectfile beartype gdal==3.8.4 hjson pytest scikit-learn - pip install --no-cache dist/*.tar.gz - pip list - - pypi-build-wheels: - needs: pypi-test-sdist - name: Build Wheels - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: - - ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: 3.x - - - name: Build Wheels - run: | - pip install build - python -m build --wheel - - - uses: actions/upload-artifact@v4 - with: - name: map2loop-wheels-${{ matrix.os }} - path: dist/*.whl - compression-level: 0 - - pypi-test-wheels: - name: Test wheels on ${{ matrix.os }} - needs: pypi-build-wheels - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: - - ubuntu-latest - include: - - os: "ubuntu-latest" - artifact: map2loop-wheels-ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v5 - - - name: Install GDAL - Linux - if: runner.os == 'Linux' - run: | - sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable - sudo apt-get update - sudo apt-get install -y libgdal-dev gdal-bin - - - name: Upgrade pip - run: | - python -m pip install --upgrade pip - - - name: Download wheels from artifacts - uses: actions/download-artifact@v4 - with: - name: ${{ matrix.artifact }} - path: dist - - - name: Install dependencies and Map2Loop wheel - shell: bash - run: | - pip install --upgrade pip - pip install numpy==1.26.4 - pip install -r dependencies.txt - pip install --no-cache --pre --no-index --find-links dist map2loop - pip list - - - name: Testing - shell: bash -l {0} - run: | - pytest - - conda-build: - name: Conda Build and Deploy ${{ matrix.os }} - Python Version-${{ matrix.python-version }} - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: - - ubuntu-latest - # - macos-latest # currently not supported because needs libgcc>= 14 and not available for macos-latest (version available is 4.x.x) - - windows-latest - python-version: ["3.9", "3.10", "3.11", "3.12"] - steps: - - uses: actions/checkout@v4 - - uses: conda-incubator/setup-miniconda@v3 - with: - miniforge-version: latest - activate-environment: anaconda-client-env. - - - name: Installing dependencies - shell: bash -l {0} - run: | - conda install -c conda-forge conda-build anaconda-client conda-verify -y - conda install -c loop3d -c conda-forge --file dependencies.txt -y - conda install pytest -y - - - name: Building and install - shell: bash -l {0} - run: | - pip install . - - - name: Testing - shell: bash -l {0} - run: | - pytest - - - name: Conda Build - env: - ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_TOKEN }} - path: ~/conda_pkgs_dir - shell: bash -l {0} - run: | - conda build -c anaconda -c conda-forge -c loop3d --output-folder conda conda --python ${{ matrix.python-version }} - - - name: upload artifacts - uses: actions/upload-artifact@v4 - with: - name: map2loop-conda-${{ matrix.os }}-${{ matrix.python-version }} - path: conda - - # release-please: - # needs: [pypi-test-wheels, conda-build] - # runs-on: ubuntu-latest - # if: github.ref == 'refs/heads/master' - # steps: - # - uses: actions/checkout@v4 - # - uses: googleapis/release-please-action@v4 - # id: release - # with: - # release-type: "python" - # config-file: "release-please-config.json" - # manifest-file: ".release-please-manifest.json" - # outputs: - # release_created: ${{ steps.release.outputs.release_created }} - # #if a release is created then run the deploy scripts for github.io, conda, pypi and docker - - conda-upload: - needs: [conda-build] - runs-on: ${{matrix.os}} - strategy: - fail-fast: false - matrix: - os: - - ubuntu-latest - # - macos-latest - - windows-latest - python-version: ["3.9", "3.10", "3.11", "3.12"] - # if: ${{ needs.release-please.outputs.release_created }} - steps: - - uses: actions/download-artifact@v4 - with: - name: map2loop-conda-${{ matrix.os }}-${{ matrix.python-version }} - path: conda - - uses: conda-incubator/setup-miniconda@v3 - - name: upload all files to conda-forge - shell: bash -l {0} - env: - ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_TOKEN }} - with: - skip-existing: true - verbose: true - run: | - conda install -c anaconda anaconda-client -y - anaconda upload --label main conda/*/*.tar.bz2 - - pypi-upload: - needs: [pypi-test-wheels] - runs-on: - - ubuntu-latest - # if: ${{ needs.release-please.outputs.release_created }} - permissions: - # IMPORTANT: this permission is mandatory for trusted publishing - id-token: write - steps: - - uses: actions/download-artifact@v4 - with: - name: map2loop-dist - path: dist/ - - uses: pypa/gh-action-pypi-publish@release/v1 - with: - skip-existing: true - verbose: true diff --git a/.github/workflows/conda.yml b/.github/workflows/conda.yml new file mode 100644 index 00000000..1a9949f1 --- /dev/null +++ b/.github/workflows/conda.yml @@ -0,0 +1,38 @@ +name: Build conda packages + +on: + workflow_dispatch: + +jobs: + build_wheels: + name: Build wheels on + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: ${{ fromJSON(vars.BUILD_OS)}} + python-version: ${{ fromJSON(vars.PYTHON_VERSIONS)}} + steps: + - uses: conda-incubator/setup-miniconda@v3 + with: + auto-update-conda: true + python-version: ${{ matrix.python-version }} + + - uses: actions/checkout@v4 + - name: update submodules + run: | + git submodule update --init --recursive + - name: Conda build + env: + ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_TOKEN }} + shell: bash -l {0} + run: | + conda install -c conda-forge conda-build scikit-build-core numpy anaconda-client conda-libmamba-solver -y + conda build -c conda-forge -c loop3d --output-folder conda conda --python ${{matrix.python-version}} + anaconda upload --label main conda/*/*.tar.bz2 + + - name: upload artifacts + uses: actions/upload-artifact@v4 + with: + name: conda-build-${{matrix.os}}-${{ matrix.python-version }} + path: conda \ No newline at end of file diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 0c1ca3bc..a7c722a3 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -3,13 +3,14 @@ name: Build and Deploy Documentation on: workflow_dispatch: - - jobs: documentation-test: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 + with: + ref: ${{ github.ref }} + - run: | cp CHANGELOG.md docs/source/CHANGELOG.md docker build . -t=docs -f docs/Dockerfile @@ -19,8 +20,9 @@ jobs: with: name: docs path: docs/build/html + documentation-deploy: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 if: GitHub.ref == 'refs/heads/master' steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/linting_and_testing.yml b/.github/workflows/linting_and_testing.yml new file mode 100644 index 00000000..a7ea3a0c --- /dev/null +++ b/.github/workflows/linting_and_testing.yml @@ -0,0 +1,48 @@ +name: Linting and Testing + +on: + [push] + +jobs: + linting: + name: Linting + runs-on: ubuntu-24.04 + steps: + - uses: actions/checkout@v4 + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install black ruff + ruff check . --fix + + - uses: stefanzweifel/git-auto-commit-action@v5 + with: + commit_message: "style: style fixes by ruff and autoformatting by black" + + testing: + name: Testing + runs-on: ubuntu-24.04 + steps: + - uses: actions/checkout@v4 + - name: Install GDAL + run: | + sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable + sudo apt-get update + sudo apt-get install -y libgdal-dev gdal-bin + + - name: Install dependencies + run: | + conda update -n base -c defaults conda -y + conda install -n base conda-libmamba-solver -c conda-forge -y + conda install -c conda-forge gdal -y + conda install -c conda-forge -c loop3d --file dependencies.txt -y + conda install pytest -y + + - name: Install map2loop + run: | + python -m pip install . + + - name: Run tests + run: | + pytest + diff --git a/.github/workflows/publish_conda.yml b/.github/workflows/publish_conda.yml new file mode 100644 index 00000000..89ab5c00 --- /dev/null +++ b/.github/workflows/publish_conda.yml @@ -0,0 +1,40 @@ +on: + push: + branches: + - master + workflow_dispatch: + +jobs: + release-please: + runs-on: ubuntu-24.04 + steps: + - uses: GoogleCloudPlatform/release-please-action@v4 + id: release + with: + release-type: python + package-name: map2loop + - name: Debug release_created output + run: | + echo "Release created: ${{ steps.release.outputs.release_created }}" + outputs: + release_created: ${{ steps.release.outputs.release_created }} + + pypi: + runs-on: ubuntu-24.04 + needs: release-please + if: ${{ needs.release-please.outputs.release_created }} + steps: + - name: Trigger build for pypi and upload + run: | + curl -X POST \ + -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ + -H "Accept: application/vnd.github.v3+json" \ + https://api.github.com/repos/Loop3d/map2loop/actions/workflows/pypi.yml/dispatches \ + -d '{"ref":"master"}' + - name: Trigger build for conda and upload + run: | + curl -X POST \ + -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ + -H "Accept: application/vnd.github.v3+json" \ + https://api.github.com/repos/Loop3d/map2loop/actions/workflows/conda.yml/dispatches \ + -d '{"ref":"master"}' diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml new file mode 100644 index 00000000..50e8d505 --- /dev/null +++ b/.github/workflows/pypi.yml @@ -0,0 +1,43 @@ +name: Deploy to PYPI + +on: + workflow_dispatch: +jobs: + + sdist: + name: Build sdist + runs-on: ubuntu-24.04 + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install build + - name: Build sdist + run: python -m build --sdist + - uses: actions/upload-artifact@v4 + with: + name: dist + path: ./dist/*.tar.gz + + publish: + name: Publish wheels to pypi + runs-on: ubuntu-24.04 + permissions: + # IMPORTANT: this permission is mandatory for trusted publishing + id-token: write + needs: sdist + steps: + - uses: actions/download-artifact@v4 + with: + name: dist + path: dist + - name: copy to wheelhouse + run: | + # cp -r wheelhouse/*/*.whl dist + - uses: pypa/gh-action-pypi-publish@release/v1 + with: + skip-existing: true + verbose: true + packages-dir: dist/ \ No newline at end of file diff --git a/MANIFEST.in b/MANIFEST.in index fee2a8aa..67577e81 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,8 @@ +include LICENSE +include README.md + include map2loop/_datasets/clut_files/*.csv -include map2loop/_datasets/config_files/*.json \ No newline at end of file +include map2loop/_datasets/config_files/*.json +include map2loop/_datasets/geodata_files/hamersley/* + +recursive-include tests *.py \ No newline at end of file diff --git a/README.md b/README.md index f99a3985..144bc856 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,11 @@ -# Map2Loop 3.0 +![GitHub Release](https://img.shields.io/github/v/release/loop3d/map2loop) +![License](https://img.shields.io/github/license/loop3d/map2loop) +![PyPI - Downloads](https://img.shields.io/pypi/dm/map2loop?label=pip%20downloads) +![Conda Downloads](https://img.shields.io/conda/dn/loop3d/map2loop?label=Conda%20downloads) +[![Testing](https://github.com/Loop3D/map2loop/actions/workflows/linting_and_testing.yml/badge.svg)](https://github.com/Loop3D/map2loop/actions/workflows/linting_and_testing.yml) +[![Build and Deploy Documentation](https://github.com/Loop3D/map2loop/actions/workflows/documentation.yml/badge.svg)](https://github.com/Loop3D/map2loop/actions/workflows/documentation.yml) + +# Map2Loop 3.1 Generate 3D geological model inputs from geological maps — a high-level implementation and extension of the original map2loop code developed by Prof. Mark Jessell at UWA. To see an example interactive model built with map2loop and LoopStructural, follow this link: @@ -23,12 +30,20 @@ conda config --add channels conda-forge ### Run -To just use map2loop, issue the following +To just use map2loop, issue the following. * ```bash -conda install -c conda-forge -c loop3d map2loop -y +git clone https://github.com/Loop3D/map2loop.git + +cd map2loop + +conda install -c loop3d --file dependencies.txt + +pip install . ``` +
* We're actively working towards a better approach - stay tuned!
+ ### Documentation If you can call it that, is available here diff --git a/conda/conda_build_config.yaml b/conda/conda_build_config.yaml index cbfd2b0e..d7d85008 100644 --- a/conda/conda_build_config.yaml +++ b/conda/conda_build_config.yaml @@ -1,4 +1,5 @@ python: + - 3.8 - 3.9 - 3.10 - 3.11 diff --git a/conda/meta.yaml b/conda/meta.yaml index b7571e6b..54bf081c 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -1,6 +1,5 @@ {% set name = "map2loop" %} - package: name: "{{ name|lower }}" version: "{{ environ.get('GIT_DESCRIBE_TAG', '') }}" @@ -8,15 +7,20 @@ package: source: git_url: https://github.com/Loop3D/map2loop + build: number: 0 - script: "{{ PYTHON }} -m pip install ." + script: "{{ PYTHON }} -m pip install . --no-deps" requirements: host: - pip - python run: + - loopprojectfile ==0.2.2 + - gdal + - map2model + - beartype - python - numpy - pandas @@ -25,12 +29,6 @@ requirements: - tqdm - networkx - owslib - - hjson - - loopprojectfile=0.1.3 - - map2model - - beartype - - gdal=3.8.4 - about: @@ -43,3 +41,7 @@ about: extra: recipe-maintainers: - lachlangrose + +channels: + - loop3d + - conda-forge \ No newline at end of file diff --git a/dependencies.txt b/dependencies.txt index 4681f3de..57a2f246 100644 --- a/dependencies.txt +++ b/dependencies.txt @@ -1,3 +1,4 @@ + numpy scipy geopandas @@ -5,9 +6,7 @@ shapely networkx owslib map2model -loopprojectfile==0.1.3 +loopprojectfile==0.2.2 beartype -gdal==3.8.4 -hjson pytest -scikit-learn +scikit-learn \ No newline at end of file diff --git a/docs/Dockerfile b/docs/Dockerfile index 2cc8b312..37c8cc89 100644 --- a/docs/Dockerfile +++ b/docs/Dockerfile @@ -12,8 +12,8 @@ RUN apt-get update -qq && \ libgl1\ libtinfo5\ libtiff6\ - libgl1-mesa-glx - + libgl1-mesa-glx\ + libarchive13 COPY . /map2loop @@ -23,7 +23,8 @@ COPY dependencies.txt dependencies.txt COPY dependencies.txt dependenciesdocs.txt RUN cat ./docs/requirements.txt >> dependenciesdocs.txt -RUN conda install -c conda-forge -c loop3d --file dependencies.txt -y +RUN conda install -c conda-forge -c loop3d --file dependenciesdocs.txt -y +RUN conda install gdal -y RUN pip install . diff --git a/docs/docker-compose.yml b/docs/docker-compose.yml index 2481428b..3ec795a5 100644 --- a/docs/docker-compose.yml +++ b/docs/docker-compose.yml @@ -1,5 +1,3 @@ -version: "3" - services: map2loop: build: @@ -9,4 +7,5 @@ services: - ../:/map2loop - ../../LoopStructural:/LoopStructural tty: true + # command: sh map2loop/docs/build_docs.sh \ No newline at end of file diff --git a/docs/requirements.txt b/docs/requirements.txt index 24754e30..8c10ee6e 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,8 +1,7 @@ -# all on conda forge sphinx sphinx-gallery pydata-sphinx-theme myst-parser sphinxcontrib-bibtex -conda-forge::poppler +poppler LoopStructural \ No newline at end of file diff --git a/docs/source/_static/m2l_code_template.ipynb b/docs/source/_static/m2l_code_template.ipynb index 66e4a773..f305f370 100644 --- a/docs/source/_static/m2l_code_template.ipynb +++ b/docs/source/_static/m2l_code_template.ipynb @@ -46,7 +46,7 @@ "from map2loop.m2l_enums import VerboseLevel\n", "from map2loop.m2l_enums import Datatype\n", "from map2loop.sampler import SamplerSpacing, SamplerDecimator\n", - "from map2loop.sorter import SorterUseHint, SorterUseNetworkX, SorterAgeBased, SorterAlpha\n", + "from map2loop.sorter import SorterAlpha\n", "import time" ] }, diff --git a/docs/source/conf.py b/docs/source/conf.py index e5edd5e6..6175247f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -13,7 +13,7 @@ import os import sys -sys.path.insert(0, os.path.abspath(".")) +sys.path.insert(0, os.path.abspath("../../")) # -- Project information ----------------------------------------------------- diff --git a/map2loop/__init__.py b/map2loop/__init__.py index 01a56aaa..17428522 100644 --- a/map2loop/__init__.py +++ b/map2loop/__init__.py @@ -1,5 +1,5 @@ - import logging + loggers = {} ch = logging.StreamHandler() formatter = logging.Formatter("%(levelname)s: %(asctime)s: %(filename)s:%(lineno)d -- %(message)s") @@ -7,3 +7,113 @@ ch.setLevel(logging.WARNING) from .project import Project from .version import __version__ + +import warnings # TODO: convert warnings to logging +from packaging import ( + version as pkg_version, +) # used instead of importlib.version because adheres to PEP 440 using pkg_version.parse +import pathlib +import re +from importlib.metadata import version as get_installed_version, PackageNotFoundError + + +class DependencyChecker: + ''' + A class to check installation and version compatibility of each package in dependencies.txt + + Attributes: + package_name (str): Name of the package + dependency_file (str): path to dependencies.txt + required_version (str or None): required version of the package as in dependencies.txt + installed_version (str or None): installed version of the package in the current environment + ''' + + def __init__(self, package_name, dependency_file="dependencies.txt"): + self.package_name = package_name + self.dependency_file = pathlib.Path(__file__).parent.parent / dependency_file + self.required_version = self.get_required_version() + self.installed_version = self.get_installed_version() + + def get_required_version(self): + ''' + Get the required package version for each package from dependencies.txt; + + Returns: + str or None: The required version of the package (if specified), otherwise None. + ''' + try: + with self.dependency_file.open("r") as file: + for line in file: + if line.startswith(f"{self.package_name}=="): + match = re.match(rf"^{self.package_name}==([\d\.]+)", line.strip()) + if match: + return match.group(1) + elif line.strip() == self.package_name: + return None + print(f"{self.package_name} version not found in {self.dependency_file}.") + except FileNotFoundError: + warnings.warn( + f"{self.dependency_file} not found. Unable to check {self.package_name} version compatibility.", + UserWarning, + ) + return None + + def get_installed_version(self): + ''' + Get the installed version of the package. + + Returns: + str: The installed version of the package. + ''' + try: + # Use importlib.metadata to get the installed version of the package + return get_installed_version(self.package_name) + except PackageNotFoundError: + raise ImportError( + f"{self.package_name} is not installed. Please install {self.package_name}." + ) + + def check_version(self): + ''' + Checks if the installed version of the package matches the required version in the dependencies.txt file. + ''' + if self.required_version is None: + if self.installed_version is None: + raise ImportError( + f"{self.package_name} is not installed. Please install {self.package_name} before using map2loop." + ) + else: + if self.installed_version is None or pkg_version.parse( + self.installed_version + ) != pkg_version.parse(self.required_version): + raise ImportError( + f"Installed version of {self.package_name}=={self.installed_version} does not match required version=={self.required_version}. " + f"Please install the correct version of {self.package_name}." + ) + + +def check_all_dependencies(dependency_file="dependencies.txt"): + dependencies_path = pathlib.Path(__file__).parent.parent / dependency_file + try: + with dependencies_path.open("r") as file: + for line in file: + line = line.strip() + if line.startswith("gdal"): + continue + if line: + if "==" in line: + package_name, _ = line.split("==") + else: + package_name = line + + checker = DependencyChecker(package_name, dependency_file=dependency_file) + checker.check_version() + except FileNotFoundError: + warnings.warn( + f"{dependency_file} not found. No dependencies checked for map2loop.", + UserWarning + ) + + +# Run check for all dependencies listed in dependencies.txt +check_all_dependencies() diff --git a/map2loop/_datasets/config_files/NSW.json b/map2loop/_datasets/config_files/NSW.json index 9261fc2d..88675381 100644 --- a/map2loop/_datasets/config_files/NSW.json +++ b/map2loop/_datasets/config_files/NSW.json @@ -24,7 +24,7 @@ "intrusive_text": "intrusive", "volcanic_text": "volcanic", "objectid_column": "ID", - "ignore_codes": ["cover"]}, + "ignore_lithology_codes": ["cover"]}, "fault": { "structtype_column": "boundaryty", "fault_text": "Fault", @@ -36,7 +36,7 @@ "dipestimate_column": "faultdipan", "dipestimate_text": "Moderate,Listric,Steep,Vertical", "name_column": "name", - "objectid_column": "unique_id" + "objectid_column": "unique_id", }, "fold": { "structtype_column": "codedescpt", diff --git a/map2loop/_datasets/config_files/QLD.json b/map2loop/_datasets/config_files/QLD.json index 7d93454e..d4a3b35e 100644 --- a/map2loop/_datasets/config_files/QLD.json +++ b/map2loop/_datasets/config_files/QLD.json @@ -24,7 +24,7 @@ "intrusive_text": "Y", "volcanic_text": "VOLCANIC", "objectid_column": "ID", - "ignore_codes": ["cover"] + "ignore_lithology_codes": ["cover"] }, "fault": { "structtype_column": "type", diff --git a/map2loop/_datasets/config_files/SA.json b/map2loop/_datasets/config_files/SA.json index f32022f4..daf2806e 100644 --- a/map2loop/_datasets/config_files/SA.json +++ b/map2loop/_datasets/config_files/SA.json @@ -24,7 +24,7 @@ "intrusive_text": "intrusive", "volcanic_text": "volc", "objectid_column": "ID", - "ignore_codes": ["cover"] + "ignore_lithology_codes": ["cover"] }, "fault": { "structtype_column": "descriptio", diff --git a/map2loop/_datasets/config_files/TAS.json b/map2loop/_datasets/config_files/TAS.json index a25adf23..d795f8d2 100644 --- a/map2loop/_datasets/config_files/TAS.json +++ b/map2loop/_datasets/config_files/TAS.json @@ -24,7 +24,7 @@ "intrusive_text": "granit", "volcanic_text": "volc", "objectid_column": "ID", - "ignore_codes": ["cover"] + "ignore_lithology_codes": ["cover"] }, "fault": { "structtype_column": "TYPE", diff --git a/map2loop/_datasets/config_files/VIC.json b/map2loop/_datasets/config_files/VIC.json index 16bb899f..b2762530 100644 --- a/map2loop/_datasets/config_files/VIC.json +++ b/map2loop/_datasets/config_files/VIC.json @@ -24,7 +24,7 @@ "intrusive_text": "intrusion", "volcanic_text": "volc", "objectid_column": "ID", - "ignore_codes": ["cover"] + "ignore_lithology_codes": ["cover"] }, "fault": { "structtype_column": "featuretyp", diff --git a/map2loop/_datasets/config_files/WA.json b/map2loop/_datasets/config_files/WA.json index 8b884fa4..4c722dc8 100644 --- a/map2loop/_datasets/config_files/WA.json +++ b/map2loop/_datasets/config_files/WA.json @@ -23,7 +23,7 @@ "intrusive_text": "intrusive", "volcanic_text": "volcanic", "objectid_column": "ID", - "ignore_codes": ["cover"] + "ignore_lithology_codes": ["cover"] }, "fault": { "structtype_column": "feature", diff --git a/map2loop/_datasets/geodata_files/hamersley/dtm_rp.tif b/map2loop/_datasets/geodata_files/hamersley/dtm_rp.tif new file mode 100644 index 00000000..a9ba843e Binary files /dev/null and b/map2loop/_datasets/geodata_files/hamersley/dtm_rp.tif differ diff --git a/map2loop/_datasets/geodata_files/hamersley/faults.geojson b/map2loop/_datasets/geodata_files/hamersley/faults.geojson new file mode 100644 index 00000000..bfc9d5dd --- /dev/null +++ b/map2loop/_datasets/geodata_files/hamersley/faults.geojson @@ -0,0 +1,42 @@ +{ +"type": "FeatureCollection", +"name": "faults", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::28350" } }, +"features": [ +{ "type": "Feature", "properties": { "gml_id": "linear_500k.7344", "objectid": "7344", "feature": "Fault or shear zone, major", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone, major; exposed", "extract_da": "2016-06-29", "shape_leng": 0.69607471020199996, "fdipest_va": "None", "f_length": 2013.8250120821676 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 517202.720465901540592, 7473446.765934069640934 ], [ 516155.3168108399841, 7474354.511743649840355 ], [ 515687.31005864002509, 7474773.047381143085659 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.7436", "objectid": "7436", "feature": "Fault or shear zone, major", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone, major; exposed", "extract_da": "2016-06-29", "shape_leng": 0.21547223204400001, "fdipest_va": "None", "f_length": 20398.167266226865 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 524662.731309870025143, 7480154.449138020165265 ], [ 525046.501200460013933, 7480304.959696319885552 ], [ 525590.138856749981642, 7480549.457734939642251 ], [ 526736.961849370039999, 7480922.959662619978189 ], [ 529856.887474340037443, 7481720.479547889903188 ], [ 529827.910515989991836, 7480963.489905229769647 ], [ 531488.108066829969175, 7481043.48909377027303 ], [ 533085.269960989942774, 7481251.001002869568765 ], [ 534592.610763909993693, 7481281.00779134966433 ], [ 536441.719193030032329, 7480978.031349039636552 ], [ 537775.93181324005127, 7480703.570456990040839 ], [ 538468.262211170047522, 7480515.588263570331037 ], [ 538902.020067770034075, 7480793.101080619730055 ], [ 539450.069282670039684, 7481044.61925155017525 ], [ 540092.788811390055344, 7481117.631719109602273 ], [ 540899.980495239957236, 7481030.660386419855058 ], [ 541528.288530569989234, 7480753.667894089594483 ], [ 542003.921304309973493, 7480483.660549759864807 ], [ 542810.168601599987596, 7480186.172313690185547 ], [ 543273.430744710029103, 7479986.681214369833469 ], [ 543539.54005779, 7479775.178710600361228 ], [ 543850.099438710021786, 7479563.177159620448947 ], [ 544323.518753150012344, 7479210.680796929635108 ], [ 545000.019705810002051, 7478579.670257880352437 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.7439", "objectid": "7439", "feature": "Fault or shear zone, major", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone, major; exposed", "extract_da": "2016-06-29", "shape_leng": 0.34452964424, "fdipest_va": "None", "f_length": 35247.789928586593 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 560124.945183429983445, 7479717.814294899813831 ], [ 559565.259590790024959, 7480131.810321420431137 ], [ 558961.618415990029462, 7480662.810186750255525 ], [ 558506.944315879954956, 7480932.371391680091619 ], [ 558166.318415640038438, 7481134.301850480027497 ], [ 557462.729210410034284, 7481615.291048490442336 ], [ 555890.978131970041431, 7482756.780634740367532 ], [ 554199.290736960014328, 7484058.279978330247104 ], [ 553299.030578140052967, 7484648.280572880059481 ], [ 552461.869387940037996, 7485130.261249019764364 ], [ 551340.358837340027094, 7485626.337629109621048 ], [ 551180.02149674994871, 7485697.249936630018055 ], [ 549901.131908909999765, 7486170.605126890353858 ], [ 549154.91041516000405, 7486446.740225279703736 ], [ 547917.222122960025445, 7486949.728884849697351 ], [ 546577.260286420001648, 7487345.218131000176072 ], [ 544875.02778613998089, 7487774.691257519647479 ], [ 543840.309419329976663, 7488181.178546589799225 ], [ 542571.512399810017087, 7488831.16066893003881 ], [ 541894.312351180007681, 7489210.159689639694989 ], [ 541734.628457920043729, 7489299.554097919724882 ], [ 541239.63983072002884, 7489576.641609829850495 ], [ 539566.533569280058146, 7489954.743095840327442 ], [ 538311.225570010021329, 7490273.624975340440869 ], [ 537771.612724979990162, 7490461.123313999734819 ], [ 537397.371146259945817, 7490660.111204300075769 ], [ 537143.239344249945134, 7490712.609949969686568 ], [ 536190.440703699947335, 7490947.099784820340574 ], [ 534321.3049298300175, 7491059.071795090101659 ], [ 533413.077434350037947, 7491318.567578700371087 ], [ 532258.33258664002642, 7491872.062288270331919 ], [ 531616.531035959953442, 7491977.044998600147665 ], [ 530872.614102820050903, 7492013.049088159576058 ], [ 530002.694043949944898, 7492272.541349769569933 ], [ 529240.747981040040031, 7492531.029306390322745 ], [ 528389.753596790018491, 7492771.532828389666975 ], [ 527475.04337436996866, 7492999.0268415203318 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.5471", "objectid": "5471", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.022972516496399999, "fdipest_va": "None", "f_length": 2363.1563702360281 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 521224.28995990002295, 7489118.450215740129352 ], [ 520608.107771619979758, 7489268.439483519643545 ], [ 518898.751195219985675, 7489538.423410310409963 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.962", "objectid": "962", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.027183596789400001, "fdipest_va": "None", "f_length": 2805.6557429507325 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 520020.694838049996179, 7495438.933689510449767 ], [ 519762.199077040015254, 7495904.939755939878523 ], [ 519433.317879359994549, 7496282.440096319653094 ], [ 519021.359903179982211, 7496577.43004279024899 ], [ 518014.126850700005889, 7497123.757406969554722 ], [ 517847.879607070004568, 7497213.920483820140362 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.2229", "objectid": "2229", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.0588886936927, "fdipest_va": "None", "f_length": 3602.3007443756956 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 517292.775247581710573, 7473446.765934069640934 ], [ 517093.294708309986163, 7473675.01434085983783 ], [ 516368.428606080007739, 7475034.48169700987637 ], [ 515687.31005864002509, 7476671.522076792083681 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.2235", "objectid": "2235", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.19162297509099999, "fdipest_va": "None", "f_length": 16771.902008888235 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 525375.306361280032434, 7483424.968661130405962 ], [ 524988.585061719990335, 7483694.465257430449128 ], [ 524381.214666309999302, 7484340.470171829685569 ], [ 523577.778480749984737, 7485223.462142010219395 ], [ 523268.120747109991498, 7485625.951278139837086 ], [ 522902.449866149981972, 7486302.463320540264249 ], [ 522587.881250180013012, 7487010.960306259803474 ], [ 522285.260041049972642, 7487566.451212669722736 ], [ 521735.345336540020071, 7488269.453394209966063 ], [ 521415.015917160024401, 7488743.451923729851842 ], [ 521224.28995990002295, 7489118.450215740129352 ], [ 520689.08119361998979, 7490139.435721959918737 ], [ 520260.744578189973254, 7491109.445960289798677 ], [ 519972.781546910002362, 7492053.439017180353403 ], [ 519550.390407519997098, 7492831.928755390457809 ], [ 518943.53730775002623, 7493598.928786990232766 ], [ 518184.840464940003585, 7494525.920076359994709 ], [ 517804.770179970015306, 7494846.419316650368273 ], [ 517393.629248439974617, 7495306.919828530400991 ], [ 517026.319249610009138, 7495626.907642680220306 ], [ 516855.688426990003791, 7495863.411676510237157 ], [ 516444.34235097002238, 7496285.908533269539475 ], [ 515754.799057190015446, 7497040.40949865989387 ], [ 515687.31005864002509, 7497115.820520521141589 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.2248", "objectid": "2248", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.0689885561324, "fdipest_va": "None", "f_length": 7375.7325443051841 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 522843.713800630008336, 7511577.421128500252962 ], [ 522667.643244259990752, 7511811.672819529660046 ], [ 522459.529177899996284, 7512088.520967369899154 ], [ 522004.111833690025378, 7512606.520235720090568 ], [ 521206.44805255002575, 7513361.990735249593854 ], [ 520542.462652940012049, 7514160.968576639890671 ], [ 519928.680768750025891, 7514807.459462120197713 ], [ 519637.843780160008464, 7515158.941412970423698 ], [ 519480.055891769996379, 7515414.440671419724822 ], [ 519418.43464920000406, 7515485.763669120147824 ], [ 519041.141933469974902, 7515922.438162039965391 ], [ 517993.830778139992617, 7517134.404593770392239 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.2843", "objectid": "2843", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.20940977636200001, "fdipest_va": "None", "f_length": 8401.2324057531223 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 515687.31005864002509, 7499279.464208023622632 ], [ 515891.759344700025395, 7499082.908461970277131 ], [ 515937.860309560026508, 7499043.418337680399418 ], [ 516084.351389759976882, 7498918.921142539940774 ], [ 516132.401962460018694, 7498877.912625979632139 ], [ 516399.80081337998854, 7498690.920674299821258 ], [ 516446.690742139995564, 7498643.431208970025182 ], [ 516885.902088599978015, 7498199.429791740141809 ], [ 516997.112233689986169, 7498099.42919669020921 ], [ 517453.487259540008381, 7497683.898538310080767 ], [ 517473.779419790022075, 7497665.421633450314403 ], [ 517847.879607070004568, 7497213.920483820140362 ], [ 517992.779921379988082, 7496926.429134880192578 ], [ 518383.931465780013241, 7496275.420112829655409 ], [ 518769.290147739986423, 7495725.928489049896598 ], [ 519033.604051309986971, 7495151.432649079710245 ], [ 519611.795035559975076, 7493709.943739750422537 ], [ 519761.542984510015231, 7493104.438978809863329 ], [ 519879.251786859997083, 7492448.441115270368755 ], [ 519972.781546910002362, 7492053.439017180353403 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.2997", "objectid": "2997", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.144270450346, "fdipest_va": "None", "f_length": 14710.040273743693 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 545893.982440590043552, 7489525.865237230435014 ], [ 545755.501423749956302, 7489723.681356839835644 ], [ 545376.714752299943939, 7490292.184617109596729 ], [ 544972.205994840012863, 7490816.668644879944623 ], [ 544698.529046399984509, 7491229.161237480118871 ], [ 544585.511445099953562, 7491365.671757680363953 ], [ 544315.018133740057237, 7491692.172029820270836 ], [ 544278.199806150048971, 7491731.162152949720621 ], [ 544116.748927850043401, 7491902.661235259845853 ], [ 543948.009315419942141, 7492082.159292030148208 ], [ 543815.639348490047269, 7492181.652319029904902 ], [ 543212.941721210023388, 7492633.649540970101953 ], [ 542578.619356640032493, 7492980.651306429877877 ], [ 542286.889140769955702, 7493141.651626129634678 ], [ 541963.191630379995331, 7493283.139785939827561 ], [ 541373.259800240048207, 7493585.62896960042417 ], [ 540638.124322429997846, 7494130.628004129976034 ], [ 540139.053409980027936, 7494814.134235120378435 ], [ 539420.743872739956714, 7496089.788245170377195 ], [ 539394.932092539966106, 7496135.622971139848232 ], [ 539028.582859760033898, 7496659.634657469578087 ], [ 538598.44607518997509, 7497133.11172220017761 ], [ 538110.633066489943303, 7497524.112075549550354 ], [ 537533.494343, 7497858.113273129798472 ], [ 536981.509444260038435, 7498128.616054690442979 ], [ 536416.394748160033487, 7498309.60412959009409 ], [ 535889.294433110044338, 7498465.104733089916408 ], [ 535476.490004069986753, 7498575.614150510169566 ], [ 534479.09627294994425, 7498804.100987359881401 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.3496", "objectid": "3496", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.21290216458700001, "fdipest_va": "None", "f_length": 22078.032014181666 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 534630.344419640023261, 7483865.054920770227909 ], [ 534090.605516889947467, 7484046.061162989586592 ], [ 533742.16394764999859, 7484321.563762390054762 ], [ 533388.352786069968715, 7484794.567881429567933 ], [ 533015.993451450020075, 7485395.057500000111759 ], [ 532580.79170147003606, 7486055.071734 ], [ 531873.554617180023342, 7487027.045153779909015 ], [ 531550.802420830004849, 7487522.534031979739666 ], [ 530508.60395946004428, 7489023.526020259596407 ], [ 530193.100235059973784, 7489541.038226149976254 ], [ 529932.98886083997786, 7489804.025997609831393 ], [ 528977.92851385998074, 7490769.530310049653053 ], [ 528182.869514529942535, 7492066.029675690457225 ], [ 527790.80764607002493, 7492539.02315779030323 ], [ 527475.04337436996866, 7492999.0268415203318 ], [ 527088.25041355995927, 7493236.510807050392032 ], [ 526531.36511283996515, 7493812.513877440243959 ], [ 526241.489689219975844, 7494361.51259948965162 ], [ 526035.078369640046731, 7495088.003753029741347 ], [ 525796.658087110030465, 7495764.013787739910185 ], [ 525855.197643790044822, 7496044.014673720113933 ], [ 525794.777131009963341, 7496712.512838150374591 ], [ 525856.835597730008885, 7497705.016057100147009 ], [ 525757.751035670051351, 7498272.01408907957375 ], [ 525089.157086809980683, 7499446.523187180049717 ], [ 524596.275880079949275, 7500098.515409070067108 ], [ 524512.801641589961946, 7500182.007559839636087 ], [ 524248.587900620012078, 7500447.019791600294411 ], [ 523887.395825060026255, 7500808.999436230398715 ], [ 523814.809190919972025, 7500861.501062089577317 ], [ 523576.890120199997909, 7501033.501141640357673 ], [ 523090.591946310014464, 7501408.48978086002171 ], [ 522521.981803109985776, 7501847.499487180262804 ], [ 522422.251586830010638, 7501924.491564869880676 ], [ 522189.265679979987908, 7502103.998349949717522 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.3498", "objectid": "3498", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.14614318885499999, "fdipest_va": "None", "f_length": 15681.763068419115 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 539513.18738029000815, 7491597.135662140324712 ], [ 539039.420328530017287, 7492274.12993127014488 ], [ 538799.870407829992473, 7492714.619908530265093 ], [ 537896.952363259973936, 7494062.605013419874012 ], [ 536855.690676470054314, 7495537.219498230144382 ], [ 536570.445695930044167, 7495941.11459244042635 ], [ 534479.09627294994425, 7498804.100987359881401 ], [ 534340.198053610045463, 7498999.598917209543288 ], [ 534210.08037375996355, 7499182.601076159626245 ], [ 533285.191948459949344, 7500484.100489480420947 ], [ 533038.928390149958432, 7500854.600384600460529 ], [ 532980.302307370002382, 7500984.598948230035603 ], [ 532914.749698439962231, 7501129.601234369911253 ], [ 532869.005174660007469, 7501231.109522 ], [ 532622.259100739960559, 7501487.100418950431049 ], [ 532540.009993170038797, 7501632.111001119948924 ], [ 532401.508138290024363, 7501876.600775930099189 ], [ 532130.460120560019277, 7502165.598587250337005 ], [ 531813.067038940032944, 7502503.612030349671841 ], [ 531205.580599669949152, 7503124.104875519871712 ], [ 531092.210039410041645, 7503242.110120669938624 ], [ 530852.970184960053302, 7503491.101557740010321 ], [ 530456.141345420037396, 7503904.609147939831018 ], [ 530330.938629699987359, 7504034.600131260231137 ], [ 530175.965637290035374, 7504196.103201430290937 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.5252", "objectid": "5252", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.0338998859949, "fdipest_va": "None", "f_length": 3484.3276283695277 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 524688.384331559995189, 7488743.497944040223956 ], [ 521224.28995990002295, 7489118.450215740129352 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.5298", "objectid": "5298", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.077828032180899995, "fdipest_va": "None", "f_length": 822.38287322953818 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 515687.31005864002509, 7492455.859640089794993 ], [ 515821.361775620025583, 7492330.396451840177178 ], [ 516087.543438140011858, 7492144.398231060244143 ], [ 516385.874893560016062, 7492021.900239230133593 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.5475", "objectid": "5475", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.042939642574700003, "fdipest_va": "None", "f_length": 4407.2642932469307 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 537479.487627579947002, 7491875.605280649848282 ], [ 538108.980728280032054, 7491621.570607610046864 ], [ 538653.382748030009679, 7491340.63658242020756 ], [ 539288.184233359992504, 7491102.136069759726524 ], [ 540207.945575259975158, 7490606.635625110007823 ], [ 540639.121395469992422, 7490337.128159949555993 ], [ 540907.502632849966176, 7490065.840333109721541 ], [ 540987.830442319973372, 7489984.639754460193217 ], [ 541044.12911024002824, 7489927.639171360060573 ], [ 541239.63983072002884, 7489576.641609829850495 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.5484", "objectid": "5484", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.028534586903600001, "fdipest_va": "None", "f_length": 2980.007179219725 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 546077.045000139973126, 7511377.572510709986091 ], [ 546760.383333910023794, 7510983.120992070063949 ], [ 547274.148572140024044, 7510712.640855640172958 ], [ 547768.500521330046467, 7510360.139111110009253 ], [ 548034.69859790999908, 7510174.130197290331125 ], [ 548653.861043310025707, 7509880.755264730192721 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.5991", "objectid": "5991", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.030848590592199999, "fdipest_va": "None", "f_length": 3275.664408692398 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 547917.222122960025445, 7486949.728884849697351 ], [ 547606.734297530027106, 7487180.715293980203569 ], [ 547106.486713789985515, 7487628.706764680333436 ], [ 546828.400167859974317, 7488005.707395079545677 ], [ 546500.341896250029095, 7488548.709076629951596 ], [ 546373.349525970057584, 7488770.701892349869013 ], [ 546153.451628749957308, 7489155.203512029722333 ], [ 545893.982440590043552, 7489525.865237230435014 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.5993", "objectid": "5993", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.074018082113200004, "fdipest_va": "None", "f_length": 7519.8765377399695 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 546577.260286420001648, 7487345.218131000176072 ], [ 546330.89916800998617, 7487696.71611354034394 ], [ 545786.336481709964573, 7488183.695748169906437 ], [ 545121.015556809958071, 7488689.692021830007434 ], [ 544468.1458506899653, 7489139.179791740141809 ], [ 543986.25772977003362, 7489440.682568839751184 ], [ 543574.24616961996071, 7489729.169508170336485 ], [ 543213.112730919965543, 7490017.653503140434623 ], [ 543048.607601730036549, 7490190.670277699828148 ], [ 542727.29424757999368, 7490582.411660600453615 ], [ 542565.714181120041758, 7490765.152392890304327 ], [ 542391.501186319976114, 7491085.14929233957082 ], [ 542259.79017825005576, 7491461.148964759893715 ], [ 542203.428717299946584, 7491646.147394060157239 ], [ 542059.954675570013933, 7492226.136979030445218 ], [ 541941.924439070047811, 7492825.14518687967211 ], [ 541963.191630379995331, 7493283.139785939827561 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.6000", "objectid": "6000", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.037058362088500003, "fdipest_va": "None", "f_length": 3960.9753628215476 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 529446.156541979988106, 7499851.690590590238571 ], [ 529080.291546280030161, 7500220.560018580406904 ], [ 528861.282109110034071, 7500456.376656860113144 ], [ 528593.159048130037263, 7500745.061562200076878 ], [ 528419.508611020050012, 7500966.560950050130486 ], [ 528302.37962347001303, 7501116.061090369708836 ], [ 528055.80054874997586, 7501423.059336580336094 ], [ 527895.380413289996795, 7501600.550623680464923 ], [ 527190.810228800051846, 7502380.041910089552402 ], [ 527002.751236020005308, 7502588.051300710067153 ], [ 526806.656610709964298, 7502805.055779269896448 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.7099", "objectid": "7099", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.063096864686899998, "fdipest_va": "None", "f_length": 6746.4153979801667 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 517946.071831570006907, 7488467.898605770431459 ], [ 519045.77152519999072, 7487029.905968300066888 ], [ 519197.270578199997544, 7486806.422487869858742 ], [ 520303.716124719998334, 7485450.934683210216463 ], [ 521784.480578640010208, 7483902.939748739823699 ], [ 522018.439330630004406, 7483621.429230930283666 ], [ 522322.308881259988993, 7483333.439529390074313 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.7222", "objectid": "7222", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.023526870670400001, "fdipest_va": "None", "f_length": 2522.4513746830626 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 521141.664378010027576, 7486458.435028789564967 ], [ 520294.173693760007154, 7487449.934960329905152 ], [ 520117.361577910021879, 7487711.427278730086982 ], [ 519978.909117389994208, 7488011.42803343012929 ], [ 519682.388958929979708, 7488515.927723529748619 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.8400", "objectid": "8400", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.039097727116900002, "fdipest_va": "None", "f_length": 2572.0268582499962 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 527486.920955068082549, 7521273.574077860452235 ], [ 528170.259027419961058, 7521093.710383520461619 ], [ 528411.254987620050088, 7521033.752876689657569 ], [ 528606.400429080007598, 7520985.19937258027494 ], [ 529986.090363980038092, 7520665.729998249560595 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.8973", "objectid": "8973", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.062307332187100002, "fdipest_va": "None", "f_length": 2826.4761570614514 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 530992.855844534235075, 7521273.574077860452235 ], [ 531297.701123569975607, 7520983.249538940377533 ], [ 531480.963544709957205, 7520734.238452129997313 ], [ 531917.638871380011551, 7520292.741055980324745 ], [ 532155.879878710024059, 7520065.750446840189397 ], [ 532538.044361050007865, 7519770.235373769886792 ], [ 532956.143834310001694, 7519517.757278610020876 ], [ 533136.407607130007818, 7519431.251275659538805 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.10762", "objectid": "10762", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.089243495753500005, "fdipest_va": "None", "f_length": 7145.3346815613522 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 521416.135769639979117, 7482669.934426570311189 ], [ 521112.019750770006794, 7482919.920276300050318 ], [ 520941.17862751998473, 7483098.931340790353715 ], [ 519643.779406770016067, 7484410.921453329734504 ], [ 519428.37901418999536, 7484590.407976619899273 ], [ 518845.536499290028587, 7485045.406873329542577 ], [ 517828.893789199995808, 7485749.401605719700456 ], [ 517634.900084780005272, 7485898.400607920251787 ], [ 517463.637543010001536, 7486001.3904719799757 ], [ 516284.113578960008454, 7486694.874556819908321 ], [ 515687.31005864002509, 7486940.339990976266563 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.11445", "objectid": "11445", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.043725421813099997, "fdipest_va": "None", "f_length": 4494.7846661542471 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 523814.809190919972025, 7500861.501062089577317 ], [ 524403.068835210055113, 7500914.508251950144768 ], [ 525518.201257530017756, 7500983.103860430419445 ], [ 526591.381750919972546, 7501049.041682800278068 ], [ 528009.380023929988965, 7501104.558906380087137 ], [ 528302.37962347001303, 7501116.061090369708836 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.12642", "objectid": "12642", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.14224340908499999, "fdipest_va": "None", "f_length": 786.14353439165507 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 561902.167282090056688, 7495667.56119192019105 ], [ 562666.860106543055736, 7495485.170016432181001 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.12646", "objectid": "12646", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.044439716927600001, "fdipest_va": "None", "f_length": 4566.9075934677721 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 528055.80054874997586, 7501423.059336580336094 ], [ 529283.510124549968168, 7501486.060903140343726 ], [ 529735.54628834000323, 7501486.244186529889703 ], [ 530418.709116179961711, 7501486.495882200077176 ], [ 531172.410778839956038, 7501486.738344419747591 ], [ 532463.803578209946863, 7501487.067533879540861 ], [ 532622.259100739960559, 7501487.100418950431049 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.12647", "objectid": "12647", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.17865293854299999, "fdipest_va": "None", "f_length": 18985.563687080074 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 520343.178845660004299, 7501712.978961739689112 ], [ 521600.978795, 7500716.479862280189991 ], [ 522066.440767369989771, 7500347.990559520199895 ], [ 522262.589272340002935, 7500072.482112180441618 ], [ 523291.23883935000049, 7498627.490776379592717 ], [ 523430.941085200000089, 7498430.979713380336761 ], [ 524119.321671199984848, 7497642.515167159959674 ], [ 524494.087621630053036, 7496605.006665759719908 ], [ 524724.625480890041217, 7495307.987497569993138 ], [ 525272.357812479953282, 7494039.499616749584675 ], [ 525704.705044450005516, 7493463.004130420275033 ], [ 526223.552350059966557, 7492598.513504239730537 ], [ 526718.599498050054535, 7491736.499324159696698 ], [ 527174.819998839986511, 7490782.511625469662249 ], [ 527680.867203320027329, 7490012.509104180149734 ], [ 528289.459433970041573, 7489080.5208191704005 ], [ 528731.341024499968626, 7488476.021522340364754 ], [ 528891.789115860010497, 7488198.021047179587185 ], [ 529097.547816199949011, 7487841.02214759029448 ], [ 529422.971164569957182, 7487328.51025386992842 ], [ 529486.573557080002502, 7487228.240700149908662 ], [ 529610.718033500015736, 7487032.521789319813251 ], [ 529682.618564800010063, 7486919.515432059764862 ], [ 530172.6139977700077, 7486401.029060339555144 ], [ 530691.434301109984517, 7485795.528237929567695 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.12658", "objectid": "12658", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.15447701996, "fdipest_va": "None", "f_length": 15200.046509349622 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 546639.326832990045659, 7512670.782520250417292 ], [ 547057.775435899966396, 7512183.625658540055156 ], [ 547482.991678660036996, 7511755.15088418032974 ], [ 547514.270673359977081, 7511723.630796080455184 ], [ 547817.780032480019145, 7511359.139636830426753 ], [ 547988.058195890043862, 7511059.142060459591448 ], [ 548241.141583189950325, 7510796.629177399910986 ], [ 548272.140547640039586, 7510624.629289410077035 ], [ 548653.861043310025707, 7509880.755264730192721 ], [ 548691.03702358994633, 7509786.30969331972301 ], [ 548901.391993590048514, 7509041.566284390166402 ], [ 548978.500856050057337, 7508211.383331050164998 ], [ 548948.533902819966897, 7507152.606030480004847 ], [ 548779.685502600041218, 7504205.423594909720123 ], [ 548696.40364779997617, 7503089.566730390302837 ], [ 548667.183838249999098, 7502259.716654529795051 ], [ 548771.482885590055957, 7501629.778157870285213 ], [ 549125.659183360054158, 7501291.062091520056129 ], [ 549221.865539910038933, 7501199.051245300099254 ], [ 550309.222220050054602, 7500537.295864489860833 ], [ 551263.632066929945722, 7499875.891512420028448 ], [ 551387.972487649996765, 7499780.993722099810839 ], [ 551979.205525040044449, 7499329.728640070185065 ], [ 552615.423490180051886, 7498898.280161679722369 ], [ 552794.049566520028748, 7498772.552346600219607 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.12660", "objectid": "12660", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.12769222022500001, "fdipest_va": "None", "f_length": 5446.0141803419847 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 515687.31005864002509, 7509754.226525011472404 ], [ 515762.921122459985781, 7509734.929779949598014 ], [ 516050.241491410008166, 7509647.433505680412054 ], [ 517524.078368620015681, 7509517.960638030432165 ], [ 517746.860329139977694, 7509496.468574400059879 ], [ 518067.749226149986498, 7509452.469257179647684 ], [ 518912.777727360022254, 7509330.469264090061188 ], [ 519307.440221610013396, 7509273.489978619851172 ], [ 520543.734839770011604, 7509095.012791169807315 ], [ 521090.551235229999293, 7509073.010523959994316 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.14378", "objectid": "14378", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.23642521048199999, "fdipest_va": "None", "f_length": 10307.327864510869 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 515687.31005864002509, 7504448.313224441371858 ], [ 515694.686183339974377, 7504430.430270689539611 ], [ 515738.884765990020242, 7504353.44032260030508 ], [ 516394.712813880003523, 7503210.940093110315502 ], [ 516559.528845859982539, 7502992.442232459783554 ], [ 516863.057892550015822, 7502589.942326090298593 ], [ 516965.380961949995253, 7502458.640669760294259 ], [ 516985.409341790014878, 7502432.939720500260592 ], [ 517381.030367530009244, 7501996.450458600185812 ], [ 517439.452265209984034, 7501894.939140919595957 ], [ 517626.978287780017126, 7501568.438148490153253 ], [ 517873.439548989990726, 7501235.941138340160251 ], [ 517978.502588119998109, 7501117.440985389985144 ], [ 518524.94426239997847, 7500500.44191140960902 ], [ 518815.131402549974155, 7500008.949371010065079 ], [ 518839.308721749985125, 7499930.939910490065813 ], [ 518912.270378570014145, 7499695.460613209754229 ], [ 518959.7393457100261, 7499542.451161020435393 ], [ 519006.429596919973847, 7499391.451385069638491 ], [ 519103.091585670015775, 7499079.938515909947455 ], [ 519142.373424510005862, 7498952.950562380254269 ], [ 519198.908855680027045, 7498812.449021309614182 ], [ 519252.201017629995476, 7498679.95235482044518 ], [ 519335.661807239986956, 7498472.439554910175502 ], [ 519782.088446919980925, 7497413.448312009684741 ], [ 520002.388502940011676, 7496934.941946909762919 ], [ 520209.108364530024119, 7496271.949922599829733 ], [ 520631.035448519978672, 7495403.94553089980036 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.15546", "objectid": "15546", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.0197555949106, "fdipest_va": "None", "f_length": 2021.0069333961442 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 524248.587900620012078, 7500447.019791600294411 ], [ 523397.800140250008553, 7500183.491012180224061 ], [ 522854.101535509980749, 7500070.490630240179598 ], [ 522262.589272340002935, 7500072.482112180441618 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.16399", "objectid": "16399", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.10255475240299999, "fdipest_va": "None", "f_length": 2555.8730471701929 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 556931.350873869960196, 7494207.778886959888041 ], [ 556392.397013530018739, 7494547.771397120319307 ], [ 556063.474038669955917, 7494912.25786785967648 ], [ 555539.31373061996419, 7495666.264463040046394 ], [ 555257.961555329966359, 7496120.253690180368721 ], [ 555072.269406519946642, 7496419.742752940393984 ], [ 554527.538610500050709, 7496881.231944220140576 ], [ 554307.539024519966915, 7497121.239912189543247 ], [ 552794.049566520028748, 7498772.552346600219607 ], [ 553596.084641049965285, 7498208.018528309650719 ], [ 554152.403222299995832, 7497748.167106780223548 ], [ 554862.030735339969397, 7497234.060149200260639 ], [ 555089.240362670039758, 7497031.250550740398467 ], [ 555214.778581200051121, 7496966.737625430338085 ], [ 555303.849349590018392, 7496972.251311229541898 ], [ 555397.432319379993714, 7496948.761133509688079 ], [ 555500.588549330015667, 7496894.751310749910772 ], [ 556810.039340780000202, 7496760.771355650387704 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.16754", "objectid": "16754", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.076670351064200004, "fdipest_va": "None", "f_length": 2853.6595338894481 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 562666.860106543055736, 7480980.264266897924244 ], [ 560416.268656759988517, 7482734.747342200018466 ] ] ] } }, +{ "type": "Feature", "properties": { "gml_id": "linear_500k.16769", "objectid": "16769", "feature": "Fault or shear zone", "type": "exposed", "fname": "None", "code": null, "dip": "90", "dip_est": "-999", "dip_dir": "45", "plunge": "0", "plunge_est": null, "plunge_dir": null, "max_age_ev": null, "min_age_ev": null, "symbol": "Fault or shear zone; exposed", "extract_da": "2016-06-29", "shape_leng": 0.061466720252799999, "fdipest_va": "None", "f_length": 6307.3461221196421 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 522459.529177899996284, 7512088.520967369899154 ], [ 521710.489959909988102, 7512392.008338660001755 ], [ 521012.040045049972832, 7512605.499643789604306 ], [ 520338.628719249973074, 7512761.992342449724674 ], [ 519646.421773399983067, 7512962.969492119736969 ], [ 518845.849511170003098, 7513113.960254170000553 ], [ 518852.321420539985411, 7513132.95880111027509 ], [ 518681.600405959994532, 7513163.460244859568775 ], [ 517568.778656709997449, 7513362.440888900309801 ], [ 516323.225535330013372, 7513547.422167040407658 ] ] ] } } +] +} diff --git a/map2loop/_datasets/geodata_files/hamersley/geology.geojson b/map2loop/_datasets/geodata_files/hamersley/geology.geojson new file mode 100644 index 00000000..bead96b9 --- /dev/null +++ b/map2loop/_datasets/geodata_files/hamersley/geology.geojson @@ -0,0 +1,69 @@ +{ + "type": "FeatureCollection", + "name": "geo_json3", + "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::28350" } }, + "features": [ + { "type": "Feature", "properties": { "gml_id": "geol_500k.15789", "objectid": "15791", "lithstrtno": "2258", "code": "A-HAm-cib", "unitname": "Marra Mamba Iron Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Chert banded iron-formation mudstone and siltstone; minor carbonate; metamorphosed", "parentcode": "A-HAL-xkt-ci", "parentname": "Hamersley Group lower", "rocktype1": "sedimentary other chemical or biochemical", "lithname1": "iron formation", "qualifier1": "banded", "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group lower", "formation": "Marra Mamba Iron Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2629", "maxuncerty": null, "min_age_ma": "2597", "minuncerty": "5", "max_age_da": "Inferred", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 0.039054682379700001, "shape_area": 6.8818024751e-05 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 516489.109890850028023, 7497660.420436239801347 ], [ 516265.418169579992536, 7497432.421495869755745 ], [ 515863.180090909998398, 7497103.421118300408125 ], [ 515793.128931319981348, 7497078.399584740400314 ], [ 515754.799057190015446, 7497040.40949865989387 ], [ 515687.31005864002509, 7497115.820520521141589 ], [ 515687.31005864002509, 7497389.639072336256504 ], [ 515870.970363410015125, 7497621.410565420053899 ], [ 516091.261018930003047, 7498037.406657399609685 ], [ 516446.690742139995564, 7498643.431208970025182 ], [ 516885.902088599978015, 7498199.429791740141809 ], [ 516642.618601860012859, 7497850.430777939967811 ], [ 516489.109890850028023, 7497660.420436239801347 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.15268", "objectid": "15270", "lithstrtno": "4124", "code": "A-HAu-xsl-ci", "unitname": "Mount McRae Shale and Mount Sylvia Formation", "gswastatus": "Informal", "rank": "Formation", "descriptn": "Mudstone siltstone chert banded iron-formation and dolomite; metamorphosed", "parentcode": "A-HAL-xkt-ci", "parentname": "Hamersley Group lower", "rocktype1": "sedimentary siliciclastic", "lithname1": "siltstone/mudstone", "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "sedimentary other chemical or biochemical", "lithname2": "iron formation", "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group lower", "formation": "Mount McRae Shale and Mount Sylvia Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2541", "maxuncerty": null, "min_age_ma": "2501", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.035312963642799997, "shape_area": 3.7384857464999998e-05 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 515687.31005864002509, 7498836.682474304921925 ], [ 515699.650689409987535, 7498844.919029789976776 ], [ 515937.860309560026508, 7499043.41833767015487 ], [ 516084.351389759976882, 7498918.921142539940774 ], [ 515687.31005864002509, 7498557.942764979787171 ], [ 515687.31005864002509, 7498836.682474304921925 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.15980", "objectid": "15982", "lithstrtno": "4104", "code": "P_-HAo-ci", "unitname": "Boolgeeda Iron Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Fine-grained finely laminated iron-formation mudstone siltstone and chert; metamorphosed", "parentcode": "P_-HAU-xci-f", "parentname": "Hamersley Group upper", "rocktype1": "sedimentary other chemical or biochemical", "lithname1": "iron formation", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group upper", "formation": "Boolgeeda Iron Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Paleoproterozoic", "ageto": "Paleoproterozoic", "max_age_ma": "2445", "maxuncerty": "5", "min_age_ma": "2445", "minuncerty": null, "max_age_da": "Isotopic", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.092179988539400001, "shape_area": 0.00021256973534600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 515687.31005864002509, 7502462.967454206198454 ], [ 515987.759246180008631, 7502401.430705550126731 ], [ 516678.098510309995618, 7502381.430084919556975 ], [ 516985.409341790014878, 7502432.939720500260592 ], [ 517381.030367530067451, 7501996.450458600185812 ], [ 517068.967790280003101, 7501902.438979189842939 ], [ 516636.078343549976125, 7501815.939950410276651 ], [ 516241.760339149972424, 7501804.929461900144815 ], [ 515739.549064819933847, 7501845.9300237596035 ], [ 515687.31005864002509, 7501854.524165705777705 ], [ 515687.31005864002509, 7502462.967454206198454 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.15265", "objectid": "15267", "lithstrtno": "4124", "code": "A-HAu-xsl-ci", "unitname": "Mount McRae Shale and Mount Sylvia Formation", "gswastatus": "Informal", "rank": "Formation", "descriptn": "Mudstone siltstone chert banded iron-formation and dolomite; metamorphosed", "parentcode": "A-HAL-xkt-ci", "parentname": "Hamersley Group lower", "rocktype1": "sedimentary siliciclastic", "lithname1": "siltstone/mudstone", "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "sedimentary other chemical or biochemical", "lithname2": "iron formation", "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group lower", "formation": "Mount McRae Shale and Mount Sylvia Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2541", "maxuncerty": null, "min_age_ma": "2501", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.15264706186599999, "shape_area": 0.00023218029691500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 516932.129444469988812, 7508983.448731999844313 ], [ 516500.239082209998742, 7508810.949452149681747 ], [ 516068.361104719981086, 7508702.950624800287187 ], [ 515687.31005864002509, 7508702.941175408661366 ], [ 515687.31005864002509, 7509097.518641549162567 ], [ 515748.540348690003157, 7509100.438180999830365 ], [ 516262.539369589998387, 7509100.438068529590964 ], [ 516923.330806820013095, 7509295.960885399952531 ], [ 517412.839451649982948, 7509467.451953100040555 ], [ 517524.078368620015681, 7509517.960638030432165 ], [ 517746.860329139977694, 7509496.468574389815331 ], [ 518067.749226149986498, 7509452.469257179647684 ], [ 517364.010314400016796, 7509199.458663940429688 ], [ 516932.129444469988812, 7508983.448731999844313 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.15792", "objectid": "15794", "lithstrtno": "2257", "code": "A-HAd-kd", "unitname": "Wittenoom Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Thinly bedded dolomite and dolomitic shale with minor black chert shale banded iron formation and sandstone", "parentcode": "A-HAL-xkt-ci", "parentname": "Hamersley Group lower", "rocktype1": "sedimentary carbonate", "lithname1": "dolostone/dolomite", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group lower", "formation": "Wittenoom Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2597", "maxuncerty": "5", "min_age_ma": "2504", "minuncerty": null, "max_age_da": "Isotopic", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.26142909190500002, "shape_area": 0.00079194695656000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 515687.31005864002509, 7498557.942764979787171 ], [ 516084.351389759976882, 7498918.921142539940774 ], [ 516132.401962460018694, 7498877.912625970318913 ], [ 516399.80081337998854, 7498690.920674299821258 ], [ 516446.690742139995564, 7498643.431208970025182 ], [ 516091.261018930003047, 7498037.406657399609685 ], [ 515870.970363410015125, 7497621.410565420053899 ], [ 515687.31005864002509, 7497389.639072336256504 ], [ 515687.31005864002509, 7498557.942764979787171 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.6146", "objectid": "6146", "lithstrtno": "3368", "code": "A-FOj-xs-b", "unitname": "Jeerinah Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Siliciclastic sedimentary rocks mafic volcanic rocks and minor felsic volcanic rocks; local carbonate rocks chert and dolerite sills", "parentcode": "A-FOS5-xs-b", "parentname": "Fortescue Group sequence 5", "rocktype1": "sedimentary siliciclastic", "lithname1": null, "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "igneous mafic volcanic", "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": "Fortescue Group sequence 5", "formation": "Jeerinah Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": "Northeast Pilbara Sub-basin; Northwest Pilbara Sub-basin; South Pilbara Sub-basin", "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2713", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": "5", "max_age_da": "Inferred", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 0.14670614110399999, "shape_area": 0.00030483652789599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 515687.31005864002509, 7512669.795848976820707 ], [ 515874.111506199988071, 7512722.429059149697423 ], [ 516218.100934160000179, 7512841.928693260066211 ], [ 516581.109581539989449, 7512947.942037159577012 ], [ 516950.179108329990413, 7512996.938222900032997 ], [ 517211.341055419994518, 7513084.441398180089891 ], [ 517453.790812560007907, 7513254.941454670391977 ], [ 517536.821597650006879, 7513324.449564079754055 ], [ 517568.778656709997449, 7513362.440888900309801 ], [ 518681.600405959994532, 7513163.460244859568775 ], [ 518597.557984340004623, 7513057.962165310047567 ], [ 517979.090877019974869, 7512723.947809649631381 ], [ 517686.161481269984506, 7512642.961933420039713 ], [ 517399.700083919975441, 7512574.440202699974179 ], [ 516992.429335139982868, 7512525.438015379942954 ], [ 516623.332059949985705, 7512470.430852239951491 ], [ 515897.470287500007544, 7512289.931990399956703 ], [ 515687.31005864002509, 7512222.224365059286356 ], [ 515687.31005864002509, 7512669.795848976820707 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.7277", "objectid": "7278", "lithstrtno": "2219", "code": "A-FO-od", "unitname": "Fortescue Group", "gswastatus": "Informal", "rank": "Formation", "descriptn": "Dolerite dyke or sill", "parentcode": "A-FO-xb-s", "parentname": "Fortescue Group", "rocktype1": "igneous mafic intrusive", "lithname1": "dolerite", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": null, "formation": null, "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": null, "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma); Fortescue Rifting Event (2775 - 2752 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2775", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.041118133077500001, "shape_area": 9.9664177622999994e-05 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 521206.44805255002575, 7513361.990735240280628 ], [ 520938.88133815000765, 7513267.979400220327079 ], [ 520645.308756140002515, 7513059.488957329653203 ], [ 520453.800194829993416, 7512901.488577979616821 ], [ 520389.861160249973182, 7512831.980105480179191 ], [ 520370.700128689990379, 7512818.980279499664903 ], [ 520338.628719249973074, 7512761.992342449724674 ], [ 519646.421773399983067, 7512962.969492110423744 ], [ 519742.828652449999936, 7513178.980483889579773 ], [ 519820.111488119990099, 7513375.970130239613354 ], [ 519916.470420499972533, 7513578.972261999733746 ], [ 520057.24140861997148, 7513756.472654789686203 ], [ 520165.887963470013347, 7513870.459660449996591 ], [ 520280.829740790009964, 7513977.971144840121269 ], [ 520338.34111842000857, 7514028.471192579716444 ], [ 520542.462652940012049, 7514160.968576629646122 ], [ 521206.44805255002575, 7513361.990735240280628 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.6145", "objectid": "6145", "lithstrtno": "2219", "code": "A-FO-od", "unitname": "Fortescue Group", "gswastatus": "Informal", "rank": "Formation", "descriptn": "Dolerite dyke or sill", "parentcode": "A-FO-xb-s", "parentname": "Fortescue Group", "rocktype1": "igneous mafic intrusive", "lithname1": "dolerite", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": null, "formation": null, "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": null, "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma); Fortescue Rifting Event (2775 - 2752 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2775", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.17169877906600001, "shape_area": 0.00036586587207799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 515687.31005864002509, 7511091.777985905297101 ], [ 516172.129114950017538, 7511206.442232700064778 ], [ 516484.161324460001197, 7511287.432342950254679 ], [ 517223.009906649996992, 7511531.451243470422924 ], [ 517649.621018150006421, 7511643.96055980026722 ], [ 518044.527874129998963, 7511781.458831120282412 ], [ 518131.416117589978967, 7511817.681890560314059 ], [ 518452.369648710009642, 7511951.479337790049613 ], [ 518840.980136949976441, 7512101.969939400441945 ], [ 519490.44943603000138, 7512263.979586419649422 ], [ 520177.610525219934061, 7512329.978099579922855 ], [ 520438.649691370024811, 7512399.000608219765127 ], [ 520693.509920759999659, 7512499.000128109939396 ], [ 521012.040045049972832, 7512605.49964378029108 ], [ 521710.489959909988102, 7512392.008338649757206 ], [ 521551.367963330005296, 7512361.009483519941568 ], [ 521156.288484309974592, 7512191.000949360430241 ], [ 520563.539981840061955, 7511920.501662779599428 ], [ 520258.068798760010395, 7511871.500498970039189 ], [ 519984.45962465001503, 7511840.989471119828522 ], [ 519894.13068081001984, 7511815.505585880018771 ], [ 519608.750958350021392, 7511734.989269830286503 ], [ 519041.831551529990975, 7511534.482516329735518 ], [ 518143.769826399977319, 7511252.968656219542027 ], [ 517851.030990800005384, 7511209.959799789823592 ], [ 517500.928361040016171, 7511135.449482630006969 ], [ 517163.401391200022772, 7511035.449545609764755 ], [ 516431.110172140004579, 7510841.937734680250287 ], [ 516099.911749830003828, 7510729.441395100206137 ], [ 515687.31005864002509, 7510535.495148473419249 ], [ 515687.31005864002509, 7511091.777985905297101 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.6144", "objectid": "6144", "lithstrtno": "2219", "code": "A-FO-od", "unitname": "Fortescue Group", "gswastatus": "Informal", "rank": "Formation", "descriptn": "Dolerite dyke or sill", "parentcode": "A-FO-xb-s", "parentname": "Fortescue Group", "rocktype1": "igneous mafic intrusive", "lithname1": "dolerite", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": null, "formation": null, "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": null, "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma); Fortescue Rifting Event (2775 - 2752 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2775", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.15880906124700001, "shape_area": 0.00032910197507299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 516947.638945150014479, 7511819.030170059762895 ], [ 516836.319113210018259, 7511794.450638740323484 ], [ 516460.880282170022838, 7511739.42922518029809 ], [ 516091.67063110001618, 7511671.432536300271749 ], [ 515741.351565840013791, 7511558.431179 ], [ 515687.31005864002509, 7511543.949450626038015 ], [ 515687.31005864002509, 7512222.224365059286356 ], [ 515897.470287500007544, 7512289.931990399956703 ], [ 516623.332059949985705, 7512470.430852239951491 ], [ 516992.429335139982868, 7512525.438015379942954 ], [ 517399.700083919975441, 7512574.440202699974179 ], [ 517686.161481269984506, 7512642.961933420039713 ], [ 517979.090877019974869, 7512723.947809649631381 ], [ 518597.557984340004623, 7513057.962165310047567 ], [ 518681.600405959994532, 7513163.460244859568775 ], [ 518852.321420539985411, 7513132.95880111027509 ], [ 518845.849511170003098, 7513113.960254170000553 ], [ 519646.421773399983067, 7512962.969492110423744 ], [ 519366.229568860027939, 7512888.468247819691896 ], [ 519003.070431359985378, 7512743.968761979602277 ], [ 518717.717256509989966, 7512586.076355170458555 ], [ 517989.227753239974845, 7512182.947854270227253 ], [ 517562.118612990016118, 7511968.948265319690108 ], [ 517173.73125335999066, 7511868.948861289769411 ], [ 516947.638945150014479, 7511819.030170059762895 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.8405", "objectid": "8406", "lithstrtno": "2257", "code": "A-HAd-kd", "unitname": "Wittenoom Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Thinly bedded dolomite and dolomitic shale with minor black chert shale banded iron formation and sandstone", "parentcode": "A-HAL-xkt-ci", "parentname": "Hamersley Group lower", "rocktype1": "sedimentary carbonate", "lithname1": "dolostone/dolomite", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group lower", "formation": "Wittenoom Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2597", "maxuncerty": "5", "min_age_ma": "2504", "minuncerty": null, "max_age_da": "Isotopic", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.54684734904099996, "shape_area": 0.0020905981532100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 561550.468092117458582, 7473446.765934069640934 ], [ 561563.771348390029743, 7473504.338690780103207 ], [ 561907.560773620032705, 7474006.840184009633958 ], [ 561881.149548829998821, 7474430.329383400268853 ], [ 561616.650867559947073, 7474853.339500810019672 ], [ 561219.878350600018166, 7475276.850051529705524 ], [ 560928.940531059983186, 7475620.339508170261979 ], [ 560770.241452359943651, 7475990.848633529618382 ], [ 560638.070735429995693, 7476334.832341159693897 ], [ 560611.57851814001333, 7476731.339792679995298 ], [ 560690.949486859957688, 7477048.840362769551575 ], [ 560849.620869579957798, 7477524.841734640300274 ], [ 560770.249323150026612, 7478159.841215039603412 ], [ 560426.431284490041435, 7478582.820712439715862 ], [ 560135.491078190039843, 7478900.317874279804528 ], [ 559447.810751999961212, 7479693.820964760147035 ], [ 558945.300989239942282, 7480407.810311909765005 ], [ 558495.691402100026608, 7480910.312827819958329 ], [ 558166.318415640038438, 7481134.301850469782948 ], [ 558961.618415990029462, 7480662.810186740010977 ], [ 559565.259590790024959, 7480131.810321420431137 ], [ 560188.359123370028101, 7479905.321263619698584 ], [ 560664.510850730002858, 7479482.31912678014487 ], [ 560955.420378569979221, 7479111.827466390095651 ], [ 561166.979595110053197, 7478767.82974832970649 ], [ 561325.679088150034659, 7478291.849648060277104 ], [ 561695.998378359945491, 7477577.838732260279357 ], [ 561775.329069140017964, 7477180.839138709940016 ], [ 561907.561282849987037, 7476837.331754730083048 ], [ 561960.510675700032152, 7476493.341559140011668 ], [ 562066.239222049945965, 7476122.842129549942911 ], [ 562145.619462150032632, 7475408.850841050036252 ], [ 562330.751035189954564, 7474800.341639880090952 ], [ 562489.470800000010058, 7474509.841486860066652 ], [ 562648.130346660036594, 7474324.341077829711139 ], [ 562666.860106543055736, 7474303.736969869583845 ], [ 562666.860106543055736, 7473446.765934069640934 ], [ 561550.468092117458582, 7473446.765934069640934 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.14339", "objectid": "14340", "lithstrtno": "3368", "code": "A-FOj-xs-b", "unitname": "Jeerinah Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Siliciclastic sedimentary rocks mafic volcanic rocks and minor felsic volcanic rocks; local carbonate rocks chert and dolerite sills", "parentcode": "A-FOS5-xs-b", "parentname": "Fortescue Group sequence 5", "rocktype1": "sedimentary siliciclastic", "lithname1": null, "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "igneous mafic volcanic", "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": "Fortescue Group sequence 5", "formation": "Jeerinah Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": "Northeast Pilbara Sub-basin; Northwest Pilbara Sub-basin; South Pilbara Sub-basin", "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2713", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": "5", "max_age_da": "Inferred", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 14.7127427709, "shape_area": 0.0875551386441 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 547768.500521330046467, 7510360.139111110009253 ], [ 547833.519514949992299, 7510658.638555710203946 ], [ 547885.330302570015192, 7510849.639051630161703 ], [ 547988.058195890043862, 7511059.142060450278223 ], [ 547817.780032480019145, 7511359.139636830426753 ], [ 547901.03905262995977, 7511473.128256909549236 ], [ 547932.950905930018052, 7511504.638110539875925 ], [ 548009.819583300035447, 7511625.129985979758203 ], [ 548178.131280350033194, 7511752.991772890090942 ], [ 548201.349203830002807, 7511770.629450149834156 ], [ 548481.851744340034202, 7511915.631002140231431 ], [ 548736.970398409990594, 7512073.130470720119774 ], [ 549017.801531590055674, 7512281.621161259710789 ], [ 549266.988626049947925, 7512528.631090340204537 ], [ 549472.106614929973148, 7512864.628942149691284 ], [ 549772.058370289974846, 7513079.628066340461373 ], [ 550173.499784040031955, 7513255.62858837004751 ], [ 550950.400427169981413, 7513461.621362959966063 ], [ 551567.762133099953644, 7513579.118968450464308 ], [ 552064.388414149987511, 7513691.120811220258474 ], [ 552484.819579840055667, 7513847.627401660196483 ], [ 552937.390739509952255, 7514068.127719609998167 ], [ 553383.760596489999443, 7514320.130556900054216 ], [ 553824.052093980018981, 7514629.628393420018256 ], [ 554181.489136890042573, 7514895.140189480036497 ], [ 554539.221081939991564, 7515236.639436399564147 ], [ 554814.480289179948159, 7515610.641654879786074 ], [ 554930.360569710028358, 7515909.641129069961607 ], [ 554951.438217940041795, 7516316.639842939563096 ], [ 554933.830054279998876, 7516622.139660909771919 ], [ 554890.961307900026441, 7516972.630977650173008 ], [ 554860.818122409982607, 7517322.630331659689546 ], [ 554824.139225039980374, 7517622.140910509973764 ], [ 554897.088812969974242, 7518396.171608179807663 ], [ 554990.890518759959377, 7518802.678673019632697 ], [ 554959.590303609962575, 7519302.710580710321665 ], [ 554834.590492289979011, 7519521.198743339627981 ], [ 554584.581370970001444, 7519677.698691800236702 ], [ 553990.791554949944839, 7519927.697815929539502 ], [ 553271.979911400005221, 7520177.701487329788506 ], [ 553115.749627399956807, 7520427.709148810245097 ], [ 553146.990613440051675, 7520646.717184250243008 ], [ 553303.249616930028424, 7520834.22156201954931 ], [ 553678.270213259966113, 7520896.729390090331435 ], [ 553990.800218899967149, 7520927.738220330327749 ], [ 554490.839493039995432, 7521115.259799200110137 ], [ 554834.608359670033678, 7521271.771419700235128 ], [ 554839.565807851380669, 7521273.574077860452235 ], [ 558460.411528728553094, 7521273.574077860452235 ], [ 558238.450282489997335, 7521166.869241730310023 ], [ 557956.12811321998015, 7521064.850063189864159 ], [ 557667.16034474002663, 7520992.830326260067523 ], [ 557369.090800640056841, 7520948.830952799879014 ], [ 556557.541478430037387, 7520906.290372299961746 ], [ 556241.911961329984479, 7520868.278911869972944 ], [ 556016.910099909990095, 7520810.279890170320868 ], [ 555875.008043820038438, 7520751.280601110309362 ], [ 555741.528840159997344, 7520671.768353310413659 ], [ 555625.0989471799694, 7520574.75992317032069 ], [ 555524.010952410055324, 7520458.748933349736035 ], [ 555445.039403719943948, 7520328.249057630077004 ], [ 555395.219155670027249, 7520186.728332799859345 ], [ 555380.380525280022994, 7520048.739566369913518 ], [ 555395.219437, 7519909.729079619981349 ], [ 555435.229578880011104, 7519783.219700600020587 ], [ 555499.088824820006266, 7519667.229853720404208 ], [ 555656.229406600003131, 7519486.211165229789913 ], [ 555751.088573709945194, 7519358.719103270210326 ], [ 555819.40149920003023, 7519212.707879190333188 ], [ 555864.690977880032733, 7519055.707995560020208 ], [ 555895.20233105996158, 7518834.189246309921145 ], [ 555891.331017449963838, 7518695.690531640313566 ], [ 555859.967723189969547, 7518557.180103110149503 ], [ 555679.380945910001174, 7518139.159300490282476 ], [ 555568.341814159997739, 7517762.650496209971607 ], [ 555453.009693500003777, 7517472.130774790421128 ], [ 555401.158959190011956, 7517268.627473950386047 ], [ 555355.189109880011529, 7516970.139454229734838 ], [ 555224.830583850038238, 7516302.639430030249059 ], [ 555204.231297930004075, 7515990.63084764033556 ], [ 555309.620501619996503, 7515417.141945170238614 ], [ 555282.850133699947037, 7515150.140203859657049 ], [ 555039.742031399975531, 7514839.630795430392027 ], [ 554707.61186786997132, 7514542.129785289987922 ], [ 553884.700595819973387, 7514012.140901519916952 ], [ 553444.402655750047415, 7513702.63016252964735 ], [ 552851.751237579970621, 7513457.631798190064728 ], [ 551928.048944719950669, 7513125.131682810373604 ], [ 551514.231136110029183, 7513032.119074979797006 ], [ 551088.32145434000995, 7513053.619084529578686 ], [ 550643.040906760026701, 7513030.119286200031638 ], [ 550324.670768719981425, 7512949.121770850382745 ], [ 549973.879873230005614, 7512734.618608069606125 ], [ 549303.431781059945934, 7512159.130994699895382 ], [ 549054.210299010039307, 7511925.130071610212326 ], [ 548914.382106699980795, 7511750.67075092997402 ], [ 548689.44884283002466, 7511449.628524029627442 ], [ 548413.86996265000198, 7510999.63763992022723 ], [ 548292.197725779959001, 7510834.630641140043736 ], [ 548241.141583189950325, 7510796.629177389666438 ], [ 548272.140547640039586, 7510624.629289399832487 ], [ 548214.591759399976581, 7510548.640630640089512 ], [ 548034.69859790999908, 7510174.130197280086577 ], [ 547768.500521330046467, 7510360.139111110009253 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.14339", "objectid": "14340", "lithstrtno": "3368", "code": "A-FOj-xs-b", "unitname": "Jeerinah Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Siliciclastic sedimentary rocks mafic volcanic rocks and minor felsic volcanic rocks; local carbonate rocks chert and dolerite sills", "parentcode": "A-FOS5-xs-b", "parentname": "Fortescue Group sequence 5", "rocktype1": "sedimentary siliciclastic", "lithname1": null, "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "igneous mafic volcanic", "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": "Fortescue Group sequence 5", "formation": "Jeerinah Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": "Northeast Pilbara Sub-basin; Northwest Pilbara Sub-basin; South Pilbara Sub-basin", "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2713", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": "5", "max_age_da": "Inferred", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 14.7127427709, "shape_area": 0.0875551386441 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 547768.500521330046467, 7510360.139111110009253 ], [ 547742.74022460996639, 7510290.129271860234439 ], [ 547704.259539189981297, 7510226.642881070263684 ], [ 547468.009936959948391, 7510024.139007830061018 ], [ 547270.312866059946828, 7509910.650194940157235 ], [ 547123.421548460028134, 7509784.130571500398219 ], [ 546931.679415010032244, 7509581.640348309651017 ], [ 546815.548757059965283, 7509245.150106180459261 ], [ 546813.419814339955337, 7508786.638606240041554 ], [ 546793.049552879994735, 7508519.641761479899287 ], [ 546760.171894729952328, 7508297.151622120290995 ], [ 546630.139276860048994, 7507705.651409690268338 ], [ 546603.180793819949031, 7507387.650260009802878 ], [ 546506.497807570034638, 7507121.148085170425475 ], [ 546347.061501309974119, 7507032.637269330210984 ], [ 546098.209188740001991, 7506843.148602940142155 ], [ 545931.308838529977947, 7506525.652599480003119 ], [ 545783.23040363995824, 7506157.6511867698282 ], [ 545590.600436890032142, 7505770.149005670100451 ], [ 545302.220849859993905, 7505307.161514719948173 ], [ 544943.521832979982719, 7504761.659700149670243 ], [ 544725.589950209949166, 7504406.66118496004492 ], [ 544501.330129939946346, 7504057.659381669946015 ], [ 544123.749267379986122, 7503569.650559930130839 ], [ 543753.371735660010017, 7503247.158579030074179 ], [ 543357.140349189983681, 7502835.651261850260198 ], [ 543024.980478130048141, 7502538.151226189918816 ], [ 541869.510881360038184, 7501596.148375390097499 ], [ 541378.088292040047236, 7501255.148356759920716 ], [ 540868.300419189967215, 7501022.139786539599299 ], [ 540434.96862149995286, 7500840.140409230254591 ], [ 539886.788453469984233, 7500575.638558169826865 ], [ 539472.379663869971409, 7500361.638875110074878 ], [ 539128.007963520009071, 7500159.64022110030055 ], [ 538782.997857899987139, 7499830.628830580040812 ], [ 538476.510809400002472, 7499571.631227860227227 ], [ 538240.74927738995757, 7499470.6311592804268 ], [ 537903.119748480035923, 7499358.130287540145218 ], [ 537565.798215589951724, 7499296.129047449678183 ], [ 536808.489000750007108, 7499179.611402070149779 ], [ 536356.470196150010452, 7499080.119504460133612 ], [ 535866.539422170026228, 7499031.610276879742742 ], [ 535319.490297780022956, 7498996.622168369591236 ], [ 534772.740833109943196, 7499031.601619520224631 ], [ 534210.08037375996355, 7499182.60107615031302 ], [ 534340.198053610045463, 7498999.598917200230062 ], [ 533821.509492740035057, 7499055.600588059984148 ], [ 533411.811376899946481, 7499131.089975969865918 ], [ 532789.751342240022495, 7499313.0907301902771 ], [ 532046.250118199968711, 7499359.088792430236936 ], [ 531560.670086210011505, 7499404.592412210069597 ], [ 531257.250016, 7499404.57940736040473 ], [ 530968.912698370055296, 7499419.569814129732549 ], [ 530650.280006880057044, 7499495.580507 ], [ 530361.971643759985454, 7499601.580113629810512 ], [ 530210.299777820007876, 7499647.070799119770527 ], [ 530073.730894480017014, 7499647.070125780068338 ], [ 529891.582825729972683, 7499586.560860619880259 ], [ 529755.099128170055337, 7499495.580794850364327 ], [ 529648.829291590023786, 7499434.557870909571648 ], [ 528920.518834950053133, 7499359.061077320016921 ], [ 527979.749291989952326, 7499328.541776300407946 ], [ 527312.150629559997469, 7499283.029891399666667 ], [ 526705.180449269944802, 7499192.0412488700822 ], [ 525809.999477840028703, 7499116.019442549906671 ], [ 525476.200942059978843, 7499040.010854230262339 ], [ 525203.037625279976055, 7498994.508480500429869 ], [ 524869.238765610032715, 7498918.510846289806068 ], [ 524080.230386840063147, 7498843.010146860033274 ], [ 523609.870466449996457, 7498706.489138640463352 ], [ 523291.23883935000049, 7498627.490776370279491 ], [ 523430.941085200000089, 7498430.979713370092213 ], [ 523169.751951899961568, 7498336.99168633017689 ], [ 523067.899913350061979, 7498311.989780469797552 ], [ 522895.790943439991679, 7498236.478123749606311 ], [ 522615.201595210004598, 7498072.470330759882927 ], [ 521882.681205840024631, 7497821.95909606013447 ], [ 521526.329923179990146, 7497779.458482449874282 ], [ 521208.34053024998866, 7497768.461113699711859 ], [ 520979.320096470008139, 7497743.970866629853845 ], [ 520246.918788719980512, 7497531.941943439655006 ], [ 519782.088446919980925, 7497413.448312009684741 ], [ 520002.388502939953469, 7496934.941946909762919 ], [ 520209.108364530024119, 7496271.949922599829733 ], [ 520062.099349690019153, 7496119.939772210083902 ], [ 519908.908905629999936, 7495993.45121334027499 ], [ 519762.199077040073462, 7495904.939755939878523 ], [ 519433.317879359994549, 7496282.440096310339868 ], [ 519021.359903179982211, 7496577.43004279024899 ], [ 518014.126850700005889, 7497123.757406969554722 ], [ 517847.87960706994636, 7497213.920483809895813 ], [ 518052.658892910054419, 7497479.929860760457814 ], [ 518378.750043659994844, 7497847.439117729663849 ], [ 518634.320034599979408, 7498094.449079169891775 ], [ 518908.57940345996758, 7498264.440973529592156 ], [ 519335.661807239928748, 7498472.439554899930954 ], [ 519252.201017629995476, 7498679.95235482044518 ], [ 519560.629717999952845, 7498905.449083999730647 ], [ 519841.059423100028653, 7499099.460949829779565 ], [ 520204.509207860042807, 7499313.960170620121062 ], [ 520701.558828630018979, 7499521.471808220259845 ], [ 521058.238675899978261, 7499640.459560570307076 ], [ 521446.58837318001315, 7499727.479032450355589 ], [ 521783.75906401994871, 7499750.978217979893088 ], [ 522165.428285450034309, 7499767.980588540434837 ], [ 522349.829996639920864, 7499766.980938440188766 ], [ 522960.039467710070312, 7499706.491441669873893 ], [ 523297.169660909916274, 7499723.988046020269394 ], [ 523539.32880095008295, 7499824.488559490069747 ], [ 523807.080191819986794, 7499963.000741709955037 ], [ 524463.09924496000167, 7500175.499866460449994 ], [ 524512.801641589961946, 7500182.007559839636087 ], [ 524717.158815650036559, 7500210.008445120416582 ], [ 525080.378881589975208, 7500248.520118249580264 ], [ 525373.009474970051087, 7500266.021161619573832 ], [ 525849.759919609990902, 7500225.52054840978235 ], [ 526409.297543440014124, 7500216.030406280420721 ], [ 527668.650482030003332, 7500241.048918349668384 ], [ 527986.562664440018125, 7500239.548052719794214 ], [ 528679.648660099948756, 7500223.049524989910424 ], [ 528991.080585750052705, 7500183.048984399996698 ], [ 529080.291546280030161, 7500220.560018570162356 ], [ 528861.282109110034071, 7500456.376656860113144 ], [ 528593.159048130037263, 7500745.061562200076878 ], [ 529089.130638509988785, 7500749.058695370331407 ], [ 529769.568950040033087, 7500739.068745999597013 ], [ 530322.572177659953013, 7500685.071386770345271 ], [ 531009.339159070048481, 7500675.080785560421646 ], [ 531715.73976946005132, 7500766.589671320281923 ], [ 532059.217866000020877, 7500783.592576529830694 ], [ 532828.741958869970404, 7500779.589823200367391 ], [ 533000.699731510016136, 7500836.09126906003803 ], [ 533038.928390149958432, 7500854.600384590215981 ], [ 533285.191948459949344, 7500484.100489480420947 ], [ 533501.710612179944292, 7500546.609419420361519 ], [ 533864.937776679988019, 7500710.10962160024792 ], [ 534081.707948690047488, 7500817.109223029576242 ], [ 534266.389420230058022, 7500867.109677930362523 ], [ 534616.169753010035492, 7500865.118759210221469 ], [ 534972.087890470051207, 7500831.609265670180321 ], [ 535734.419606919982471, 7500662.120714230462909 ], [ 536218.050877150031738, 7500716.62982770986855 ], [ 536612.610229640034959, 7500784.619802930392325 ], [ 537039.810191430035047, 7501017.629488600417972 ], [ 537263.759554189979099, 7501296.640788069926202 ], [ 537322.000254699960351, 7501506.137971930205822 ], [ 537323.512343090027571, 7501824.63116788957268 ], [ 537330.598165779956616, 7501970.641640059649944 ], [ 537394.901242660009302, 7502116.638735800050199 ], [ 537573.567950980039313, 7502255.649229579605162 ], [ 537790.329145789961331, 7502369.149316649883986 ], [ 538115.051889610011131, 7502437.639098499901593 ], [ 539088.339263470028527, 7502508.650756360031664 ], [ 539534.279518340015784, 7502671.651546549983323 ], [ 539885.060554989962839, 7502867.149066110141575 ], [ 540331.750142619945109, 7503195.649200160056353 ], [ 540714.57853476004675, 7503454.658803319558501 ], [ 541052.439851489965804, 7503624.639814630150795 ], [ 541486.308983789989725, 7503927.648783730342984 ], [ 541996.49951150000561, 7504230.151673150248826 ], [ 542628.151267910026945, 7504653.147738579660654 ], [ 542851.599998170044273, 7504830.148377349600196 ], [ 543177.948728719959036, 7505267.651104040443897 ], [ 543486.618928679963574, 7505966.149615850299597 ], [ 543666.679994179983623, 7506391.651839040219784 ], [ 543852.741408649948426, 7506721.649244810454547 ], [ 544044.859332469990477, 7507007.147786979563534 ], [ 544320.020545160048641, 7507368.150118900462985 ], [ 544499.401140230009332, 7507634.652536380104721 ], [ 544659.952399050001986, 7507964.649859149940312 ], [ 544743.649668990052305, 7508180.64890768006444 ], [ 544986.967824600054882, 7508529.640704610385001 ], [ 545122.098981300019659, 7508859.651255340315402 ], [ 545238.039955170010217, 7509170.651160649955273 ], [ 545386.061797900008969, 7509520.139114540070295 ], [ 545584.70227057999, 7509837.140359420329332 ], [ 545834.078861130052246, 7510116.140090740285814 ], [ 546344.38002908998169, 7510444.151013869792223 ], [ 546523.250805940013379, 7510615.138416299596429 ], [ 546747.331027709995396, 7510919.130965920165181 ], [ 546773.339685610029846, 7511046.639840469695628 ], [ 546839.032225689967163, 7511472.640136569738388 ], [ 546910.207894589984789, 7511733.130136489868164 ], [ 546921.599986459943466, 7511756.871668560430408 ], [ 547025.85104430001229, 7511974.129926219582558 ], [ 547301.797638020012528, 7512494.641788500361145 ], [ 547423.940015339991078, 7512774.140642990358174 ], [ 547552.240127959987149, 7513009.140230040065944 ], [ 547744.120906300027855, 7513230.630903270095587 ], [ 548011.999417399987578, 7513394.639083719812334 ], [ 548311.548449330031872, 7513533.128911710344255 ], [ 548700.250355439959094, 7513696.629555179737508 ], [ 549381.82016482995823, 7513928.131438869982958 ], [ 549777.157928950036876, 7514142.630515470169485 ], [ 550096.13010181998834, 7514357.129423620179296 ], [ 550522.581304499995895, 7514431.12007798999548 ], [ 550872.358978120028041, 7514435.608253129757941 ], [ 551298.908410839969292, 7514528.621823900379241 ], [ 551731.074992449954152, 7514759.201526599936187 ], [ 552267.968993069953285, 7515045.631445099599659 ], [ 552472.469793559983373, 7515248.128782370127738 ], [ 552594.358582830056548, 7515463.632309479638934 ], [ 552735.878587619983591, 7515800.120999690145254 ], [ 552934.171248369966634, 7516053.632071820087731 ], [ 553119.358725509955548, 7516212.130172469653189 ], [ 553396.94924536999315, 7516396.131426160223782 ], [ 553490.751053510000929, 7516646.130151580087841 ], [ 553521.998791010002606, 7517146.120753969997168 ], [ 553365.709329799981788, 7517646.139826419763267 ], [ 552951.648096360033378, 7518364.148328660055995 ], [ 552736.711374880047515, 7518632.649459320120513 ], [ 552508.919727199943736, 7518875.661261970177293 ], [ 551977.181308640050702, 7519387.66122165042907 ], [ 551698.502042190055363, 7519618.671442500315607 ], [ 551445.290414919960313, 7519868.169856520369649 ], [ 551242.628899940056726, 7520034.669556410051882 ], [ 551014.678965050028637, 7520239.669949440285563 ], [ 550653.059888210031204, 7520426.181568100117147 ], [ 549808.758831460028887, 7520736.178342989645898 ], [ 549472.190413629985414, 7520840.188566190190613 ], [ 549180.109107009950094, 7520943.19092417974025 ], [ 548900.950248799985275, 7521065.68975913990289 ], [ 548761.428701419965364, 7521155.699331229552627 ], [ 548640.953464290942065, 7521273.574077860452235 ], [ 553502.942819576244801, 7521273.574077860452235 ], [ 553276.988916730042547, 7521233.240604850463569 ], [ 552958.848691480001435, 7521209.229686919599771 ], [ 552558.240206790040247, 7521211.220943139865994 ], [ 552265.698866680031642, 7521193.72009817045182 ], [ 551941.050715549965389, 7521138.201802129857242 ], [ 551660.441966620041057, 7520968.189111479558051 ], [ 551564.362152160028927, 7520822.190301760099828 ], [ 551543.308704870054498, 7520421.180343049578369 ], [ 551675.789430149947293, 7520185.169340649619699 ], [ 551986.31099800998345, 7519954.178711500018835 ], [ 552418.043980209971778, 7519812.178346159867942 ], [ 552780.148187250015326, 7519746.191867049783468 ], [ 553218.462379090022296, 7519635.689800689928234 ], [ 553472.680246960022487, 7519589.680336230434477 ], [ 553726.599248389946297, 7519512.192376250401139 ], [ 553859.851088849944063, 7519447.699348329566419 ], [ 553929.609886429971084, 7519402.689942100085318 ], [ 553954.89849138003774, 7519377.190948570147157 ], [ 553973.858579299994744, 7519345.189898329786956 ], [ 554115.767966849962249, 7519021.17945207003504 ], [ 554178.288729339954443, 7518615.172259110026062 ], [ 554147.039345999946818, 7518208.660051150247455 ], [ 554084.540130940033123, 7517646.14075743034482 ], [ 554146.8203180199489, 7516963.6315305698663 ], [ 554361.582325270050205, 7516644.639263659715652 ], [ 554424.389186830027029, 7516485.129010479897261 ], [ 554430.201462110038847, 7516376.629046970047057 ], [ 554416.439543080050498, 7516160.63928656000644 ], [ 554351.370617939974181, 7515849.13784018997103 ], [ 554216.440275560016744, 7515556.630309550091624 ], [ 553941.429692870005965, 7515227.128613879904151 ], [ 553666.789511539973319, 7514980.630683939903975 ], [ 553373.090318550006486, 7514746.630016029812396 ], [ 553086.078856399981305, 7514570.130195720121264 ], [ 552678.158572930027731, 7514375.1200912296772 ], [ 551850.951339580002241, 7514271.12161788996309 ], [ 550876.81927535997238, 7514047.619703330099583 ], [ 550405.600844520027749, 7513903.620661280117929 ], [ 549959.821321579976939, 7513778.61910889018327 ], [ 549189.058551419992, 7513509.130647470243275 ], [ 548749.55001840996556, 7513371.639964249916375 ], [ 548417.859357360051945, 7513163.629739440046251 ], [ 547753.10020510002505, 7512460.640449609607458 ], [ 547681.898447870044038, 7512200.139545659534633 ], [ 547731.88949681003578, 7512021.631898799911141 ], [ 547661.070914759999141, 7511837.131026280112565 ], [ 547554.751736809965223, 7511754.929449140094221 ], [ 547514.270673359977081, 7511723.630796080455184 ], [ 547367.169919079984538, 7511546.138635899871588 ], [ 547302.46016450994648, 7511311.131156819872558 ], [ 547275.26059381000232, 7510942.138586919754744 ], [ 547274.148572140024044, 7510712.640855640172958 ], [ 547768.500521330046467, 7510360.139111110009253 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.14339", "objectid": "14340", "lithstrtno": "3368", "code": "A-FOj-xs-b", "unitname": "Jeerinah Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Siliciclastic sedimentary rocks mafic volcanic rocks and minor felsic volcanic rocks; local carbonate rocks chert and dolerite sills", "parentcode": "A-FOS5-xs-b", "parentname": "Fortescue Group sequence 5", "rocktype1": "sedimentary siliciclastic", "lithname1": null, "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "igneous mafic volcanic", "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": "Fortescue Group sequence 5", "formation": "Jeerinah Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": "Northeast Pilbara Sub-basin; Northwest Pilbara Sub-basin; South Pilbara Sub-basin", "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2713", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": "5", "max_age_da": "Inferred", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 14.7127427709, "shape_area": 0.0875551386441 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 519646.421773399983067, 7512962.969492110423744 ], [ 520338.628719249914866, 7512761.992342449724674 ], [ 520370.700128689932171, 7512818.980279499664903 ], [ 520389.861160249914974, 7512831.980105480179191 ], [ 520453.800194829993416, 7512901.488577979616821 ], [ 520645.308756140002515, 7513059.488957329653203 ], [ 520938.88133815000765, 7513267.979400220327079 ], [ 521206.44805255002575, 7513361.990735240280628 ], [ 522004.111833690025378, 7512606.520235720090568 ], [ 522208.370498009957373, 7512764.519335090182722 ], [ 522380.780247449991293, 7512916.521716950461268 ], [ 522572.099404939974193, 7513030.021872960031033 ], [ 522738.429538290016353, 7513220.030236219987273 ], [ 522886.021028539922554, 7513505.530193040147424 ], [ 523066.150845020019915, 7513931.010712930001318 ], [ 523067.817986970010679, 7514281.009863840416074 ], [ 523056.320965659979265, 7514536.009334879927337 ], [ 523089.739643169974443, 7514873.007855829782784 ], [ 523180.560405679920223, 7515248.00934008974582 ], [ 523373.289957669971045, 7515654.508595500141382 ], [ 523476.730214309936855, 7515997.508203850127757 ], [ 523433.95207786001265, 7516360.500125460326672 ], [ 523271.098302030004561, 7516882.98878544010222 ], [ 523509.899753010016866, 7517613.990790239535272 ], [ 523733.722453519934788, 7517860.998836340382695 ], [ 523912.941209269978572, 7518108.009794030338526 ], [ 524028.608133539964911, 7518355.517049229703844 ], [ 524119.032020880025811, 7518641.521978080272675 ], [ 524157.999326489982195, 7518807.028272549621761 ], [ 524158.951758319977671, 7519010.529038690030575 ], [ 524237.668311430083122, 7519506.55080983042717 ], [ 524239.229006730020046, 7519837.549687219783664 ], [ 524202.369046679988969, 7520098.558881849981844 ], [ 524152.720744809950702, 7520353.571849780157208 ], [ 524134.350605180021375, 7520500.060532470233738 ], [ 524143.549343852791935, 7520656.412410277873278 ], [ 524243.453589889977593, 7520709.571230069734156 ], [ 524478.680098630022258, 7520689.07113432046026 ], [ 524637.49894109996967, 7520656.588923869654536 ], [ 524796.9697620900115, 7520757.600493759848177 ], [ 524906.299241830012761, 7521005.109648800455034 ], [ 524958.171890130033717, 7521215.120178709737957 ], [ 524942.084509948384948, 7521273.574077860452235 ], [ 526436.227119922172278, 7521273.574077860452235 ], [ 526401.691515060025267, 7521181.680516350083053 ], [ 526312.182531099999323, 7521074.180512679740787 ], [ 526178.051961730001494, 7520960.180783839896321 ], [ 525974.109962780028582, 7520865.669559930451214 ], [ 525489.819585519959219, 7520677.630986260250211 ], [ 525215.56044709996786, 7520507.118261069990695 ], [ 525099.700741240056232, 7520227.598221190273762 ], [ 525105.160121239954606, 7520030.097857830114663 ], [ 525129.969782790052705, 7519909.090361219830811 ], [ 525199.187788509996608, 7519762.588524759747088 ], [ 525351.481491480022669, 7519685.100868449546397 ], [ 525808.730688430019654, 7519542.599877079948783 ], [ 525935.481611039955169, 7519459.120913409627974 ], [ 526017.568704079953022, 7519325.110889060422778 ], [ 526022.688289919984527, 7519064.102008130401373 ], [ 525945.672333069960587, 7518931.100659869611263 ], [ 525722.161406980012543, 7518741.078860250301659 ], [ 525504.700332000036724, 7518468.57182256039232 ], [ 525227.687564849969931, 7517751.051117460243404 ], [ 525085.749328059959225, 7517319.029316320084035 ], [ 524994.87055044004228, 7516944.028645990416408 ], [ 524916.629481710027903, 7516549.539432030171156 ], [ 524794.56922211998608, 7516283.027406759560108 ], [ 524698.002097900025547, 7516048.040206580422819 ], [ 524696.669458879972808, 7515768.029474440030754 ], [ 524765.351799699943513, 7515500.540381940081716 ], [ 524713.438822360010818, 7515278.041626789607108 ], [ 524426.06841973005794, 7515044.040656699799001 ], [ 524208.542307230061851, 7514771.52988651022315 ], [ 524034.479650379973464, 7514276.041863550432026 ], [ 523930.951113260001875, 7513907.540365519933403 ], [ 523666.980231429974083, 7513234.038817330263555 ], [ 523397.980987849994563, 7512841.028172080405056 ], [ 523116.790019250009209, 7512556.040891540236771 ], [ 522695.671639500011224, 7512272.040571300312877 ], [ 522555.290484579978511, 7512171.029042379930615 ], [ 522459.529177899996284, 7512088.520967369899154 ], [ 522108.960515180020593, 7511925.032064230181277 ], [ 521962.327799500082619, 7511849.52925833966583 ], [ 521898.73540557816159, 7511830.16974357701838 ], [ 521299.68208722001873, 7511585.508881360292435 ], [ 520993.898059519939125, 7511473.001950009725988 ], [ 520700.899943009950221, 7511385.498376620002091 ], [ 519955.938934519945178, 7511198.499291979707778 ], [ 519612.440949510026257, 7511174.980778340250254 ], [ 519199.428999839932658, 7511037.968745009973645 ], [ 518458.888367109990213, 7510995.468531150370836 ], [ 518141.521315880003385, 7510910.961119780316949 ], [ 517866.450773890013807, 7510783.959730369970202 ], [ 517549.060095640015788, 7510678.458123919554055 ], [ 517020.139190430054441, 7510529.950958830304444 ], [ 516492.951762130018324, 7510465.937333139590919 ], [ 516174.411889459996019, 7510353.441098780371249 ], [ 515687.31005864002509, 7510208.102885807864368 ], [ 515687.31005864002509, 7510535.495148473419249 ], [ 516099.911749830003828, 7510729.441395100206137 ], [ 516431.110172140004579, 7510841.937734680250287 ], [ 517163.401391200022772, 7511035.449545609764755 ], [ 517500.928361040016171, 7511135.449482630006969 ], [ 517851.030990800005384, 7511209.959799789823592 ], [ 518143.769826399919111, 7511252.968656219542027 ], [ 519041.831551529990975, 7511534.482516329735518 ], [ 519608.750958350021392, 7511734.989269830286503 ], [ 519894.13068081001984, 7511815.505585880018771 ], [ 519984.45962465001503, 7511840.989471119828522 ], [ 520258.068798759952188, 7511871.500498970039189 ], [ 520563.539981840061955, 7511920.501662779599428 ], [ 521156.288484309916385, 7512191.000949360430241 ], [ 521551.367963330005296, 7512361.009483519941568 ], [ 521710.489959909988102, 7512392.008338649757206 ], [ 521012.040045049972832, 7512605.49964378029108 ], [ 520693.509920759999659, 7512499.000128109939396 ], [ 520438.649691370024811, 7512399.000608219765127 ], [ 520177.610525219934061, 7512329.978099579922855 ], [ 519490.44943603000138, 7512263.979586419649422 ], [ 518840.980136949976441, 7512101.969939400441945 ], [ 518452.36964871006785, 7511951.479337790049613 ], [ 518131.416117589978967, 7511817.681890560314059 ], [ 518044.527874130057171, 7511781.458831120282412 ], [ 517649.621018150006421, 7511643.96055980026722 ], [ 517223.009906649996992, 7511531.451243470422924 ], [ 516484.161324460001197, 7511287.432342950254679 ], [ 516172.129114950075746, 7511206.442232700064778 ], [ 515687.31005864002509, 7511091.777985905297101 ], [ 515687.31005864002509, 7511543.949450626038015 ], [ 515741.351565839955583, 7511558.431179 ], [ 516091.670631099957973, 7511671.432536300271749 ], [ 516460.880282170022838, 7511739.42922518029809 ], [ 516836.319113209960051, 7511794.450638740323484 ], [ 516947.638945150014479, 7511819.030170059762895 ], [ 517173.731253359932452, 7511868.948861289769411 ], [ 517562.11861298995791, 7511968.948265319690108 ], [ 517989.227753239974845, 7512182.947854270227253 ], [ 518717.717256509931758, 7512586.076355170458555 ], [ 519003.070431359985378, 7512743.968761979602277 ], [ 519366.229568860027939, 7512888.468247819691896 ], [ 519646.421773399983067, 7512962.969492110423744 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.14339", "objectid": "14340", "lithstrtno": "3368", "code": "A-FOj-xs-b", "unitname": "Jeerinah Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Siliciclastic sedimentary rocks mafic volcanic rocks and minor felsic volcanic rocks; local carbonate rocks chert and dolerite sills", "parentcode": "A-FOS5-xs-b", "parentname": "Fortescue Group sequence 5", "rocktype1": "sedimentary siliciclastic", "lithname1": null, "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "igneous mafic volcanic", "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": "Fortescue Group sequence 5", "formation": "Jeerinah Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": "Northeast Pilbara Sub-basin; Northwest Pilbara Sub-basin; South Pilbara Sub-basin", "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2713", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": "5", "max_age_da": "Inferred", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 14.7127427709, "shape_area": 0.0875551386441 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 519646.421773399983067, 7512962.969492110423744 ], [ 518845.849511170003098, 7513113.960254170000553 ], [ 518852.321420539985411, 7513132.95880111027509 ], [ 518871.588630190002732, 7513177.461551469750702 ], [ 518910.62009527994087, 7513355.46910130046308 ], [ 518968.77945902000647, 7513552.458231610246003 ], [ 519065.141182710009161, 7513761.960031550377607 ], [ 519123.1404266700265, 7513920.458620489574969 ], [ 519174.829437979962677, 7514092.451116800308228 ], [ 519198.755447089963127, 7514197.602240430191159 ], [ 519103.875308649963699, 7514306.953248229809105 ], [ 519018.356625669985078, 7514432.16913719009608 ], [ 519177.628758139966521, 7514563.666787220165133 ], [ 519238.956251360010356, 7514668.946241379715502 ], [ 519282.04083986999467, 7514866.434735249727964 ], [ 519392.477506569994148, 7515090.1774812201038 ], [ 519418.43464920000406, 7515485.763669109903276 ], [ 519041.141933470033109, 7515922.438162029720843 ], [ 519112.352786110073794, 7516209.932219609618187 ], [ 519100.495351070072502, 7516519.429266070015728 ], [ 519027.343064780056011, 7516756.569857959635556 ], [ 518954.139981639978942, 7516954.201637290418148 ], [ 518893.289090209989808, 7517244.004207690246403 ], [ 518936.513313480012584, 7517553.433111510239542 ], [ 518985.690145989996381, 7517724.575489370152354 ], [ 519041.232609779981431, 7518093.251300070434809 ], [ 519047.605427510046866, 7518297.369738539680839 ], [ 519182.53915581991896, 7518514.49831182975322 ], [ 519207.277663080021739, 7518718.593676960095763 ], [ 519366.991627419949509, 7519166.154731409624219 ], [ 519514.363417299988214, 7519528.12835447024554 ], [ 519545.337666210078169, 7519817.816332059912384 ], [ 519320.0120131499134, 7520759.712071959860623 ], [ 519259.250695589988027, 7521128.530878730118275 ], [ 519198.64405673003057, 7521273.574077860452235 ], [ 519981.788932837545872, 7521273.574077860452235 ], [ 520014.649357220041566, 7521156.874627060256898 ], [ 520081.754149810003582, 7520851.868108260445297 ], [ 520216.449312160024419, 7520619.372835559770465 ], [ 520229.626076239976101, 7520372.515831279568374 ], [ 520215.746720750001259, 7520082.134254289790988 ], [ 520471.88589352008421, 7519820.437087640166283 ], [ 520872.96024511998985, 7519429.411170129664242 ], [ 520896.319889380014502, 7519002.919434909708798 ], [ 520859.66047996992711, 7518796.493398250080645 ], [ 520510.397251019952819, 7518324.824829200282693 ], [ 520361.539808640023693, 7518034.621373900212348 ], [ 520185.237884390051477, 7517395.971388869918883 ], [ 520117.299361719982699, 7517047.57921488955617 ], [ 520008.762039760069456, 7516612.118976039811969 ], [ 519900.343085089989472, 7516263.777936239726841 ], [ 519953.787620300019626, 7515724.758886470459402 ], [ 519925.960200970002916, 7515564.941732300445437 ], [ 519917.670074609981384, 7515169.947305140085518 ], [ 519922.708887970016804, 7514883.940687100403011 ], [ 519928.680768750084098, 7514807.459462120197713 ], [ 520542.462652940012049, 7514160.968576629646122 ], [ 520338.34111842000857, 7514028.471192579716444 ], [ 520280.829740790068172, 7513977.971144840121269 ], [ 520165.887963470013347, 7513870.459660449996591 ], [ 520057.24140861997148, 7513756.472654789686203 ], [ 519916.470420499972533, 7513578.972261999733746 ], [ 519820.111488119990099, 7513375.970130239613354 ], [ 519742.828652449999936, 7513178.980483889579773 ], [ 519646.421773399983067, 7512962.969492110423744 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.14339", "objectid": "14340", "lithstrtno": "3368", "code": "A-FOj-xs-b", "unitname": "Jeerinah Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Siliciclastic sedimentary rocks mafic volcanic rocks and minor felsic volcanic rocks; local carbonate rocks chert and dolerite sills", "parentcode": "A-FOS5-xs-b", "parentname": "Fortescue Group sequence 5", "rocktype1": "sedimentary siliciclastic", "lithname1": null, "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "igneous mafic volcanic", "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": "Fortescue Group sequence 5", "formation": "Jeerinah Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": "Northeast Pilbara Sub-basin; Northwest Pilbara Sub-basin; South Pilbara Sub-basin", "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2713", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": "5", "max_age_da": "Inferred", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 14.7127427709, "shape_area": 0.0875551386441 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 521206.44805255002575, 7513361.990735240280628 ], [ 520542.462652940012049, 7514160.968576629646122 ], [ 520663.783022239978891, 7514268.97126024030149 ], [ 520906.899310519918799, 7514566.459113360382617 ], [ 521098.600245599984191, 7514756.481158919632435 ], [ 521233.060718770022504, 7514933.968699309974909 ], [ 521335.779068149975501, 7515136.958421420305967 ], [ 521477.821174010052346, 7515594.469858160242438 ], [ 521581.801603920001071, 7516058.468591059558094 ], [ 521666.768648989964277, 7516535.460828520357609 ], [ 521738.93966532999184, 7516999.958360100165009 ], [ 521779.15958930994384, 7517438.447461250238121 ], [ 521800.200406750023831, 7517832.950569169595838 ], [ 521884.939737839973532, 7518265.451066539622843 ], [ 522200.289610730018467, 7519040.458986540324986 ], [ 522226.659193270024844, 7519237.460663010366261 ], [ 522282.15959312999621, 7520191.960507390089333 ], [ 522348.220414990035351, 7520706.969655729830265 ], [ 522409.242599931487348, 7521273.574077860452235 ], [ 523007.305717104056384, 7521273.574077860452235 ], [ 523073.630857660027687, 7520791.999725989997387 ], [ 523160.551499070017599, 7520352.510412150062621 ], [ 523304.758738029981032, 7519919.010429590009153 ], [ 523429.659503509989008, 7519440.998553990386426 ], [ 523472.781448009947781, 7519148.019750829786062 ], [ 523496.349508450017311, 7518765.999401739798486 ], [ 523405.710937699943315, 7518429.000097339972854 ], [ 523232.190064209979028, 7518054.490173670463264 ], [ 522988.712196270003915, 7517680.467206840403378 ], [ 522796.289836740063038, 7517337.469327299855649 ], [ 522609.569676790037192, 7516861.48109246045351 ], [ 522466.82911132008303, 7516263.981953090056777 ], [ 522343.17095966998022, 7515685.47884355019778 ], [ 522117.140884040039964, 7514967.491810309700668 ], [ 521885.749655669962522, 7514452.988889950327575 ], [ 521635.528618260053918, 7513989.981383229605854 ], [ 521379.008907879993785, 7513545.499772519804537 ], [ 521206.44805255002575, 7513361.990735240280628 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.14339", "objectid": "14340", "lithstrtno": "3368", "code": "A-FOj-xs-b", "unitname": "Jeerinah Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Siliciclastic sedimentary rocks mafic volcanic rocks and minor felsic volcanic rocks; local carbonate rocks chert and dolerite sills", "parentcode": "A-FOS5-xs-b", "parentname": "Fortescue Group sequence 5", "rocktype1": "sedimentary siliciclastic", "lithname1": null, "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "igneous mafic volcanic", "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": "Fortescue Group sequence 5", "formation": "Jeerinah Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": "Northeast Pilbara Sub-basin; Northwest Pilbara Sub-basin; South Pilbara Sub-basin", "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2713", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": "5", "max_age_da": "Inferred", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 14.7127427709, "shape_area": 0.0875551386441 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 532504.71503138798289, 7521273.574077860452235 ], [ 532532.178689119988121, 7521142.239576890133321 ], [ 532499.439517520018853, 7520951.25150972045958 ], [ 532308.147656969958916, 7520831.239409450441599 ], [ 532015.559444969985634, 7520826.7419608598575 ], [ 531685.429601419949904, 7520949.248811120167375 ], [ 531475.820392590016127, 7520995.249874849803746 ], [ 531297.701123569975607, 7520983.249538940377533 ], [ 530992.855844534235075, 7521273.574077860452235 ], [ 532504.71503138798289, 7521273.574077860452235 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.14339", "objectid": "14340", "lithstrtno": "3368", "code": "A-FOj-xs-b", "unitname": "Jeerinah Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Siliciclastic sedimentary rocks mafic volcanic rocks and minor felsic volcanic rocks; local carbonate rocks chert and dolerite sills", "parentcode": "A-FOS5-xs-b", "parentname": "Fortescue Group sequence 5", "rocktype1": "sedimentary siliciclastic", "lithname1": null, "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "igneous mafic volcanic", "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": "Fortescue Group sequence 5", "formation": "Jeerinah Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": "Northeast Pilbara Sub-basin; Northwest Pilbara Sub-basin; South Pilbara Sub-basin", "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2713", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": "5", "max_age_da": "Inferred", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 14.7127427709, "shape_area": 0.0875551386441 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 530872.621390014886856, 7521273.574077860452235 ], [ 530605.669946389971301, 7521228.739805289544165 ], [ 530198.73958735994529, 7521243.73099188040942 ], [ 530080.028660500538535, 7521273.574077860452235 ], [ 530872.621390014886856, 7521273.574077860452235 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.14310", "objectid": "14311", "lithstrtno": "4143", "code": "A-FOu-bbo", "unitname": "Bunjinah Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Pillowed and massive basaltic flows; basaltic breccia and basaltic volcanic sandstone; minor chert; amygdaloidal basalt flows occur in upper parts of formation; metamorphosed", "parentcode": "A-FOS4-xbs-bbo", "parentname": "Fortescue Group sequence 4", "rocktype1": "igneous mafic volcanic", "lithname1": "basalt", "qualifier1": "pillowed", "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": "Fortescue Group sequence 4", "formation": "Bunjinah Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "Large igneous provinces and dyke swarms; West Australian Craton", "ssuite_tec": "Fortescue Large Igneous Province", "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": "South Pilbara Sub-basin", "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2718", "maxuncerty": null, "min_age_ma": "2715", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 11.920567697099999, "shape_area": 0.257719224508 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 554484.204992703045718, 7473446.765934069640934 ], [ 554483.678844169946387, 7474369.331994599662721 ], [ 554511.229637669981457, 7474821.329697109758854 ], [ 554513.608554529957473, 7475317.821682860143483 ], [ 554502.4104463000549, 7475635.809987120330334 ], [ 554478.16147654002998, 7475877.810377850197256 ], [ 554466.91096401005052, 7476149.81045897025615 ], [ 554377.15869415004272, 7476463.80083199031651 ], [ 554362.040577049949206, 7476864.800003419630229 ], [ 554388.279434529948048, 7477030.290577559731901 ], [ 554389.221459290012717, 7477240.299697100184858 ], [ 554321.64940796000883, 7477737.279472540132701 ], [ 554215.787629480008036, 7478202.291607280261815 ], [ 554020.909282319946215, 7478674.268816069699824 ], [ 553888.35882392001804, 7478878.770382479764521 ], [ 553837.621612629969604, 7479125.2787343300879 ], [ 553563.738782610045746, 7479648.28148182015866 ], [ 552941.338768179994076, 7480544.768690920434892 ], [ 552418.542449099943042, 7481117.270238320343196 ], [ 552094.901182470028289, 7481490.781041470356286 ], [ 551497.371107719955035, 7482212.771112849935889 ], [ 551329.225711080012843, 7482327.528326629661024 ], [ 551081.9873308299575, 7482496.259008839726448 ], [ 550923.330109950038604, 7482560.749276779592037 ], [ 550726.509200779953972, 7482625.749823920428753 ], [ 550352.179148370050825, 7482812.248023429885507 ], [ 549482.798652769997716, 7483198.758917829953134 ], [ 549108.4292188299587, 7483372.749284399673343 ], [ 548918.140759330010042, 7483469.238691999576986 ], [ 547598.249432689975947, 7484074.738576619885862 ], [ 546830.221480080042966, 7484390.747971129603684 ], [ 546309.541899599949829, 7484552.729641349986196 ], [ 545801.239993970026262, 7484644.729194659739733 ], [ 545305.831054919981398, 7484774.719212420284748 ], [ 544753.541485049994662, 7484981.200015850365162 ], [ 544290.291403339942917, 7485193.699580590240657 ], [ 543852.650631809956394, 7485444.190270540304482 ], [ 543351.099201080040075, 7485599.690714879892766 ], [ 542048.211118230014108, 7485772.170437729917467 ], [ 541381.079201090033166, 7485903.160007249563932 ], [ 540764.831503740046173, 7486034.150001510046422 ], [ 539582.951551569974981, 7486237.639846519567072 ], [ 538973.360067910049111, 7486438.122480650432408 ], [ 538319.298372669960372, 7486632.607603570446372 ], [ 537969.910448370035738, 7486717.620605089701712 ], [ 537391.730507079977542, 7486822.609182910062373 ], [ 536845.479823069996201, 7486959.109396929852664 ], [ 536273.969601340009831, 7487140.099127089604735 ], [ 535226.339154119952582, 7487489.58226753026247 ], [ 534763.028078450006433, 7487683.079398900270462 ], [ 534166.782311249990016, 7487998.079997730441391 ], [ 533684.789544260012917, 7488281.061272409744561 ], [ 533202.932457349961624, 7488582.557957610115409 ], [ 532651.470854870043695, 7488974.049725639633834 ], [ 532062.401277250028215, 7489461.059403309598565 ], [ 531498.791368160047568, 7489954.050970080308616 ], [ 530511.511262089945376, 7490958.541540630161762 ], [ 530163.091089620022103, 7491234.030547330155969 ], [ 529719.632291379966773, 7491605.528420919552445 ], [ 529212.330741600017063, 7491907.539981139823794 ], [ 528666.197390179964714, 7492063.530787769705057 ], [ 528182.869514529942535, 7492066.029675690457225 ], [ 528977.92851385998074, 7490769.530310049653053 ], [ 529932.98886083997786, 7489804.025997609831393 ], [ 530193.100235059973784, 7489541.038226139731705 ], [ 529824.509794170036912, 7489587.520447020418942 ], [ 529475.157951329951175, 7489672.028327610343695 ], [ 529189.580337209976278, 7489794.531878739595413 ], [ 528980.210056909942068, 7489904.021742659620941 ], [ 528745.280351449968293, 7489988.010815599933267 ], [ 528554.639594899956137, 7490014.519405740313232 ], [ 528010.690560759976506, 7490033.00870062969625 ], [ 527680.867203320027329, 7490012.509104180149734 ], [ 527174.819998839986511, 7490782.511625460349023 ], [ 526718.599498050054535, 7491736.499324150383472 ], [ 526392.791392470011488, 7491426.508381759747863 ], [ 526080.409787329961546, 7491262.502284400165081 ], [ 525633.879788300022483, 7490965.99874919001013 ], [ 525263.63108038995415, 7490681.479916979558766 ], [ 524580.929671640042216, 7490207.990078659728169 ], [ 524274.671697549987584, 7490005.979487449862063 ], [ 523860.21075316000497, 7489772.479153100401163 ], [ 523458.788942609971855, 7489615.470358500257134 ], [ 523172.339214570005424, 7489559.970132290385664 ], [ 522898.739321379980538, 7489516.95748660992831 ], [ 522249.710844649991486, 7489450.459670879878104 ], [ 521931.460056159994565, 7489388.450269759632647 ], [ 521460.109446209971793, 7489225.45048428978771 ], [ 521224.28995990002295, 7489118.450215740129352 ], [ 520608.107771619979758, 7489268.439483510330319 ], [ 520331.968202390009537, 7488696.939133930020034 ], [ 520177.991389880015049, 7488423.928699710406363 ], [ 519978.909117389994208, 7488011.42803343012929 ], [ 519299.649919120012783, 7486933.410632349550724 ], [ 519197.270578199997544, 7486806.422487869858742 ], [ 519045.77152519999072, 7487029.90596828982234 ], [ 518705.950897419999819, 7486458.909381340257823 ], [ 518501.699876250000671, 7486294.90911213029176 ], [ 517979.299585099972319, 7486112.899997440166771 ], [ 517794.508853740000632, 7486024.900842210277915 ], [ 517660.507719189976342, 7485929.891643890179694 ], [ 517634.900084780005272, 7485898.400607910007238 ], [ 517463.637543010001536, 7486001.390471969731152 ], [ 516927.950278770003933, 7485679.378276979550719 ], [ 516666.421290200029034, 7485508.878112699836493 ], [ 516449.418488099996466, 7485350.880605299957097 ], [ 516353.519451149972156, 7485236.871889360249043 ], [ 516301.869407019985374, 7485084.369545670226216 ], [ 516320.510699520003982, 7484988.872019359841943 ], [ 516326.429848819971085, 7484893.381361030042171 ], [ 516217.310765629983507, 7484683.870723370462656 ], [ 516102.459870750026312, 7484601.869119809940457 ], [ 515834.798774280003272, 7484482.362057009711862 ], [ 515687.31005864002509, 7484424.49293443467468 ], [ 515687.31005864002509, 7494569.547191276215017 ], [ 515749.4295332399779, 7494583.898371280170977 ], [ 515921.677714249992277, 7494697.41118314024061 ], [ 516100.681956680025905, 7494893.908751860260963 ], [ 516401.340706480026711, 7495261.409630320034921 ], [ 516663.828672209987417, 7495628.911218900233507 ], [ 516855.688426990003791, 7495863.411676499992609 ], [ 517026.319249610009138, 7495626.907642669975758 ], [ 517393.629248439974617, 7495306.919828530400991 ], [ 517804.770179970015306, 7494846.419316640123725 ], [ 518184.840464940003585, 7494525.920076349750161 ], [ 518363.05026823002845, 7494563.417820639908314 ], [ 518471.900537130015437, 7494715.428815290331841 ], [ 518543.060454390011728, 7494963.42907639965415 ], [ 518588.76013419998344, 7495217.430626450106502 ], [ 518705.069473669980653, 7495598.940543320029974 ], [ 518769.290147739986423, 7495725.928489049896598 ], [ 518383.931465780013241, 7496275.420112820342183 ], [ 517992.779921379988082, 7496926.429134880192578 ], [ 517847.879607070004568, 7497213.920483809895813 ], [ 518014.126850700005889, 7497123.757406969554722 ], [ 519021.359903179982211, 7496577.43004279024899 ], [ 519433.317879359994549, 7496282.440096310339868 ], [ 519762.199077040073462, 7495904.939755939878523 ], [ 519908.908905629999936, 7495993.45121334027499 ], [ 520062.099349690019153, 7496119.939772210083902 ], [ 520209.108364530024119, 7496271.949922599829733 ], [ 520002.388502939953469, 7496934.941946909762919 ], [ 519782.088446919980925, 7497413.448312009684741 ], [ 520246.918788719980512, 7497531.941943439655006 ], [ 520979.320096470008139, 7497743.970866629853845 ], [ 521208.34053024998866, 7497768.461113699711859 ], [ 521526.329923179990146, 7497779.458482449874282 ], [ 521882.681205840024631, 7497821.95909606013447 ], [ 522615.201595210004598, 7498072.470330759882927 ], [ 522895.790943439991679, 7498236.478123749606311 ], [ 523067.899913350003771, 7498311.989780469797552 ], [ 523169.751951899961568, 7498336.99168633017689 ], [ 523430.941085200000089, 7498430.979713370092213 ], [ 523291.23883935000049, 7498627.490776370279491 ], [ 523609.870466449996457, 7498706.489138640463352 ], [ 524080.23038684000494, 7498843.010146860033274 ], [ 524869.238765610032715, 7498918.510846289806068 ], [ 525203.037625279976055, 7498994.508480500429869 ], [ 525476.200942059978843, 7499040.010854230262339 ], [ 525809.999477840028703, 7499116.019442549906671 ], [ 526705.180449269944802, 7499192.0412488700822 ], [ 527312.150629559997469, 7499283.029891399666667 ], [ 527979.749291989952326, 7499328.541776300407946 ], [ 528920.518834950053133, 7499359.061077320016921 ], [ 529648.829291590023786, 7499434.557870909571648 ], [ 529755.099128170055337, 7499495.580794850364327 ], [ 529891.582825729972683, 7499586.560860619880259 ], [ 530073.730894480017014, 7499647.070125780068338 ], [ 530210.299777820007876, 7499647.070799119770527 ], [ 530361.971643759985454, 7499601.580113629810512 ], [ 530650.280006880057044, 7499495.580507 ], [ 530968.912698370055296, 7499419.569814129732549 ], [ 531257.250016, 7499404.57940736040473 ], [ 531560.670086210011505, 7499404.592412210069597 ], [ 532046.250118199968711, 7499359.088792430236936 ], [ 532789.751342240022495, 7499313.0907301902771 ], [ 533411.811376899946481, 7499131.089975969865918 ], [ 533821.509492740035057, 7499055.600588059984148 ], [ 534340.198053610045463, 7498999.598917200230062 ], [ 534210.08037375996355, 7499182.60107615031302 ], [ 534772.740833109943196, 7499031.601619520224631 ], [ 535319.490297780022956, 7498996.622168369591236 ], [ 535866.539422170026228, 7499031.610276879742742 ], [ 536356.470196150010452, 7499080.119504460133612 ], [ 536808.489000750007108, 7499179.611402070149779 ], [ 537565.798215589951724, 7499296.129047449678183 ], [ 537903.119748480035923, 7499358.130287540145218 ], [ 538240.74927738995757, 7499470.6311592804268 ], [ 538476.510809400002472, 7499571.631227860227227 ], [ 538782.997857899987139, 7499830.628830580040812 ], [ 539128.007963520009071, 7500159.64022110030055 ], [ 539472.379663869971409, 7500361.638875110074878 ], [ 539886.788453469984233, 7500575.638558169826865 ], [ 540434.96862149995286, 7500840.140409230254591 ], [ 540868.300419189967215, 7501022.139786539599299 ], [ 541378.088292040047236, 7501255.148356759920716 ], [ 541869.510881360038184, 7501596.148375390097499 ], [ 543024.980478130048141, 7502538.151226189918816 ], [ 543357.140349189983681, 7502835.651261850260198 ], [ 543753.371735660010017, 7503247.158579030074179 ], [ 544123.749267379986122, 7503569.650559930130839 ], [ 544501.330129939946346, 7504057.659381669946015 ], [ 544725.589950209949166, 7504406.66118496004492 ], [ 544943.521832979982719, 7504761.659700149670243 ], [ 545302.220849859993905, 7505307.161514719948173 ], [ 545590.600436890032142, 7505770.149005670100451 ], [ 545783.23040363995824, 7506157.6511867698282 ], [ 545931.308838529977947, 7506525.652599480003119 ], [ 546098.209188740001991, 7506843.148602940142155 ], [ 546347.061501309974119, 7507032.637269330210984 ], [ 546506.497807570034638, 7507121.148085170425475 ], [ 546603.180793819949031, 7507387.650260009802878 ], [ 546630.139276860048994, 7507705.651409690268338 ], [ 546760.171894729952328, 7508297.151622120290995 ], [ 546793.049552879994735, 7508519.641761479899287 ], [ 546813.419814339955337, 7508786.638606240041554 ], [ 546815.548757059965283, 7509245.150106180459261 ], [ 546931.679415010032244, 7509581.640348309651017 ], [ 547123.421548460028134, 7509784.130571500398219 ], [ 547270.312866059946828, 7509910.650194940157235 ], [ 547468.009936959948391, 7510024.139007830061018 ], [ 547704.259539189981297, 7510226.642881070263684 ], [ 547742.74022460996639, 7510290.129271860234439 ], [ 547768.500521330046467, 7510360.139111110009253 ], [ 548034.69859790999908, 7510174.130197280086577 ], [ 548214.591759399976581, 7510548.640630640089512 ], [ 548272.140547640039586, 7510624.629289399832487 ], [ 548241.141583189950325, 7510796.629177389666438 ], [ 548292.197725779959001, 7510834.630641140043736 ], [ 548413.86996265000198, 7510999.63763992022723 ], [ 548689.44884283002466, 7511449.628524029627442 ], [ 548914.382106699980795, 7511750.67075092997402 ], [ 549054.210299010039307, 7511925.130071610212326 ], [ 549303.431781059945934, 7512159.130994699895382 ], [ 549973.879873230005614, 7512734.618608069606125 ], [ 550324.670768719981425, 7512949.121770850382745 ], [ 550643.040906760026701, 7513030.119286200031638 ], [ 551088.32145434000995, 7513053.619084529578686 ], [ 551514.231136110029183, 7513032.119074979797006 ], [ 551928.048944719950669, 7513125.131682810373604 ], [ 552851.751237579970621, 7513457.631798190064728 ], [ 553444.402655750047415, 7513702.63016252964735 ], [ 553884.700595819973387, 7514012.140901519916952 ], [ 554707.61186786997132, 7514542.129785289987922 ], [ 555039.742031399975531, 7514839.630795430392027 ], [ 555282.850133699947037, 7515150.140203859657049 ], [ 555309.620501619996503, 7515417.141945170238614 ], [ 555204.231297930004075, 7515990.63084764033556 ], [ 555224.830583850038238, 7516302.639430030249059 ], [ 555355.189109880011529, 7516970.139454229734838 ], [ 555401.158959190011956, 7517268.627473950386047 ], [ 555453.009693500003777, 7517472.130774790421128 ], [ 555568.341814159997739, 7517762.650496209971607 ], [ 555679.380945910001174, 7518139.159300490282476 ], [ 555859.967723189969547, 7518557.180103110149503 ], [ 555891.331017449963838, 7518695.690531640313566 ], [ 555895.20233105996158, 7518834.189246309921145 ], [ 555864.690977880032733, 7519055.707995560020208 ], [ 555819.40149920003023, 7519212.707879190333188 ], [ 555751.088573709945194, 7519358.719103270210326 ], [ 555656.229406600003131, 7519486.211165229789913 ], [ 555499.088824820006266, 7519667.229853720404208 ], [ 555435.229578880011104, 7519783.219700600020587 ], [ 555395.219437, 7519909.729079619981349 ], [ 555380.380525280022994, 7520048.739566369913518 ], [ 555395.219155670027249, 7520186.728332799859345 ], [ 555445.039403719943948, 7520328.249057630077004 ], [ 555524.010952410055324, 7520458.748933349736035 ], [ 555625.0989471799694, 7520574.75992317032069 ], [ 555741.528840159997344, 7520671.768353310413659 ], [ 555875.008043820038438, 7520751.280601110309362 ], [ 556016.910099909990095, 7520810.279890170320868 ], [ 556241.911961329984479, 7520868.278911869972944 ], [ 556557.541478430037387, 7520906.290372299961746 ], [ 557369.090800640056841, 7520948.830952799879014 ], [ 557667.16034474002663, 7520992.830326260067523 ], [ 557956.12811321998015, 7521064.850063189864159 ], [ 558238.450282489997335, 7521166.869241730310023 ], [ 558460.411528728553094, 7521273.574077860452235 ], [ 562666.860106543055736, 7521273.574077860452235 ], [ 562666.860106543055736, 7499551.859449970535934 ], [ 562216.039372049970552, 7499518.738557850010693 ], [ 561038.658889019978233, 7499334.229885820299387 ], [ 560573.88993088004645, 7499228.730333990417421 ], [ 560045.220694339950569, 7499053.240250290371478 ], [ 559000.808975919964723, 7498747.261756249703467 ], [ 558491.292051909957081, 7498590.749170909635723 ], [ 558058.292197149945423, 7498478.748251110315323 ], [ 557109.178366789943539, 7498140.251189099624753 ], [ 556452.029350040014833, 7497704.259780829772353 ], [ 556164.771667510038242, 7497476.759236839599907 ], [ 555934.658746590022929, 7497223.749905119650066 ], [ 555698.270653169951402, 7497002.250901469960809 ], [ 555500.588549330015667, 7496894.751310749910772 ], [ 555397.432319379993714, 7496948.761133500374854 ], [ 555303.849349590018392, 7496972.251311229541898 ], [ 555214.778581200051121, 7496966.737625430338085 ], [ 555089.240362670039758, 7497031.250550730153918 ], [ 554862.030735339969397, 7497234.060149200260639 ], [ 554527.538610500050709, 7496881.231944209896028 ], [ 554307.539024519966915, 7497121.239912189543247 ], [ 553873.407264049979858, 7497069.228741990402341 ], [ 553167.019435839960352, 7496964.73136886022985 ], [ 552785.109833849943243, 7496871.719957020133734 ], [ 552441.167965259985067, 7496771.719051790423691 ], [ 552052.477855409961194, 7496608.21943895984441 ], [ 551619.35050013998989, 7496470.708245259709656 ], [ 551376.73608185001649, 7496433.791175260208547 ], [ 551376.739154380047694, 7496434.70587014965713 ], [ 550607.471249419962987, 7496316.710699019953609 ], [ 550117.35100883000996, 7496224.190740790218115 ], [ 549506.212394159985706, 7496087.187914409674704 ], [ 548863.079289200017229, 7495925.179077940061688 ], [ 548481.159597750054672, 7495844.679829609580338 ], [ 548207.390742080053315, 7495776.170087760314345 ], [ 547965.698955520056188, 7495764.669661940075457 ], [ 547621.699969719978981, 7495652.168337520211935 ], [ 547188.059762930031866, 7495399.670047010295093 ], [ 546786.056715170037933, 7495109.162089169956744 ], [ 546307.75074092997238, 7494838.149286760017276 ], [ 545741.092215740005486, 7494688.149336840026081 ], [ 545175.319051780039445, 7494736.149638379923999 ], [ 544641.630074440035969, 7494840.648572890087962 ], [ 544139.251131649944, 7494849.639782629907131 ], [ 543789.260250719962642, 7494794.649844129569829 ], [ 543356.198679139954038, 7494663.138956059701741 ], [ 543082.007789839990437, 7494518.141714329831302 ], [ 542743.630761609994806, 7494233.640817360021174 ], [ 542500.679885059944354, 7493961.138607029803097 ], [ 541963.191630379995331, 7493283.139785929583013 ], [ 541373.259800240048207, 7493585.62896960042417 ], [ 541239.201890320051461, 7493478.130430269986391 ], [ 541041.429810469970107, 7493351.641833259724081 ], [ 540786.52025592001155, 7493232.141431320458651 ], [ 540455.231710409978405, 7493113.131476259790361 ], [ 540053.979118539951742, 7492994.638469030149281 ], [ 539703.578717379947193, 7492843.630788899958134 ], [ 539256.667791689978912, 7492496.13018405996263 ], [ 539039.420328530017287, 7492274.12993127014488 ], [ 538799.870407829992473, 7492714.619908520020545 ], [ 538652.561359170009382, 7492492.628104509785771 ], [ 538434.621193959959783, 7492137.620095389895141 ], [ 538299.87104315997567, 7491877.61903742980212 ], [ 538152.48018651001621, 7491649.118514469824731 ], [ 537992.999373289989308, 7491548.119324930012226 ], [ 537858.802059140056372, 7491415.117978409864008 ], [ 537654.058731580036692, 7491149.111612769775093 ], [ 537487.441841059946455, 7490882.609511179849505 ], [ 537397.371146259945817, 7490660.111204289831221 ], [ 537143.239344249945134, 7490712.609949960373342 ], [ 537123.991076610051095, 7490687.099819210357964 ], [ 537085.189913260051981, 7490547.619091790169477 ], [ 537064.939034159993753, 7490293.120942019857466 ], [ 537082.761445729993284, 7490032.107829850167036 ], [ 537240.129678840050474, 7489700.111702639609575 ], [ 537442.369292260031216, 7489425.109939070418477 ], [ 537708.299167479970492, 7489188.111205180175602 ], [ 538152.181785180000588, 7488925.111552310176194 ], [ 538761.317654639948159, 7488635.118393870070577 ], [ 539167.567884790012613, 7488474.128463700413704 ], [ 540094.551193960011005, 7488169.640105499885976 ], [ 540545.270078580011614, 7488001.651238979771733 ], [ 541351.829978380003013, 7487768.150228680111468 ], [ 541999.648718490032479, 7487599.163327969610691 ], [ 542456.839825210045092, 7487444.169361050240695 ], [ 542920.187694640015252, 7487263.180720839649439 ], [ 543485.092239659978077, 7487031.170335260219872 ], [ 544767.590917099965736, 7486591.201564590446651 ], [ 545345.340155360056087, 7486384.71030355989933 ], [ 545961.030371480039321, 7486152.220580110326409 ], [ 546468.978509249980561, 7485977.719601069577038 ], [ 546951.278525750036351, 7485771.230792 ], [ 547503.288716990035027, 7485507.228992990218103 ], [ 548131.742110710009001, 7485262.237969799898565 ], [ 548747.681917050038464, 7485074.240724699571729 ], [ 549293.689134740037844, 7484880.250223100185394 ], [ 550722.249479479971342, 7484395.249562780372798 ], [ 551335.369841750012711, 7484147.563608339987695 ], [ 552027.868966070003808, 7483867.770847659558058 ], [ 553537.949906770023517, 7482890.281093879602849 ], [ 554811.10155056999065, 7481794.781839599832892 ], [ 556113.878784709959291, 7480314.277741310186684 ], [ 556321.489123960025609, 7479956.77931575011462 ], [ 556398.060009449953213, 7479859.278600730001926 ], [ 556436.380619490053505, 7479768.781995279714465 ], [ 556638.371832969947718, 7479455.78113333042711 ], [ 556777.058073660009541, 7479200.29021008964628 ], [ 556984.500647510052659, 7478690.287744199857116 ], [ 557091.201049720053561, 7478390.301844799891114 ], [ 557203.828612910001539, 7478001.799697199836373 ], [ 557366.690636259969324, 7477491.319303460419178 ], [ 557435.490514970035292, 7477249.331434190273285 ], [ 557525.680882530054078, 7474844.890215270221233 ], [ 557432.510101134655997, 7473446.765934069640934 ], [ 554484.204992703045718, 7473446.765934069640934 ] ], [ [ 550240.370830929954536, 7509051.65035855025053 ], [ 550646.628642339957878, 7509707.641543529927731 ], [ 550990.458773490041494, 7510239.13016343023628 ], [ 551424.608781549963169, 7510724.136291139759123 ], [ 551521.729125880054198, 7510832.627482789568603 ], [ 552053.031475730007514, 7511270.629288829863071 ], [ 552490.528776980005205, 7511676.631063279695809 ], [ 553084.359125780058093, 7512083.121290050446987 ], [ 553771.92165458004456, 7512364.128684209659696 ], [ 554419.131219440023415, 7512736.141921159811318 ], [ 554705.497970039956272, 7512779.141034910455346 ], [ 555546.509203040041029, 7513112.150644919835031 ], [ 555884.449980839970522, 7513301.148592280223966 ], [ 556509.700201389961876, 7513717.650047839619219 ], [ 556714.540975130046718, 7513990.148112979717553 ], [ 556805.361583970021456, 7514365.149901020340621 ], [ 556800.971243790001608, 7514772.646481709554791 ], [ 556783.890439269947819, 7515205.648697529919446 ], [ 556786.110028609982692, 7515657.651135619729757 ], [ 557050.729050599969923, 7516470.669594380073249 ], [ 557147.897687020013109, 7516833.162529920227826 ], [ 557193.838800059980713, 7517125.668676010333002 ], [ 557252.092862259945832, 7517341.659371820278466 ], [ 557334.830827519996092, 7517865.197480149567127 ], [ 557334.819321669987403, 7518302.708508649840951 ], [ 557303.570084349950776, 7518646.232337079942226 ], [ 557209.760103469947353, 7519052.739931610412896 ], [ 557022.249313559965231, 7519271.240688440389931 ], [ 556772.278894940041937, 7519146.218413719907403 ], [ 556834.771384830004536, 7518802.719413139857352 ], [ 556897.251721439999528, 7518396.199569020420313 ], [ 556772.271008339943364, 7517865.161165599711239 ], [ 556545.5604096299503, 7517218.148839759640396 ], [ 556467.830703489948064, 7516919.140610580332577 ], [ 556409.019834719947539, 7516588.638416309840977 ], [ 556375.269657119992189, 7516181.652402970008552 ], [ 556354.478421580046415, 7515825.140343310311437 ], [ 556395.041666649980471, 7515004.150383680127561 ], [ 556329.411386069958098, 7514578.14968691021204 ], [ 556168.720058580045588, 7514216.149762759916484 ], [ 555861.708545739995316, 7513861.149782869964838 ], [ 555568.271343840053305, 7513672.151614439673722 ], [ 555211.510252650012262, 7513533.640483819879591 ], [ 554612.761223490000702, 7513339.63861539028585 ], [ 554370.692080090055242, 7513239.130039299838245 ], [ 554224.009517809958197, 7513157.14075134973973 ], [ 554070.888887600041926, 7513056.1293233204633 ], [ 553924.989553560037166, 7512931.139786940068007 ], [ 553209.36836562003009, 7512520.631152370013297 ], [ 552740.619233850040473, 7512270.632029250264168 ], [ 552396.779262859956361, 7512114.119234059937298 ], [ 551865.528648840030655, 7511801.630576659925282 ], [ 551459.209571829997003, 7511458.12822884041816 ], [ 551426.945709530031309, 7511423.715034839697182 ], [ 550990.47109497000929, 7510958.141390670090914 ], [ 550490.398612090037204, 7510332.630386269651353 ], [ 550209.048160879989155, 7509926.638127829879522 ], [ 549896.549101150012575, 7509364.150753700174391 ], [ 549896.550455349963158, 7508895.15027519967407 ], [ 550052.798911349964328, 7508832.651493079960346 ], [ 550240.370830929954536, 7509051.65035855025053 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.7579", "objectid": "7580", "lithstrtno": "4144", "code": "A-FOp-bs", "unitname": "Pyradie Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Pyroxene spinifex-textured basaltic flows and pillow lava with mafic volcaniclastic rock; minor chert and local komatiite; metamorphosed", "parentcode": "A-FOS4-xbs-bbo", "parentname": "Fortescue Group sequence 4", "rocktype1": "igneous mafic volcanic", "lithname1": "pyroxene spinifex-textured basalt", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": "Fortescue Group sequence 4", "formation": "Pyradie Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "Large igneous provinces and dyke swarms; West Australian Craton", "ssuite_tec": "Fortescue Large Igneous Province", "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": "South Pilbara Sub-basin", "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2730", "maxuncerty": null, "min_age_ma": "2718", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 2.0910225281799999, "shape_area": 0.017330207771799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 531498.791368160047568, 7489954.050970080308616 ], [ 532062.401277250028215, 7489461.059403309598565 ], [ 532651.470854870043695, 7488974.049725639633834 ], [ 533202.932457349961624, 7488582.557957610115409 ], [ 533684.789544260012917, 7488281.061272409744561 ], [ 534166.782311249990016, 7487998.079997730441391 ], [ 534763.028078450006433, 7487683.079398900270462 ], [ 535226.339154119952582, 7487489.58226753026247 ], [ 536273.969601340009831, 7487140.099127089604735 ], [ 536845.479823069996201, 7486959.109396929852664 ], [ 537391.730507079977542, 7486822.609182910062373 ], [ 537969.910448370035738, 7486717.620605089701712 ], [ 538319.298372669960372, 7486632.607603570446372 ], [ 538973.360067910049111, 7486438.122480650432408 ], [ 539582.951551569974981, 7486237.639846519567072 ], [ 540764.831503740046173, 7486034.150001510046422 ], [ 541381.079201090033166, 7485903.160007249563932 ], [ 542048.211118230014108, 7485772.170437729917467 ], [ 543351.099201080040075, 7485599.690714879892766 ], [ 543852.650631809956394, 7485444.190270540304482 ], [ 544290.291403339942917, 7485193.699580590240657 ], [ 544753.541485049994662, 7484981.200015850365162 ], [ 545305.831054919981398, 7484774.719212420284748 ], [ 545801.239993970026262, 7484644.729194659739733 ], [ 546309.541899599949829, 7484552.729641349986196 ], [ 546830.221480080042966, 7484390.747971129603684 ], [ 547598.249432689975947, 7484074.738576619885862 ], [ 548918.140759330010042, 7483469.238691999576986 ], [ 549108.4292188299587, 7483372.749284399673343 ], [ 549482.798652769997716, 7483198.758917829953134 ], [ 550352.179148370050825, 7482812.248023429885507 ], [ 550726.509200779953972, 7482625.749823920428753 ], [ 550923.330109950038604, 7482560.749276779592037 ], [ 551081.9873308299575, 7482496.259008839726448 ], [ 551329.225711080012843, 7482327.528326629661024 ], [ 551497.371107719955035, 7482212.771112849935889 ], [ 552094.901182470028289, 7481490.781041470356286 ], [ 552418.542449099943042, 7481117.270238320343196 ], [ 552941.338768179994076, 7480544.768690920434892 ], [ 553563.738782610045746, 7479648.28148182015866 ], [ 553837.621612629969604, 7479125.2787343300879 ], [ 553888.35882392001804, 7478878.770382479764521 ], [ 554020.909282319946215, 7478674.268816069699824 ], [ 554215.787629480008036, 7478202.291607280261815 ], [ 554321.64940796000883, 7477737.279472540132701 ], [ 554389.221459290012717, 7477240.299697100184858 ], [ 554388.279434529948048, 7477030.290577559731901 ], [ 554362.040577049949206, 7476864.800003419630229 ], [ 554377.15869415004272, 7476463.80083199031651 ], [ 554466.91096401005052, 7476149.81045897025615 ], [ 554478.16147654002998, 7475877.810377850197256 ], [ 554502.4104463000549, 7475635.809987120330334 ], [ 554513.608554529957473, 7475317.821682860143483 ], [ 554511.229637669981457, 7474821.329697109758854 ], [ 554483.678844169946387, 7474369.331994599662721 ], [ 554484.204992703045718, 7473446.765934069640934 ], [ 552540.00917787454091, 7473446.765934069640934 ], [ 552559.710327310021967, 7473666.77142991963774 ], [ 552600.969508989946917, 7474303.27927665039897 ], [ 552596.708678749972023, 7474748.769955390132964 ], [ 552543.789706410025246, 7475646.28036432992667 ], [ 552463.408809709944762, 7476130.771005439572036 ], [ 552306.658736399956979, 7476589.769445920363069 ], [ 552048.321414359961636, 7477100.272185890004039 ], [ 551663.911186350043863, 7477827.761224379763007 ], [ 551437.16058826004155, 7478293.770250840112567 ], [ 551316.653838620055467, 7478607.318379839882255 ], [ 551316.672266190056689, 7478612.767581770196557 ], [ 551135.641229460015893, 7479078.270150319673121 ], [ 551022.398725730017759, 7479333.76121969986707 ], [ 550852.399488970055245, 7479690.761212609708309 ], [ 550041.890736300032586, 7480414.749123720452189 ], [ 549617.369118410046212, 7480754.238236700184643 ], [ 549135.630250200047158, 7481074.728781550191343 ], [ 548564.881766229984351, 7481415.22913280967623 ], [ 548121.170094239991158, 7481723.228881180286407 ], [ 547772.801326930057257, 7482011.731332919560373 ], [ 547316.421153279952705, 7482332.221715359948575 ], [ 546859.528619720018469, 7482532.221713139675558 ], [ 546205.560800889972597, 7482752.22159837000072 ], [ 545602.928874460048974, 7483067.220516609959304 ], [ 545114.68132237996906, 7483362.710411510430276 ], [ 544537.441224989946932, 7483664.707958759739995 ], [ 543953.490297400043346, 7483909.697251250036061 ], [ 543286.960704350029118, 7484168.189011920243502 ], [ 542645.48251971998252, 7484337.181690869852901 ], [ 542099.17025394004304, 7484467.172093479894102 ], [ 541432.229545620037243, 7484636.660625079646707 ], [ 540815.957816689973697, 7484754.157589140348136 ], [ 540339.659089589957148, 7484884.140220150351524 ], [ 539672.748444929951802, 7485078.638870620168746 ], [ 539113.889944290043786, 7485221.62924456037581 ], [ 538523.348910360014997, 7485416.120470630005002 ], [ 537920.110197140020318, 7485603.618674510158598 ], [ 536770.107911959988996, 7485826.600812450051308 ], [ 535677.460755900014192, 7486074.081822020001709 ], [ 535251.89892777998466, 7486184.580331520177424 ], [ 534667.718955090036616, 7486366.068787530064583 ], [ 533772.098973440006375, 7486587.560492790304124 ], [ 533441.859908720012754, 7486684.561328150331974 ], [ 533003.620487009990029, 7486795.060457769781351 ], [ 532692.36994088999927, 7486873.059376089833677 ], [ 532520.611942250048742, 7486855.049858470447361 ], [ 532228.349850810016505, 7486914.039730809628963 ], [ 531517.190547690028325, 7487140.540177199989557 ], [ 531123.261794119956903, 7487219.02877002954483 ], [ 530722.381895730039105, 7487373.530029320158064 ], [ 530307.558641209965572, 7487508.030514949932694 ], [ 529856.167837069951929, 7487704.019504959695041 ], [ 529179.029712880030274, 7488126.019333999603987 ], [ 528891.789115860010497, 7488198.021047179587185 ], [ 528731.341024499968626, 7488476.021522340364754 ], [ 528289.459433970041573, 7489080.520819160155952 ], [ 527786.471506739966571, 7488955.51139098033309 ], [ 527041.470700709964149, 7488749.51114213000983 ], [ 526608.280971399974078, 7488592.999127079732716 ], [ 526194.061343439971097, 7488429.490526120178401 ], [ 525766.959432419971563, 7488209.489898060448468 ], [ 525403.660829109954648, 7488039.482254079543054 ], [ 525066.360426930012181, 7487990.491318049840629 ], [ 524761.080699170008302, 7487979.479213849641383 ], [ 524378.960761180031113, 7487872.979142759926617 ], [ 523760.189276150020305, 7487468.969647600315511 ], [ 523377.917523659998551, 7487318.458631769753993 ], [ 523103.990042019984685, 7487230.960358049720526 ], [ 522587.881250180013012, 7487010.960306249558926 ], [ 522285.260041049972642, 7487566.45121266040951 ], [ 521928.229373770009261, 7487377.449425860308111 ], [ 521589.288910479983315, 7486977.940568719990551 ], [ 521076.220722689991817, 7486076.939235580153763 ], [ 520870.908279109979048, 7485702.431779920123518 ], [ 520717.041263679973781, 7485442.442296460270882 ], [ 520601.829014529997949, 7485283.930478939786553 ], [ 520493.14832075999584, 7485169.919389979913831 ], [ 520231.268917570007034, 7484923.429360089823604 ], [ 520007.750378300028387, 7484720.918960610404611 ], [ 519765.139855329995044, 7484531.410296330228448 ], [ 519675.731914539996069, 7484448.911825910210609 ], [ 519643.779406770016067, 7484410.921453320421278 ], [ 519428.37901418999536, 7484590.407976619899273 ], [ 519147.262676659971476, 7484311.900555100291967 ], [ 518884.34867892001057, 7483861.398044480010867 ], [ 518678.659267939976417, 7483404.399623359553516 ], [ 518453.961532760004047, 7482959.889496839605272 ], [ 517882.729129530023783, 7481861.870758390054107 ], [ 517382.249857250018977, 7480928.858782240189612 ], [ 517131.750977970019449, 7480408.358815720304847 ], [ 516958.138920310011599, 7480008.349571480415761 ], [ 516816.519521509995684, 7479646.352016390301287 ], [ 516680.678685929975472, 7479169.839858730323613 ], [ 516595.679728140006773, 7478679.838978200219572 ], [ 516561.039179959974717, 7478088.360192120075226 ], [ 516552.039775579993147, 7477528.379306780174375 ], [ 516631.371785009978339, 7476827.91033367998898 ], [ 516743.381326630013064, 7476317.929811799898744 ], [ 516969.488256849988829, 7475718.452284649945796 ], [ 517221.15078182000434, 7475150.460371020250022 ], [ 517422.32183728000382, 7474665.981291459873319 ], [ 517862.690329869976267, 7473658.000393380410969 ], [ 517968.982304829813074, 7473446.765934069640934 ], [ 515687.31005864002509, 7473446.765934069640934 ], [ 515687.31005864002509, 7484424.49293443467468 ], [ 515834.798774280003272, 7484482.362057009711862 ], [ 516102.459870750026312, 7484601.869119809940457 ], [ 516217.310765629983507, 7484683.870723370462656 ], [ 516326.429848819971085, 7484893.381361030042171 ], [ 516320.510699520003982, 7484988.872019359841943 ], [ 516301.869407019985374, 7485084.369545670226216 ], [ 516353.519451149972156, 7485236.871889360249043 ], [ 516449.418488099996466, 7485350.880605299957097 ], [ 516666.421290200029034, 7485508.878112699836493 ], [ 516927.950278770003933, 7485679.378276979550719 ], [ 517463.637543010001536, 7486001.390471969731152 ], [ 517634.900084780005272, 7485898.400607910007238 ], [ 517660.507719189976342, 7485929.891643890179694 ], [ 517794.508853740000632, 7486024.900842210277915 ], [ 517979.299585099972319, 7486112.899997440166771 ], [ 518501.699876250000671, 7486294.90911213029176 ], [ 518705.950897419999819, 7486458.909381340257823 ], [ 519045.77152519999072, 7487029.90596828982234 ], [ 519197.270578199997544, 7486806.422487869858742 ], [ 519299.649919120012783, 7486933.410632349550724 ], [ 519978.909117389994208, 7488011.42803343012929 ], [ 520177.991389880015049, 7488423.928699710406363 ], [ 520331.968202390009537, 7488696.939133930020034 ], [ 520608.107771619979758, 7489268.439483510330319 ], [ 521224.28995990002295, 7489118.450215740129352 ], [ 521460.109446209971793, 7489225.45048428978771 ], [ 521931.460056159994565, 7489388.450269759632647 ], [ 522249.710844649991486, 7489450.459670879878104 ], [ 522898.739321379980538, 7489516.95748660992831 ], [ 523172.339214570005424, 7489559.970132290385664 ], [ 523458.788942609971855, 7489615.470358500257134 ], [ 523860.21075316000497, 7489772.479153100401163 ], [ 524274.671697549987584, 7490005.979487449862063 ], [ 524580.929671640042216, 7490207.990078659728169 ], [ 525263.63108038995415, 7490681.479916979558766 ], [ 525633.879788300022483, 7490965.99874919001013 ], [ 526080.409787329961546, 7491262.502284400165081 ], [ 526392.791392470011488, 7491426.508381759747863 ], [ 526718.599498050054535, 7491736.499324150383472 ], [ 527174.819998839986511, 7490782.511625460349023 ], [ 527680.867203320027329, 7490012.509104180149734 ], [ 528010.690560759976506, 7490033.00870062969625 ], [ 528554.639594899956137, 7490014.519405740313232 ], [ 528745.280351449968293, 7489988.010815599933267 ], [ 528980.210056909942068, 7489904.021742659620941 ], [ 529189.580337209976278, 7489794.531878739595413 ], [ 529475.157951329951175, 7489672.028327610343695 ], [ 529824.509794170036912, 7489587.520447020418942 ], [ 530193.100235059973784, 7489541.038226139731705 ], [ 529932.98886083997786, 7489804.025997609831393 ], [ 528977.92851385998074, 7490769.530310049653053 ], [ 528182.869514529942535, 7492066.029675690457225 ], [ 528666.197390179964714, 7492063.530787769705057 ], [ 529212.330741600017063, 7491907.539981139823794 ], [ 529719.632291379966773, 7491605.528420919552445 ], [ 530163.091089620022103, 7491234.030547330155969 ], [ 530511.511262089945376, 7490958.541540630161762 ], [ 531498.791368160047568, 7489954.050970080308616 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.9861", "objectid": "9862", "lithstrtno": "4146", "code": "A-FOo-bbo", "unitname": "Boongal Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Pillowed and massive basaltic flows with basaltic breccia siltstone and mudstone; minor chert; metamorphosed", "parentcode": "A-FOS3-bbo", "parentname": "Fortescue Group sequence 3", "rocktype1": "igneous mafic volcanic", "lithname1": "basalt", "qualifier1": "pillowed", "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": "Fortescue Group sequence 3", "formation": "Boongal Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "Large igneous provinces and dyke swarms; West Australian Craton", "ssuite_tec": "Fortescue Large Igneous Province", "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": "South Pilbara Sub-basin", "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2745", "maxuncerty": null, "min_age_ma": "2730", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 1.7720637985900001, "shape_area": 0.0088294660016799992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 530722.381895730039105, 7487373.530029320158064 ], [ 531123.261794119956903, 7487219.02877002954483 ], [ 531517.190547690028325, 7487140.540177199989557 ], [ 532228.349850810016505, 7486914.039730809628963 ], [ 532520.611942250048742, 7486855.049858470447361 ], [ 532692.36994088999927, 7486873.059376089833677 ], [ 533003.620487009990029, 7486795.060457769781351 ], [ 533441.859908720012754, 7486684.561328150331974 ], [ 533772.098973440006375, 7486587.560492790304124 ], [ 534667.718955090036616, 7486366.068787530064583 ], [ 535251.89892777998466, 7486184.580331520177424 ], [ 535677.460755900014192, 7486074.081822020001709 ], [ 536770.107911959988996, 7485826.600812450051308 ], [ 537920.110197140020318, 7485603.618674510158598 ], [ 538523.348910360014997, 7485416.120470630005002 ], [ 539113.889944290043786, 7485221.62924456037581 ], [ 539672.748444929951802, 7485078.638870620168746 ], [ 540339.659089589957148, 7484884.140220150351524 ], [ 540815.957816689973697, 7484754.157589140348136 ], [ 541432.229545620037243, 7484636.660625079646707 ], [ 542099.17025394004304, 7484467.172093479894102 ], [ 542645.48251971998252, 7484337.181690869852901 ], [ 543286.960704350029118, 7484168.189011920243502 ], [ 543953.490297400043346, 7483909.697251250036061 ], [ 544537.441224989946932, 7483664.707958759739995 ], [ 545114.68132237996906, 7483362.710411510430276 ], [ 545602.928874460048974, 7483067.220516609959304 ], [ 546205.560800889972597, 7482752.22159837000072 ], [ 546859.528619720018469, 7482532.221713139675558 ], [ 547316.421153279952705, 7482332.221715359948575 ], [ 547772.801326930057257, 7482011.731332919560373 ], [ 548121.170094239991158, 7481723.228881180286407 ], [ 548564.881766229984351, 7481415.22913280967623 ], [ 549135.630250200047158, 7481074.728781550191343 ], [ 549617.369118410046212, 7480754.238236700184643 ], [ 550041.890736300032586, 7480414.749123720452189 ], [ 550852.399488970055245, 7479690.761212609708309 ], [ 551022.398725730017759, 7479333.76121969986707 ], [ 551135.641229460015893, 7479078.270150319673121 ], [ 551316.672266190056689, 7478612.767581770196557 ], [ 551316.653838620055467, 7478607.318379839882255 ], [ 551437.16058826004155, 7478293.770250840112567 ], [ 551663.911186350043863, 7477827.761224379763007 ], [ 552048.321414359961636, 7477100.272185890004039 ], [ 552306.658736399956979, 7476589.769445920363069 ], [ 552463.408809709944762, 7476130.771005439572036 ], [ 552543.789706410025246, 7475646.28036432992667 ], [ 552596.708678749972023, 7474748.769955390132964 ], [ 552600.969508989946917, 7474303.27927665039897 ], [ 552559.710327310021967, 7473666.77142991963774 ], [ 552540.00917787454091, 7473446.765934069640934 ], [ 551080.212846429902129, 7473446.765934069640934 ], [ 551035.608584269997664, 7473948.730222159996629 ], [ 551013.400320730055682, 7474879.230345549993217 ], [ 551013.400707509950735, 7476009.738878300413489 ], [ 550880.391042839968577, 7476851.749500320293009 ], [ 550646.820849810028449, 7477780.750998630188406 ], [ 550472.311465810053051, 7478079.751260950230062 ], [ 550048.579763669986278, 7478777.751176180317998 ], [ 549400.371715590008534, 7479400.739066990092397 ], [ 548652.548129320028238, 7480148.730872269719839 ], [ 547456.001047570025548, 7481145.721713369712234 ], [ 546433.928628760040738, 7481843.719781110063195 ], [ 545262.300773459952325, 7482442.211092540062964 ], [ 544114.320860560052097, 7482954.200195039622486 ], [ 544031.747912460006773, 7482980.188702680170536 ], [ 543923.859284300007857, 7483031.691971049644053 ], [ 543307.878213220043108, 7483219.690653090365231 ], [ 541904.428336929995567, 7483628.172685800120234 ], [ 540773.859463830012828, 7483927.159011710435152 ], [ 539922.830867439974099, 7484167.147630030289292 ], [ 539071.751081289956346, 7484388.118471539579332 ], [ 538430.128910519997589, 7484538.110331879928708 ], [ 537274.421160569996573, 7484900.611389660276473 ], [ 536416.878469659946859, 7485109.088254359550774 ], [ 535127.470298039959744, 7485434.569571630097926 ], [ 534092.21032826998271, 7485720.068343419581652 ], [ 533603.168918970040977, 7485843.570628009736538 ], [ 533139.431913170032203, 7485941.560117250308394 ], [ 532656.549589470028877, 7486033.552292670123279 ], [ 532154.860149109968916, 7486176.051343370229006 ], [ 531685.150314419995993, 7486369.538402480073273 ], [ 531272.819183569983579, 7486582.030198579654098 ], [ 530644.619228519964963, 7486871.519565439783037 ], [ 529748.237938759964891, 7487243.030956010334194 ], [ 529542.089915359974839, 7487311.529445690102875 ], [ 529422.971164569957182, 7487328.510253859683871 ], [ 529486.573557080002502, 7487228.240700139664114 ], [ 529610.718033500015736, 7487032.521789309568703 ], [ 529385.112543620052747, 7487076.020391209982336 ], [ 529237.922070009983145, 7487046.530405789613724 ], [ 529120.149274140014313, 7487076.007991850376129 ], [ 528954.110069880029187, 7487103.521836710162461 ], [ 528795.161534680053592, 7487111.009507419541478 ], [ 528572.600081639946438, 7487105.512862170115113 ], [ 527974.408268759958446, 7487025.998880390077829 ], [ 527662.338701030006632, 7486932.500663819722831 ], [ 526961.480119650019333, 7486655.987977350130677 ], [ 526113.710027370019816, 7486246.990289689972997 ], [ 524915.208273750031367, 7485629.970491929911077 ], [ 524265.450897340022493, 7485403.967761510051787 ], [ 523577.778480749984737, 7485223.462142010219395 ], [ 523268.120747109991498, 7485625.951278129592538 ], [ 522999.849542689975351, 7485391.950317829847336 ], [ 522750.549823439971078, 7485113.459524570032954 ], [ 522206.711411260010209, 7484428.940459559671581 ], [ 522123.3302770400187, 7484282.942129979841411 ], [ 522059.031432130024768, 7484136.939696010202169 ], [ 522007.338594119995832, 7483971.429092960432172 ], [ 521999.950163599976804, 7483748.9293083101511 ], [ 522018.439330630004406, 7483621.429230930283666 ], [ 521784.480578640010208, 7483902.939748729579151 ], [ 521374.539772410003934, 7483293.929609539918602 ], [ 521163.329343390010763, 7483008.930106650106609 ], [ 521112.019750770006794, 7482919.920276300050318 ], [ 520941.17862751998473, 7483098.931340780109167 ], [ 520531.619565160013735, 7482560.410203600302339 ], [ 520237.10917721997248, 7482148.410561019554734 ], [ 519955.230062239977997, 7481716.908311439678073 ], [ 519622.430933850002475, 7481273.389771680347621 ], [ 519001.440619600005448, 7480404.37745278980583 ], [ 518713.410290280007757, 7480024.371472629718482 ], [ 518469.570884139975533, 7479567.368860090151429 ], [ 518244.409103669982869, 7479021.358764530159533 ], [ 518159.351960200001486, 7478525.359361410140991 ], [ 518125.649700690002646, 7478117.86872429959476 ], [ 518142.210221890010871, 7477602.391211249865592 ], [ 518215.772289789980277, 7477016.40078095998615 ], [ 518327.488122560025658, 7476442.93088511005044 ], [ 518508.929092329984996, 7475818.430933189578354 ], [ 518735.748522549984045, 7475371.431314400397241 ], [ 518995.009580629994161, 7475058.43823663983494 ], [ 519254.761205210001208, 7474853.430005059577525 ], [ 519514.34932562999893, 7474609.939006499946117 ], [ 519634.308755900012329, 7474430.939210419543087 ], [ 519729.221963040006813, 7474334.92953103967011 ], [ 520045.079995240026619, 7473894.428377710282803 ], [ 520263.966596475744154, 7473446.765934069640934 ], [ 517968.982304829813074, 7473446.765934069640934 ], [ 517862.690329869976267, 7473658.000393380410969 ], [ 517422.32183728000382, 7474665.981291459873319 ], [ 517221.15078182000434, 7475150.460371020250022 ], [ 516969.488256849988829, 7475718.452284649945796 ], [ 516743.381326630013064, 7476317.929811799898744 ], [ 516631.371785009978339, 7476827.91033367998898 ], [ 516552.039775579993147, 7477528.379306780174375 ], [ 516561.039179959974717, 7478088.360192120075226 ], [ 516595.679728140006773, 7478679.838978200219572 ], [ 516680.678685929975472, 7479169.839858730323613 ], [ 516816.519521509995684, 7479646.352016390301287 ], [ 516958.138920310011599, 7480008.349571480415761 ], [ 517131.750977970019449, 7480408.358815720304847 ], [ 517382.249857250018977, 7480928.858782240189612 ], [ 517882.729129530023783, 7481861.870758390054107 ], [ 518453.961532760004047, 7482959.889496839605272 ], [ 518678.659267939976417, 7483404.399623359553516 ], [ 518884.34867892001057, 7483861.398044480010867 ], [ 519147.262676659971476, 7484311.900555100291967 ], [ 519428.37901418999536, 7484590.407976619899273 ], [ 519643.779406770016067, 7484410.921453320421278 ], [ 519675.731914539996069, 7484448.911825910210609 ], [ 519765.139855329995044, 7484531.410296330228448 ], [ 520007.750378300028387, 7484720.918960610404611 ], [ 520231.268917570007034, 7484923.429360089823604 ], [ 520493.14832075999584, 7485169.919389979913831 ], [ 520601.829014529997949, 7485283.930478939786553 ], [ 520717.041263679973781, 7485442.442296460270882 ], [ 520870.908279109979048, 7485702.431779920123518 ], [ 521076.220722689991817, 7486076.939235580153763 ], [ 521589.288910479983315, 7486977.940568719990551 ], [ 521928.229373770009261, 7487377.449425860308111 ], [ 522285.260041049972642, 7487566.45121266040951 ], [ 522587.881250180013012, 7487010.960306249558926 ], [ 523103.990042019984685, 7487230.960358049720526 ], [ 523377.917523659998551, 7487318.458631769753993 ], [ 523760.189276150020305, 7487468.969647600315511 ], [ 524378.960761180031113, 7487872.979142759926617 ], [ 524761.080699170008302, 7487979.479213849641383 ], [ 525066.360426930012181, 7487990.491318049840629 ], [ 525403.660829109954648, 7488039.482254079543054 ], [ 525766.959432419971563, 7488209.489898060448468 ], [ 526194.061343439971097, 7488429.490526120178401 ], [ 526608.280971399974078, 7488592.999127079732716 ], [ 527041.470700709964149, 7488749.51114213000983 ], [ 527786.471506739966571, 7488955.51139098033309 ], [ 528289.459433970041573, 7489080.520819160155952 ], [ 528731.341024499968626, 7488476.021522340364754 ], [ 528891.789115860010497, 7488198.021047179587185 ], [ 529179.029712880030274, 7488126.019333999603987 ], [ 529856.167837069951929, 7487704.019504959695041 ], [ 530307.558641209965572, 7487508.030514949932694 ], [ 530722.381895730039105, 7487373.530029320158064 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.14820", "objectid": "14822", "lithstrtno": "3368", "code": "A-FOj-xs-b", "unitname": "Jeerinah Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Siliciclastic sedimentary rocks mafic volcanic rocks and minor felsic volcanic rocks; local carbonate rocks chert and dolerite sills", "parentcode": "A-FOS5-xs-b", "parentname": "Fortescue Group sequence 5", "rocktype1": "sedimentary siliciclastic", "lithname1": null, "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "igneous mafic volcanic", "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": "Fortescue Group sequence 5", "formation": "Jeerinah Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": "Northeast Pilbara Sub-basin; Northwest Pilbara Sub-basin; South Pilbara Sub-basin", "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2713", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": "5", "max_age_da": "Inferred", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 1.1612785960300001, "shape_area": 0.0059257442593800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 515687.31005864002509, 7497115.820520521141589 ], [ 515754.799057190015446, 7497040.40949865989387 ], [ 515793.128931319981348, 7497078.399584740400314 ], [ 515863.180090909998398, 7497103.421118300408125 ], [ 516265.418169579992536, 7497432.421495869755745 ], [ 516489.109890850028023, 7497660.420436239801347 ], [ 516642.618601860012859, 7497850.430777939967811 ], [ 516885.902088599978015, 7498199.429791740141809 ], [ 516997.112233689986169, 7498099.42919669020921 ], [ 517473.779419790022075, 7497665.421633450314403 ], [ 517847.879607070004568, 7497213.920483809895813 ], [ 517992.779921379988082, 7496926.429134880192578 ], [ 518383.931465780013241, 7496275.420112820342183 ], [ 518769.290147739986423, 7495725.928489049896598 ], [ 518705.069473669980653, 7495598.940543320029974 ], [ 518588.76013419998344, 7495217.430626450106502 ], [ 518543.060454390011728, 7494963.42907639965415 ], [ 518471.900537130015437, 7494715.428815290331841 ], [ 518363.05026823002845, 7494563.417820639908314 ], [ 518184.840464940003585, 7494525.920076349750161 ], [ 517804.770179970015306, 7494846.419316640123725 ], [ 517393.629248439974617, 7495306.919828530400991 ], [ 517026.319249610009138, 7495626.907642669975758 ], [ 516855.688426990003791, 7495863.411676499992609 ], [ 516663.828672209987417, 7495628.911218900233507 ], [ 516401.340706480026711, 7495261.409630320034921 ], [ 516100.681956680025905, 7494893.908751860260963 ], [ 515921.677714249992277, 7494697.41118314024061 ], [ 515749.4295332399779, 7494583.898371280170977 ], [ 515687.31005864002509, 7494569.547191276215017 ], [ 515687.31005864002509, 7497115.820520521141589 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.5293", "objectid": "5293", "lithstrtno": "2258", "code": "A-HAm-cib", "unitname": "Marra Mamba Iron Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Chert banded iron-formation mudstone and siltstone; minor carbonate; metamorphosed", "parentcode": "A-HAL-xkt-ci", "parentname": "Hamersley Group lower", "rocktype1": "sedimentary other chemical or biochemical", "lithname1": "iron formation", "qualifier1": "banded", "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group lower", "formation": "Marra Mamba Iron Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2629", "maxuncerty": null, "min_age_ma": "2597", "minuncerty": "5", "max_age_da": "Inferred", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 1.1552456954400001, "shape_area": 0.0052035302962999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 562666.860106543055736, 7495992.320895091630518 ], [ 562491.400376350036822, 7495921.300782550126314 ], [ 562019.820314730051905, 7495720.302675129845738 ], [ 561529.069343350012787, 7495500.300697609782219 ], [ 561172.320291019976139, 7495368.299701560288668 ], [ 560402.570722269942053, 7495308.800442470237613 ], [ 560097.570766930002719, 7495361.79068183992058 ], [ 559741.432132430025376, 7495363.28972162026912 ], [ 559352.750818699947558, 7495212.791316449642181 ], [ 558785.421642940025777, 7494929.281944960355759 ], [ 558352.130415069987066, 7494747.279625999741256 ], [ 557957.259456550003961, 7494615.783141110092402 ], [ 557645.189484709990211, 7494528.279138370417058 ], [ 557243.719799650018103, 7494358.769946710206568 ], [ 556931.350873869960196, 7494207.778886949643493 ], [ 556452.998445700039156, 7493898.268556670285761 ], [ 556185.178019879967906, 7493759.771520050242543 ], [ 555822.108224330004305, 7493634.262409400194883 ], [ 555427.500493929954246, 7493560.259708169847727 ], [ 554988.728318589972332, 7493568.758602280169725 ], [ 554708.987234840053134, 7493583.250167059712112 ], [ 554250.857786769978702, 7493534.748806440271437 ], [ 553888.03141948999837, 7493460.250612050294876 ], [ 553582.358255979954265, 7493379.240251369774342 ], [ 553270.598975960048847, 7493355.742238880135119 ], [ 552895.541484309942462, 7493376.728750480338931 ], [ 552724.001571660046466, 7493409.24016897007823 ], [ 552634.977255600038916, 7493409.730852910317481 ], [ 552120.02944087004289, 7493450.728757919743657 ], [ 551420.399801210034639, 7493422.732412000186741 ], [ 551366.617026919964701, 7493423.055953639559448 ], [ 551089.650060679996386, 7493424.718791520223022 ], [ 550765.358819589950144, 7493413.720309609547257 ], [ 550383.109014970017597, 7493275.710593770258129 ], [ 549924.230084380018525, 7493068.211211860179901 ], [ 549427.352509089978412, 7492886.201835599727929 ], [ 548956.0910621000221, 7492755.198269600048661 ], [ 548555.108524280018173, 7492681.192445100285113 ], [ 548154.380444790003821, 7492676.690392710268497 ], [ 547824.27998191001825, 7492786.679622329771519 ], [ 547411.570846550050192, 7492935.181099180132151 ], [ 547017.769695810042322, 7493033.168757920153439 ], [ 546566.369162349961698, 7493067.16939007025212 ], [ 546146.630921929958276, 7493050.671805170364678 ], [ 545739.079724060022272, 7492931.657495119608939 ], [ 545414.140461780014448, 7492806.169576980173588 ], [ 544713.190917499945499, 7492510.65921042021364 ], [ 544311.508540580049157, 7492303.159224379807711 ], [ 544164.749375049956143, 7492195.661123299971223 ], [ 543948.009315419942141, 7492082.15929201990366 ], [ 543815.639348490047269, 7492181.652319019660354 ], [ 543420.559457879979163, 7492167.660537029616535 ], [ 543242.211323129944503, 7492092.649319870397449 ], [ 543146.001163249951787, 7491940.152454890310764 ], [ 543100.6207402900327, 7491755.660557329654694 ], [ 543093.419647180009633, 7491577.660029820166528 ], [ 543022.511018689954653, 7491374.657442820258439 ], [ 542881.80016316997353, 7491216.159379719756544 ], [ 542645.927855630056001, 7491090.149695370346308 ], [ 542391.501186319976114, 7491085.14929233957082 ], [ 542117.998944779974408, 7491067.649895650334656 ], [ 541850.509416379965842, 7490992.648644610308111 ], [ 541621.191303660045378, 7490904.649635610170662 ], [ 541378.810070079984143, 7490759.65119098033756 ], [ 541225.54120881005656, 7490626.651507309637964 ], [ 541071.860060309991241, 7490404.651328420266509 ], [ 541020.311512019950897, 7490265.149958720430732 ], [ 540994.19945211999584, 7490125.140481020323932 ], [ 540987.830442319973372, 7489984.639754460193217 ], [ 540639.121395469992422, 7490337.128159949555993 ], [ 540716.941367150051519, 7490648.638500919565558 ], [ 540890.120674449950457, 7490959.638414540328085 ], [ 541069.250745250028558, 7491181.137707220390439 ], [ 541209.801324920030311, 7491327.140143260359764 ], [ 541318.310920499963686, 7491402.650773590430617 ], [ 541522.379093389958143, 7491516.15023647993803 ], [ 541726.178873589960858, 7491597.648138180375099 ], [ 541866.320134090026841, 7491635.139597659930587 ], [ 542203.428717299946584, 7491646.147394060157239 ], [ 542259.79017825005576, 7491461.148964749649167 ], [ 542387.047878319979645, 7491479.650602609850466 ], [ 542508.298627099953592, 7491568.148776990361512 ], [ 542623.620764510007575, 7491745.649526019580662 ], [ 542707.388782929978333, 7491974.649402409791946 ], [ 542804.319843949982896, 7492292.157811080105603 ], [ 542874.870527419960126, 7492419.150357720442116 ], [ 543015.329437579959631, 7492539.138630960136652 ], [ 543212.941721210023388, 7492633.649540959857404 ], [ 543785.640033749979921, 7492706.660280509851873 ], [ 544142.179653740022331, 7492794.159593130461872 ], [ 544346.308373639942147, 7492926.661257339641452 ], [ 544550.748104, 7493129.159070179797709 ], [ 544793.198507150053047, 7493287.14833365008235 ], [ 545098.838259430020116, 7493361.660610700026155 ], [ 545620.520159429986961, 7493403.161414469592273 ], [ 546046.63210618996527, 7493420.159761250019073 ], [ 546440.831084080040455, 7493399.170757370069623 ], [ 546822.028585199965164, 7493326.668271440081298 ], [ 547241.468395530013368, 7493267.16958300024271 ], [ 548296.979325519991107, 7493223.178339689970016 ], [ 548710.802253489964642, 7493316.691018629819155 ], [ 548978.040931120049208, 7493359.698863900266588 ], [ 549474.648993029957637, 7493478.199903059750795 ], [ 549870.019297749968246, 7493704.701154019683599 ], [ 550106.160976730054244, 7493881.701261010020971 ], [ 550558.2990232600132, 7494000.210066519677639 ], [ 551118.180059619946405, 7494060.722641809843481 ], [ 551368.626809600042179, 7494020.756694730371237 ], [ 551569.358151110005565, 7493988.721048220060766 ], [ 551988.982681629946455, 7493979.718334820121527 ], [ 553210.151302670012228, 7493998.742212990298867 ], [ 553794.920808200025931, 7493950.738151979632676 ], [ 554329.087622700026259, 7493941.747372410260141 ], [ 554755.170556660043076, 7493939.249121819622815 ], [ 555105.050060370005667, 7493956.761668190360069 ], [ 555397.807753409957513, 7494012.260754720307887 ], [ 555639.849916859995574, 7494093.759371990337968 ], [ 555894.861274020047858, 7494219.759863370098174 ], [ 556156.530462650000118, 7494415.761871079914272 ], [ 556616.10030645004008, 7494775.759958229959011 ], [ 556852.218676939955913, 7494939.759161150082946 ], [ 557170.74912521999795, 7495052.771290170028806 ], [ 557444.6893065799959, 7495159.772542240098119 ], [ 557693.349951880052686, 7495291.781233799643815 ], [ 557961.790153719950467, 7495576.769842970184982 ], [ 558045.089185219956562, 7495703.781962679699063 ], [ 558052.23004520998802, 7495869.268662620335817 ], [ 558255.440116479992867, 7495804.280857229605317 ], [ 558351.929017900023609, 7496032.767925890162587 ], [ 558371.687999699963257, 7496179.270977480337024 ], [ 558359.978704030043446, 7496395.769036279991269 ], [ 558316.310751219978556, 7496567.771325110457838 ], [ 559327.171282649971545, 7496505.271246150135994 ], [ 560127.862981720012613, 7496386.282164240255952 ], [ 560744.071580859948881, 7496242.778021169826388 ], [ 560801.55911183997523, 7496299.777937590144575 ], [ 560884.83012397994753, 7496420.277748020365834 ], [ 561025.31877665000502, 7496546.779846900142729 ], [ 561191.072146879974753, 7496634.770176869817078 ], [ 561630.581030300003476, 7496778.780727270059288 ], [ 561840.68887213000562, 7496822.281185540370643 ], [ 562127.458183920010924, 7496948.281933180056512 ], [ 562666.860106543055736, 7497133.237551528960466 ], [ 562666.860106543055736, 7495992.320895091630518 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.14368", "objectid": "14369", "lithstrtno": "3368", "code": "A-FOj-xs-b", "unitname": "Jeerinah Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Siliciclastic sedimentary rocks mafic volcanic rocks and minor felsic volcanic rocks; local carbonate rocks chert and dolerite sills", "parentcode": "A-FOS5-xs-b", "parentname": "Fortescue Group sequence 5", "rocktype1": "sedimentary siliciclastic", "lithname1": null, "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "igneous mafic volcanic", "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": "Fortescue Group sequence 5", "formation": "Jeerinah Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": "Northeast Pilbara Sub-basin; Northwest Pilbara Sub-basin; South Pilbara Sub-basin", "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2713", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": "5", "max_age_da": "Inferred", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 4.0528523351399999, "shape_area": 0.020812359399700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 562421.449098899960518, 7498588.759355739690363 ], [ 561912.528315510018729, 7498559.2597412802279 ], [ 561098.710991080035456, 7498583.249814179725945 ], [ 560627.90070563997142, 7498553.749823899939656 ], [ 559889.530454299994744, 7498411.251732099801302 ], [ 559118.799577760044485, 7498154.758440059609711 ], [ 558679.441208709962666, 7498023.260132320225239 ], [ 558259.311313159996644, 7497949.258003230206668 ], [ 557909.380009340005927, 7497912.756985089741647 ], [ 557673.869504629983567, 7497876.259613890200853 ], [ 557450.919712999952026, 7497794.760403499938548 ], [ 557259.399272640002891, 7497649.25935020018369 ], [ 557035.40986553998664, 7497344.758373170159757 ], [ 556919.861955519998446, 7497122.759786680340767 ], [ 556810.039340780000202, 7496760.771355640143156 ], [ 557896.630763810011558, 7496576.258577490225434 ], [ 558070.121155599947087, 7496944.770771049894392 ], [ 558255.600268559996039, 7497185.26009499002248 ], [ 558631.969253320014104, 7497425.260880719870329 ], [ 559026.79020450997632, 7497531.261897060088813 ], [ 559561.129777790047228, 7497553.769323430024087 ], [ 560088.960638139978983, 7497557.271907770074904 ], [ 560636.190526859951206, 7497630.76089888997376 ], [ 561069.011243949993514, 7497704.759833839721978 ], [ 561539.879878400010057, 7497765.770021039992571 ], [ 562017.460723969968967, 7497884.259027689695358 ], [ 562666.860106543055736, 7497990.631876044906676 ], [ 562666.860106543055736, 7497133.237551528960466 ], [ 562127.458183920010924, 7496948.281933180056512 ], [ 561840.68887213000562, 7496822.281185540370643 ], [ 561630.581030300003476, 7496778.780727270059288 ], [ 561191.072146879974753, 7496634.770176869817078 ], [ 561025.31877665000502, 7496546.779846900142729 ], [ 560884.83012397994753, 7496420.277748020365834 ], [ 560801.55911183997523, 7496299.777937590144575 ], [ 560744.071580859948881, 7496242.778021169826388 ], [ 560127.862981720012613, 7496386.282164240255952 ], [ 559327.171282649971545, 7496505.271246150135994 ], [ 558316.310751219978556, 7496567.771325110457838 ], [ 558359.978704030043446, 7496395.769036279991269 ], [ 558371.687999699963257, 7496179.270977480337024 ], [ 558351.929017900023609, 7496032.767925890162587 ], [ 558255.440116479992867, 7495804.280857229605317 ], [ 558052.23004520998802, 7495869.268662620335817 ], [ 558045.089185219956562, 7495703.781962679699063 ], [ 557961.790153719950467, 7495576.769842970184982 ], [ 557693.349951880052686, 7495291.781233799643815 ], [ 557444.6893065799959, 7495159.772542240098119 ], [ 557170.74912521999795, 7495052.771290170028806 ], [ 556852.218676939955913, 7494939.759161150082946 ], [ 556616.10030645004008, 7494775.759958229959011 ], [ 556156.530462650000118, 7494415.761871079914272 ], [ 555894.861274020047858, 7494219.759863370098174 ], [ 555639.849916859995574, 7494093.759371990337968 ], [ 555397.807753409957513, 7494012.260754720307887 ], [ 555105.050060370005667, 7493956.761668190360069 ], [ 554755.170556660043076, 7493939.249121819622815 ], [ 554329.087622700026259, 7493941.747372410260141 ], [ 553794.920808200025931, 7493950.738151979632676 ], [ 553210.151302670012228, 7493998.742212990298867 ], [ 551988.982681629946455, 7493979.718334820121527 ], [ 551569.358151110005565, 7493988.721048220060766 ], [ 551368.626809600042179, 7494020.756694730371237 ], [ 551118.180059619946405, 7494060.722641809843481 ], [ 550558.2990232600132, 7494000.210066519677639 ], [ 550106.160976730054244, 7493881.701261010020971 ], [ 549870.019297749968246, 7493704.701154019683599 ], [ 549474.648993029957637, 7493478.199903059750795 ], [ 548978.040931120049208, 7493359.698863900266588 ], [ 548710.802253489964642, 7493316.691018629819155 ], [ 548296.979325519991107, 7493223.178339689970016 ], [ 547241.468395530013368, 7493267.16958300024271 ], [ 546822.028585199965164, 7493326.668271440081298 ], [ 546440.831084080040455, 7493399.170757370069623 ], [ 546046.63210618996527, 7493420.159761250019073 ], [ 545620.520159429986961, 7493403.161414469592273 ], [ 545098.838259430020116, 7493361.660610700026155 ], [ 544793.198507150053047, 7493287.14833365008235 ], [ 544550.748104, 7493129.159070179797709 ], [ 544346.308373639942147, 7492926.661257339641452 ], [ 544142.179653740022331, 7492794.159593130461872 ], [ 543785.640033749979921, 7492706.660280509851873 ], [ 543212.941721210023388, 7492633.649540959857404 ], [ 543015.329437579959631, 7492539.138630960136652 ], [ 542874.870527419960126, 7492419.150357720442116 ], [ 542804.319843949982896, 7492292.157811080105603 ], [ 542707.388782929978333, 7491974.649402409791946 ], [ 542623.620764510007575, 7491745.649526019580662 ], [ 542508.298627099953592, 7491568.148776990361512 ], [ 542387.047878319979645, 7491479.650602609850466 ], [ 542259.79017825005576, 7491461.148964749649167 ], [ 542203.428717299946584, 7491646.147394060157239 ], [ 541866.320134090026841, 7491635.139597659930587 ], [ 541726.178873589960858, 7491597.648138180375099 ], [ 541522.379093389958143, 7491516.15023647993803 ], [ 541318.310920499963686, 7491402.650773590430617 ], [ 541209.801324920030311, 7491327.140143260359764 ], [ 541069.250745250028558, 7491181.137707220390439 ], [ 540890.120674449950457, 7490959.638414540328085 ], [ 540716.941367150051519, 7490648.638500919565558 ], [ 540639.121395469992422, 7490337.128159949555993 ], [ 540987.830442319973372, 7489984.639754460193217 ], [ 541044.12911024002824, 7489927.639171360060573 ], [ 541239.63983072002884, 7489576.641609819605947 ], [ 541719.809467370039783, 7488918.160171950235963 ], [ 542340.530504659982398, 7488386.659122560173273 ], [ 543469.998219090048224, 7487871.180351009592414 ], [ 544574.599058820051141, 7487458.188967909663916 ], [ 546587.230142600019462, 7486772.721792650409043 ], [ 548225.680131730041467, 7486292.730476760305464 ], [ 549851.188989539979957, 7485761.741123080253601 ], [ 551338.5497821100289, 7485090.025646439753473 ], [ 551338.549904590006918, 7485090.061955739744008 ], [ 551577.239460229990073, 7484982.252649479545653 ], [ 552567.438844150048681, 7484595.270084340125322 ], [ 553994.731696769944392, 7483836.269434520043433 ], [ 555585.872745560016483, 7482764.780236049555242 ], [ 557005.000187280005775, 7481649.799908259883523 ], [ 558162.910846160026267, 7480427.790963140316308 ], [ 559073.070471100043505, 7479245.320975399576128 ], [ 559301.230240639997646, 7479091.310507340356708 ], [ 559408.93108398001641, 7479001.821175940334797 ], [ 559529.190361369983293, 7478886.309631819836795 ], [ 559882.373260110034607, 7478260.830046719871461 ], [ 559970.361824939958751, 7478050.32086979970336 ], [ 560000.63984713004902, 7477719.318579459562898 ], [ 559941.869839449995197, 7477413.839102909900248 ], [ 559870.578330309945159, 7477127.825745229609311 ], [ 559843.110859469976276, 7476701.840296889655292 ], [ 559898.918661569943652, 7476408.340487170033157 ], [ 560043.638665909995325, 7476083.33965312037617 ], [ 560232.808540910016745, 7475744.850065840408206 ], [ 560358.740260210004635, 7475483.342136479914188 ], [ 560603.88147336000111, 7474870.850602730177343 ], [ 560747.990340759977698, 7474430.849786610342562 ], [ 560835.080332349985838, 7474022.851079889573157 ], [ 560826.793062305427156, 7473446.765934069640934 ], [ 557432.510101134655997, 7473446.765934069640934 ], [ 557525.680882530054078, 7474844.890215270221233 ], [ 557435.490514970035292, 7477249.331434190273285 ], [ 557366.690636259969324, 7477491.319303460419178 ], [ 557203.828612910001539, 7478001.799697199836373 ], [ 557091.201049720053561, 7478390.301844799891114 ], [ 556984.500647510052659, 7478690.287744199857116 ], [ 556777.058073660009541, 7479200.29021008964628 ], [ 556638.371832969947718, 7479455.78113333042711 ], [ 556436.380619490053505, 7479768.781995279714465 ], [ 556398.060009449953213, 7479859.278600730001926 ], [ 556321.489123960025609, 7479956.77931575011462 ], [ 556113.878784709959291, 7480314.277741310186684 ], [ 554811.10155056999065, 7481794.781839599832892 ], [ 553537.949906770023517, 7482890.281093879602849 ], [ 552027.868966070003808, 7483867.770847659558058 ], [ 551335.369841750012711, 7484147.563608339987695 ], [ 550722.249479479971342, 7484395.249562780372798 ], [ 549293.689134740037844, 7484880.250223100185394 ], [ 548747.681917050038464, 7485074.240724699571729 ], [ 548131.742110710009001, 7485262.237969799898565 ], [ 547503.288716990035027, 7485507.228992990218103 ], [ 546951.278525750036351, 7485771.230792 ], [ 546468.978509249980561, 7485977.719601069577038 ], [ 545961.030371480039321, 7486152.220580110326409 ], [ 545345.340155360056087, 7486384.71030355989933 ], [ 544767.590917099965736, 7486591.201564590446651 ], [ 543485.092239659978077, 7487031.170335260219872 ], [ 542920.187694640015252, 7487263.180720839649439 ], [ 542456.839825210045092, 7487444.169361050240695 ], [ 541999.648718490032479, 7487599.163327969610691 ], [ 541351.829978380003013, 7487768.150228680111468 ], [ 540545.270078580011614, 7488001.651238979771733 ], [ 540094.551193960011005, 7488169.640105499885976 ], [ 539167.567884790012613, 7488474.128463700413704 ], [ 538761.317654639948159, 7488635.118393870070577 ], [ 538152.181785180000588, 7488925.111552310176194 ], [ 537708.299167479970492, 7489188.111205180175602 ], [ 537442.369292260031216, 7489425.109939070418477 ], [ 537240.129678840050474, 7489700.111702639609575 ], [ 537082.761445729993284, 7490032.107829850167036 ], [ 537064.939034159993753, 7490293.120942019857466 ], [ 537085.189913260051981, 7490547.619091790169477 ], [ 537123.991076610051095, 7490687.099819210357964 ], [ 537143.239344249945134, 7490712.609949960373342 ], [ 537397.371146259945817, 7490660.111204289831221 ], [ 537487.441841059946455, 7490882.609511179849505 ], [ 537654.058731580036692, 7491149.111612769775093 ], [ 537858.802059140056372, 7491415.117978409864008 ], [ 537992.999373289989308, 7491548.119324930012226 ], [ 538152.48018651001621, 7491649.118514469824731 ], [ 538299.87104315997567, 7491877.61903742980212 ], [ 538434.621193959959783, 7492137.620095389895141 ], [ 538652.561359170009382, 7492492.628104509785771 ], [ 538799.870407829992473, 7492714.619908520020545 ], [ 539039.420328530017287, 7492274.12993127014488 ], [ 539256.667791689978912, 7492496.13018405996263 ], [ 539703.578717379947193, 7492843.630788899958134 ], [ 540053.979118539951742, 7492994.638469030149281 ], [ 540455.231710409978405, 7493113.131476259790361 ], [ 540786.52025592001155, 7493232.141431320458651 ], [ 541041.429810469970107, 7493351.641833259724081 ], [ 541239.201890320051461, 7493478.130430269986391 ], [ 541373.259800240048207, 7493585.62896960042417 ], [ 541963.191630379995331, 7493283.139785929583013 ], [ 542500.679885059944354, 7493961.138607029803097 ], [ 542743.630761609994806, 7494233.640817360021174 ], [ 543082.007789839990437, 7494518.141714329831302 ], [ 543356.198679139954038, 7494663.138956059701741 ], [ 543789.260250719962642, 7494794.649844129569829 ], [ 544139.251131649944, 7494849.639782629907131 ], [ 544641.630074440035969, 7494840.648572890087962 ], [ 545175.319051780039445, 7494736.149638379923999 ], [ 545741.092215740005486, 7494688.149336840026081 ], [ 546307.75074092997238, 7494838.149286760017276 ], [ 546786.056715170037933, 7495109.162089169956744 ], [ 547188.059762930031866, 7495399.670047010295093 ], [ 547621.699969719978981, 7495652.168337520211935 ], [ 547965.698955520056188, 7495764.669661940075457 ], [ 548207.390742080053315, 7495776.170087760314345 ], [ 548481.159597750054672, 7495844.679829609580338 ], [ 548863.079289200017229, 7495925.179077940061688 ], [ 549506.212394159985706, 7496087.187914409674704 ], [ 550117.35100883000996, 7496224.190740790218115 ], [ 550607.471249419962987, 7496316.710699019953609 ], [ 551376.739154380047694, 7496434.70587014965713 ], [ 551376.73608185001649, 7496433.791175260208547 ], [ 551619.35050013998989, 7496470.708245259709656 ], [ 552052.477855409961194, 7496608.21943895984441 ], [ 552441.167965259985067, 7496771.719051790423691 ], [ 552785.109833849943243, 7496871.719957020133734 ], [ 553167.019435839960352, 7496964.73136886022985 ], [ 553873.407264049979858, 7497069.228741990402341 ], [ 554307.539024519966915, 7497121.239912189543247 ], [ 554527.538610500050709, 7496881.231944209896028 ], [ 554361.860675979987718, 7496812.242042959667742 ], [ 554189.528591600013897, 7496672.741518639959395 ], [ 554011.079331679968163, 7496591.241597959771752 ], [ 553736.679746850044467, 7496382.731079690158367 ], [ 553462.279581440030597, 7496205.730644360184669 ], [ 552666.488816019962542, 7496019.231565900146961 ], [ 552322.961759119993076, 7495989.220348490402102 ], [ 551954.149807250010781, 7495997.719214060343802 ], [ 551521.861877109971829, 7496025.721549900248647 ], [ 551375.36080701998435, 7496024.402736780233681 ], [ 551076.650700130034238, 7496021.709231699816883 ], [ 550733.099958559963852, 7495985.210589869879186 ], [ 550312.910615590051748, 7495892.210300539620221 ], [ 550019.969748529954813, 7495810.698891820386052 ], [ 549618.769633420044556, 7495685.690184440463781 ], [ 549217.759903430007398, 7495617.679179130122066 ], [ 548816.892022080020979, 7495569.179532590322196 ], [ 548396.782193950028159, 7495482.180683489888906 ], [ 547925.59855144994799, 7495364.171054489910603 ], [ 547498.701257099979557, 7495194.17018620017916 ], [ 547096.899161410052329, 7494948.160620270296931 ], [ 546821.579328609979711, 7494568.161856819875538 ], [ 546566.508490049978718, 7494423.159816980361938 ], [ 545695.309559370041825, 7494434.148953230120242 ], [ 545237.501353780040517, 7494449.160052079707384 ], [ 544277.139624880044721, 7494416.150826640427113 ], [ 543755.121623549959622, 7494304.64926781039685 ], [ 543398.137297129957005, 7494128.140172740444541 ], [ 543028.137615890009329, 7493882.139863289892673 ], [ 542747.390386529965326, 7493686.141672980040312 ], [ 542561.820394319947809, 7493458.150018610060215 ], [ 542286.889140769955702, 7493141.651626129634678 ], [ 542578.619356640032493, 7492980.651306429877877 ], [ 542636.310553809977137, 7493075.648924670182168 ], [ 542802.682014300022274, 7493278.639014470390975 ], [ 542866.689999529975466, 7493367.640603230334818 ], [ 543032.74942597001791, 7493525.639886749908328 ], [ 543249.821946040028706, 7493696.147726809605956 ], [ 543543.189538729959168, 7493866.648261900059879 ], [ 543779.078326359973289, 7493992.649916980415583 ], [ 544084.999543430050835, 7494137.151736919768155 ], [ 544428.949143290054053, 7494243.648458180017769 ], [ 544861.560681449947879, 7494285.647513809613883 ], [ 545262.211036029970273, 7494277.14960508979857 ], [ 545732.518375079962425, 7494223.65915559977293 ], [ 546208.961332999984734, 7494119.158106570132077 ], [ 546539.409910980029963, 7494060.158678470179439 ], [ 546939.900352380005643, 7494039.159448419697583 ], [ 547308.83934380998835, 7494049.681729639880359 ], [ 547812.008184600039385, 7494218.670278839766979 ], [ 548041.851294800057076, 7494395.67981312982738 ], [ 548794.838874500012025, 7494951.690788920037448 ], [ 549081.69803133001551, 7495096.689537179656327 ], [ 549476.347991509945132, 7495158.198621840216219 ], [ 549927.711291779996827, 7495130.199409529566765 ], [ 550366.470990129979327, 7495115.199292610399425 ], [ 550837.030713769956492, 7495112.720892540179193 ], [ 551372.390996049973182, 7495140.572720600292087 ], [ 552058.298123529995792, 7495176.229097790084779 ], [ 553121.107822670019232, 7495335.730401810258627 ], [ 553674.920575369964354, 7495440.742040479555726 ], [ 554222.481189709971659, 7495584.240095560438931 ], [ 554533.323906189994887, 7495685.344775210134685 ], [ 554951.794667689944617, 7495656.452342719770968 ], [ 555079.651138229994103, 7495856.180409490130842 ], [ 555169.568603049963713, 7496080.645912299863994 ], [ 555257.961555329966359, 7496120.253690180368721 ], [ 555072.269406519946642, 7496419.742752940393984 ], [ 555340.45946487004403, 7496653.75065691024065 ], [ 555500.588549330015667, 7496894.751310749910772 ], [ 555698.270653169951402, 7497002.250901469960809 ], [ 555934.658746590022929, 7497223.749905119650066 ], [ 556164.771667510038242, 7497476.759236839599907 ], [ 556452.029350040014833, 7497704.259780829772353 ], [ 557109.178366789943539, 7498140.251189099624753 ], [ 558058.292197149945423, 7498478.748251110315323 ], [ 558491.292051909957081, 7498590.749170909635723 ], [ 559000.808975919964723, 7498747.261756249703467 ], [ 560045.220694339950569, 7499053.240250290371478 ], [ 560573.88993088004645, 7499228.730333990417421 ], [ 561038.658889019978233, 7499334.229885820299387 ], [ 562216.039372049970552, 7499518.738557850010693 ], [ 562666.860106543055736, 7499551.859449970535934 ], [ 562666.860106543055736, 7498620.430423093959689 ], [ 562421.449098899960518, 7498588.759355739690363 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.4678", "objectid": "4678", "lithstrtno": "2257", "code": "A-HAd-kd", "unitname": "Wittenoom Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Thinly bedded dolomite and dolomitic shale with minor black chert shale banded iron formation and sandstone", "parentcode": "A-HAL-xkt-ci", "parentname": "Hamersley Group lower", "rocktype1": "sedimentary carbonate", "lithname1": "dolostone/dolomite", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group lower", "formation": "Wittenoom Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2597", "maxuncerty": "5", "min_age_ma": "2504", "minuncerty": null, "max_age_da": "Isotopic", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.64498565796499996, "shape_area": 0.00161211133777 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 562666.860106543055736, 7494692.319922047667205 ], [ 562430.00961092999205, 7494692.319664860144258 ], [ 562070.941096269991249, 7494625.308588610030711 ], [ 561128.430605069966987, 7494512.809020079672337 ], [ 560051.290330259944312, 7494400.798726679757237 ], [ 559647.420679530012421, 7494400.799023820087314 ], [ 559221.050658049993217, 7494378.290843970142305 ], [ 558772.240281710051931, 7494310.79051337018609 ], [ 557538.058653300045989, 7493817.278351039625704 ], [ 557246.288316729944199, 7493682.770033920183778 ], [ 556864.819337649969384, 7493525.279066280461848 ], [ 556371.181922900024801, 7493368.272165860049427 ], [ 555720.380931269959547, 7493233.758609309792519 ], [ 555136.930052940035239, 7493166.261243619956076 ], [ 554396.410372480051592, 7493121.748792300000787 ], [ 553925.148862999980338, 7493143.749152080155909 ], [ 553633.418506529997103, 7493143.748349349945784 ], [ 553296.870801819954067, 7493166.240730220451951 ], [ 552982.679487730027176, 7493143.749370129778981 ], [ 552780.738207599963062, 7493099.241545979864895 ], [ 552399.249670129967853, 7493143.741067410446703 ], [ 551636.307681920006871, 7493278.721003590151668 ], [ 551366.026483480003662, 7493247.456507329829037 ], [ 551052.80020133999642, 7493211.218328719958663 ], [ 550671.339240900008008, 7493121.721171219833195 ], [ 550534.541891410015523, 7493081.193029480054975 ], [ 550065.459032419952564, 7492942.20985712017864 ], [ 549683.977676769951358, 7492784.701064139604568 ], [ 549457.153067799983546, 7492715.703061419539154 ], [ 549167.862052430049516, 7492627.697604079730809 ], [ 549044.658509760047309, 7492599.751008120365441 ], [ 548674.150659580016509, 7492515.700941150076687 ], [ 548609.524892949964851, 7492518.292499619536102 ], [ 548113.150488939951174, 7492538.188606569543481 ], [ 547800.501640790025704, 7492572.869106560014188 ], [ 547379.936057189945132, 7492619.509876229800284 ], [ 547103.317789910011925, 7492650.180430520325899 ], [ 546676.941534420009702, 7492650.168377090245485 ], [ 546362.818985190009698, 7492582.670811150223017 ], [ 546048.651691599981859, 7492493.169389870017767 ], [ 545734.439228910021484, 7492380.660428210161626 ], [ 545353.032135299989022, 7492201.170327479951084 ], [ 544926.638237460050732, 7492066.669293380342424 ], [ 544724.722298449953087, 7491977.160089329816401 ], [ 544410.521071129944175, 7491797.668131220154464 ], [ 544278.199806150048971, 7491731.162152940407395 ], [ 544116.748927850043401, 7491902.661235259845853 ], [ 543916.811161260004155, 7491662.659460389986634 ], [ 543467.990977440029383, 7491303.657953480258584 ], [ 543288.521259670029394, 7491169.16250969003886 ], [ 543041.628388570039533, 7491034.648773539811373 ], [ 542929.420247980044223, 7490989.651189760304987 ], [ 542705.060030539985746, 7490877.161405250430107 ], [ 542547.951409470057115, 7490855.157926949672401 ], [ 542121.611326170037501, 7490675.150472099892795 ], [ 541942.050373179954477, 7490540.658418909646571 ], [ 541762.539372520055622, 7490428.650730979628861 ], [ 541605.511732809944078, 7490293.649401130154729 ], [ 541560.619127630023286, 7490159.161617719568312 ], [ 541538.098677800036967, 7490024.648979109711945 ], [ 541672.788809409947135, 7489598.16102849971503 ], [ 541740.130720659974031, 7489441.161330849863589 ], [ 541894.312351180007681, 7489210.159689630381763 ], [ 541734.628457920043729, 7489299.554097919724882 ], [ 541239.63983072002884, 7489576.641609819605947 ], [ 541044.12911024002824, 7489927.639171360060573 ], [ 540987.830442319973372, 7489984.639754460193217 ], [ 540994.19945211999584, 7490125.140481020323932 ], [ 541020.311512019950897, 7490265.149958720430732 ], [ 541071.860060309991241, 7490404.651328420266509 ], [ 541225.54120881005656, 7490626.651507309637964 ], [ 541378.810070079984143, 7490759.65119098033756 ], [ 541621.191303660045378, 7490904.649635610170662 ], [ 541850.509416379965842, 7490992.648644610308111 ], [ 542117.998944779974408, 7491067.649895650334656 ], [ 542391.501186319976114, 7491085.14929233957082 ], [ 542645.927855630056001, 7491090.149695370346308 ], [ 542881.80016316997353, 7491216.159379719756544 ], [ 543022.511018689954653, 7491374.657442820258439 ], [ 543093.419647180009633, 7491577.660029820166528 ], [ 543100.6207402900327, 7491755.660557329654694 ], [ 543146.001163249951787, 7491940.152454890310764 ], [ 543242.211323129944503, 7492092.649319870397449 ], [ 543420.559457879979163, 7492167.660537029616535 ], [ 543815.639348490047269, 7492181.652319019660354 ], [ 543948.009315419942141, 7492082.15929201990366 ], [ 544164.749375049956143, 7492195.661123299971223 ], [ 544311.508540580049157, 7492303.159224379807711 ], [ 544713.190917499945499, 7492510.65921042021364 ], [ 545414.140461780014448, 7492806.169576980173588 ], [ 545739.079724060022272, 7492931.657495119608939 ], [ 546146.630921929958276, 7493050.671805170364678 ], [ 546566.369162349961698, 7493067.16939007025212 ], [ 547017.769695810042322, 7493033.168757920153439 ], [ 547411.570846550050192, 7492935.181099180132151 ], [ 547824.27998191001825, 7492786.679622329771519 ], [ 548154.380444790003821, 7492676.690392710268497 ], [ 548555.108524280018173, 7492681.192445100285113 ], [ 548956.0910621000221, 7492755.198269600048661 ], [ 549427.352509089978412, 7492886.201835599727929 ], [ 549924.230084380018525, 7493068.211211860179901 ], [ 550383.109014970017597, 7493275.710593770258129 ], [ 550765.358819589950144, 7493413.720309609547257 ], [ 551089.650060679996386, 7493424.718791520223022 ], [ 551366.617026919964701, 7493423.055953639559448 ], [ 551420.399801210034639, 7493422.732412000186741 ], [ 552120.02944087004289, 7493450.728757919743657 ], [ 552634.977255600038916, 7493409.730852910317481 ], [ 552724.001571660046466, 7493409.24016897007823 ], [ 552895.541484309942462, 7493376.728750480338931 ], [ 553270.598975960048847, 7493355.742238880135119 ], [ 553582.358255979954265, 7493379.240251369774342 ], [ 553888.03141948999837, 7493460.250612050294876 ], [ 554250.857786769978702, 7493534.748806440271437 ], [ 554708.987234840053134, 7493583.250167059712112 ], [ 554988.728318589972332, 7493568.758602280169725 ], [ 555427.500493929954246, 7493560.259708169847727 ], [ 555822.108224330004305, 7493634.262409400194883 ], [ 556185.178019879967906, 7493759.771520050242543 ], [ 556452.998445700039156, 7493898.268556670285761 ], [ 556931.350873869960196, 7494207.778886949643493 ], [ 557243.719799650018103, 7494358.769946710206568 ], [ 557645.189484709990211, 7494528.279138370417058 ], [ 557957.259456550003961, 7494615.783141110092402 ], [ 558352.130415069987066, 7494747.279625999741256 ], [ 558785.421642940025777, 7494929.281944960355759 ], [ 559352.750818699947558, 7495212.791316449642181 ], [ 559741.432132430025376, 7495363.28972162026912 ], [ 560097.570766930002719, 7495361.79068183992058 ], [ 560402.570722269942053, 7495308.800442470237613 ], [ 561172.320291019976139, 7495368.299701560288668 ], [ 561529.069343350012787, 7495500.300697609782219 ], [ 562019.820314730051905, 7495720.302675129845738 ], [ 562491.400376350036822, 7495921.300782550126314 ], [ 562666.860106543055736, 7495992.320895091630518 ], [ 562666.860106543055736, 7494692.319922047667205 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.16189", "objectid": "16191", "lithstrtno": "4468", "code": "A-b-PRK", "unitname": "Rocklea Inlier greenstones", "gswastatus": "Informal", "rank": "Group", "descriptn": "Basaltic and andesitic flows and associated volcaniclastic rocks; metamorphosed", "parentcode": "TOL", "parentname": "_Top Of Litho-Stratigraphic Order", "rocktype1": "igneous mafic volcanic", "lithname1": null, "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": null, "group_": "Rocklea Inlier greenstones", "subgroup": null, "formation": null, "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": "Pilbara Craton", "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": null, "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": "Pilbara Craton Rocklea Inlier", "events": "Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma)", "agefrom": "Paleoarchean", "ageto": "Paleoarchean", "max_age_ma": "3530", "maxuncerty": null, "min_age_ma": "3225", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.20168328405, "shape_area": 0.000883001818524 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 539598.278405910008587, 7477765.570249490439892 ], [ 540221.411660689976998, 7477554.089975790120661 ], [ 540373.950899419956841, 7477483.589004130102694 ], [ 540475.649919499992393, 7477406.589215509593487 ], [ 540742.250839410000481, 7477011.579309450462461 ], [ 540971.020666989963502, 7476877.079898719675839 ], [ 541098.258586799958721, 7476864.090209979563951 ], [ 541244.510280070011504, 7476832.08961298968643 ], [ 541320.760819380055182, 7476749.099189889617264 ], [ 541371.310222759959288, 7476539.089240180328488 ], [ 541358.460613009985536, 7476431.070752290077507 ], [ 541224.689490749966353, 7476335.559219219721854 ], [ 540855.758395900018513, 7476343.073021410033107 ], [ 540416.950512130046263, 7476414.050173169933259 ], [ 539971.739809270016849, 7476466.041327700018883 ], [ 539628.200490779941902, 7476422.509449950419366 ], [ 539354.439745009993203, 7476289.51938187982887 ], [ 539061.571961560053751, 7476092.990216890349984 ], [ 538902.360836809966713, 7475953.480250170454383 ], [ 538685.870556570007466, 7475788.449010640382767 ], [ 538418.540455979993567, 7475706.450883599929512 ], [ 538145.050474349991418, 7475719.950655439868569 ], [ 537960.668860669946298, 7475758.440805559977889 ], [ 537846.038772220024839, 7475701.440673939883709 ], [ 537756.860391980037093, 7475593.430352349765599 ], [ 537718.481844619964249, 7475459.920584879815578 ], [ 537590.931406370014884, 7475224.89968893956393 ], [ 537437.907544029993005, 7474983.378747959621251 ], [ 537265.918872429989278, 7474786.870019759982824 ], [ 537074.909987590042874, 7474666.369350180029869 ], [ 536896.727803039946593, 7474653.860180609859526 ], [ 536731.528520839987323, 7474756.358776929788291 ], [ 536610.959037579945289, 7474972.858817160129547 ], [ 536585.899888799991459, 7475227.370493769645691 ], [ 536630.968454889953136, 7475609.3925636196509 ], [ 536625.313863039948046, 7476092.907453309744596 ], [ 536530.161248450051062, 7476315.910808119922876 ], [ 536428.58983392000664, 7476462.408203760161996 ], [ 536346.148593020043336, 7476640.91941266041249 ], [ 536333.737370750051923, 7476869.918774610385299 ], [ 536442.228769190027378, 7477079.928681880235672 ], [ 536728.740673499996774, 7477282.939162010326982 ], [ 537110.540420160046779, 7477389.972849680110812 ], [ 537492.291658040019684, 7477446.489446770399809 ], [ 537842.241106539964676, 7477508.990524750202894 ], [ 538204.880423530004919, 7477514.510608370415866 ], [ 538503.750118679949082, 7477475.521246880292892 ], [ 538745.520277449977584, 7477462.028324750252068 ], [ 538866.519821880036034, 7477563.541013290174305 ], [ 538822.509455760009587, 7477964.55079491995275 ], [ 538511.117701629991643, 7478182.040280549786985 ], [ 538135.950043509947136, 7478240.038715160451829 ], [ 537576.419097010046244, 7478477.022458010353148 ], [ 537188.561031299992464, 7478548.010379119776189 ], [ 536914.96944060001988, 7478535.999609249643981 ], [ 536520.470750760054216, 7478441.481110479682684 ], [ 536208.67089120997116, 7478353.469969959929585 ], [ 535973.359353450010531, 7478417.470643930137157 ], [ 535865.45077879994642, 7478563.971989460289478 ], [ 535852.94961626001168, 7478761.467817880213261 ], [ 535967.838253290043212, 7479002.981765929609537 ], [ 536184.381576010026038, 7479244.500811309553683 ], [ 536413.601945389993489, 7479358.501508070155978 ], [ 536687.148999179946259, 7479376.511235799640417 ], [ 537354.912620489951223, 7479273.029996830038726 ], [ 537615.490931609994732, 7479126.029186660423875 ], [ 538028.760317889973521, 7478915.060221480205655 ], [ 538346.578703250037506, 7478761.558315370231867 ], [ 538613.512336850049905, 7478595.068732789717615 ], [ 539045.630967270000838, 7478282.568591229617596 ], [ 539166.268936129985377, 7478154.568510370329022 ], [ 539312.390287859947421, 7477982.568873159587383 ], [ 539598.278405910008587, 7477765.570249490439892 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.14340", "objectid": "14341", "lithstrtno": "4113", "code": "P_-HAb-cib", "unitname": "Brockman Iron Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Banded iron-formation chert mudstone and siltstone; metamorphosed", "parentcode": "P_-HAU-xci-f", "parentname": "Hamersley Group upper", "rocktype1": "sedimentary other chemical or biochemical", "lithname1": "iron formation", "qualifier1": "banded", "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group upper", "formation": "Brockman Iron Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Paleoproterozoic", "ageto": "Paleoproterozoic", "max_age_ma": "2494", "maxuncerty": null, "min_age_ma": "2451", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 5.3081562065399996, "shape_area": 0.057166266027 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 547817.521218489971943, 7517927.658131849952042 ], [ 547778.850409999955446, 7517819.650623749941587 ], [ 547740.041384069947526, 7517679.64995289966464 ], [ 547777.708135260036215, 7517584.151709419675171 ], [ 547904.221216939971782, 7517443.151080770418048 ], [ 548113.498294639983214, 7517321.138408009894192 ], [ 548233.58887604996562, 7517167.641332849860191 ], [ 548226.580347919953056, 7517034.140241320244968 ], [ 548149.559577399981208, 7516888.138962370343506 ], [ 548117.548875179956667, 7516850.140485050156713 ], [ 547875.430357409990393, 7516749.648120380006731 ], [ 547595.460421300027519, 7516706.64884824026376 ], [ 547346.939772429992445, 7516606.149222410283983 ], [ 547104.427803089958616, 7516423.159972 ], [ 546785.549659520038404, 7516240.150772740133107 ], [ 546479.040056189987808, 7515980.647956600412726 ], [ 546357.157507620053366, 7515752.148936149664223 ], [ 546311.360664939973503, 7515485.160285499878228 ], [ 546176.478632229962386, 7515206.160606130026281 ], [ 546023.718619870021939, 7515187.658571889624 ], [ 545769.668800889980048, 7515246.159009889699519 ], [ 545521.6189673099434, 7515241.149009400047362 ], [ 545260.532290859962814, 7515172.657789319753647 ], [ 544514.33162234001793, 7514718.658802700228989 ], [ 544226.390946530038491, 7514363.67160225007683 ], [ 544059.151025839964859, 7513963.659865760244429 ], [ 544019.521404400002211, 7513652.158787080086768 ], [ 544043.070209590019658, 7513263.661248640157282 ], [ 544110.92760646995157, 7512830.148890050128102 ], [ 544083.619118619943038, 7512436.151478759944439 ], [ 543999.971377330017276, 7512226.148398630321026 ], [ 543662.490462539950386, 7512139.149124950170517 ], [ 543333.622250700020231, 7512333.149206009693444 ], [ 542771.040110750007443, 7512583.159594760276377 ], [ 542052.241269630030729, 7512989.160135299898684 ], [ 541802.24961754004471, 7513020.67063379008323 ], [ 541708.510433039977215, 7512864.170864880084991 ], [ 541927.239561259979382, 7512614.179933479987085 ], [ 542270.978754749987274, 7512270.668791599571705 ], [ 542677.290337580023333, 7511770.661792299710214 ], [ 542677.702807420049794, 7511769.217952099628747 ], [ 542802.268583850003779, 7511333.159598980098963 ], [ 542927.261376110021956, 7510676.660736439749599 ], [ 542927.2699991799891, 7509989.150851080194116 ], [ 542864.719560010009445, 7509239.16115100029856 ], [ 542677.241687429952435, 7509082.66245721001178 ], [ 542458.470874110003933, 7508957.660044039599597 ], [ 542239.658127030008473, 7508645.160752990283072 ], [ 542145.908449199981987, 7508332.659268240444362 ], [ 542208.389240680029616, 7507707.658948659896851 ], [ 542083.358566339942627, 7507145.159036980010569 ], [ 541895.868716700002551, 7506645.16197604034096 ], [ 541614.601450589951128, 7506144.651670889928937 ], [ 541145.760131699964404, 7505676.148550059646368 ], [ 540770.792363699991256, 7505332.151711080223322 ], [ 540145.700841389945708, 7504988.647760559804738 ], [ 539676.888922760030255, 7504613.650578799657524 ], [ 539051.811228069942445, 7504394.649407530203462 ], [ 538364.259979589958675, 7504113.660114450380206 ], [ 537895.510879740002565, 7503957.148059849627316 ], [ 536989.179971029981971, 7504051.152139419689775 ], [ 536676.589791630045511, 7504113.647556249983609 ], [ 536270.368330019991845, 7504082.142233549617231 ], [ 535926.551618380006403, 7503894.651935909874737 ], [ 535676.530275200027972, 7503519.638427189551294 ], [ 535551.54326118004974, 7503144.641235849820077 ], [ 535239.000016969977878, 7502707.138429320417345 ], [ 534926.429906480014324, 7502457.130986009724438 ], [ 534488.93889664998278, 7502207.120117579586804 ], [ 533613.830401089973748, 7502019.621294899843633 ], [ 533020.02924736996647, 7501925.602211659774184 ], [ 532551.200599230010994, 7501832.098164609633386 ], [ 532401.508138290024363, 7501876.600775930099189 ], [ 532130.460120560019277, 7502165.598587240092456 ], [ 531832.36921708995942, 7502050.601514429785311 ], [ 530707.279987629968673, 7501832.090665870346129 ], [ 529800.969874809961766, 7501832.06981464009732 ], [ 529113.411460499977693, 7501800.570461129769683 ], [ 528644.579739370034076, 7501769.560601740144193 ], [ 528269.54911084997002, 7501675.549466320313513 ], [ 527895.380413289996795, 7501600.550623670220375 ], [ 528055.80054874997586, 7501423.059336570091546 ], [ 528302.37962347001303, 7501116.061090369708836 ], [ 528009.380023929988965, 7501104.558906380087137 ], [ 526591.381750919972546, 7501049.041682800278068 ], [ 525518.201257530017756, 7500983.103860430419445 ], [ 524403.068835210055113, 7500914.508251939900219 ], [ 523814.809190919972025, 7500861.501062080264091 ], [ 523576.890120199997909, 7501033.501141640357673 ], [ 523090.591946310014464, 7501408.48978086002171 ], [ 522373.881059199979063, 7501209.489694490097463 ], [ 521543.439776370010804, 7501077.536889360286295 ], [ 520473.579158, 7500907.472074420191348 ], [ 519976.910060780006461, 7500799.467891490086913 ], [ 519631.441732620005496, 7500691.461144080385566 ], [ 519372.288886139984243, 7500431.949672809801996 ], [ 519069.999476659984794, 7500108.460693730041385 ], [ 518839.308721749985125, 7499930.939910479821265 ], [ 518912.270378570014145, 7499695.460613200441003 ], [ 518636.630131700017955, 7499603.948979339562356 ], [ 518293.999550679989625, 7499579.442325529642403 ], [ 517682.119090339983813, 7499358.941561980172992 ], [ 516752.109791999973822, 7498820.421163430437446 ], [ 516399.80081337998854, 7498690.920674299821258 ], [ 516132.401962460018694, 7498877.912625970318913 ], [ 516084.351389759976882, 7498918.921142539940774 ], [ 515937.860309560026508, 7499043.41833767015487 ], [ 515699.650689409987535, 7498844.919029789976776 ], [ 515687.31005864002509, 7498836.682474304921925 ], [ 515687.31005864002509, 7500678.361180524341762 ], [ 516189.159643939987291, 7500778.418782180175185 ], [ 516703.129406480002217, 7500900.92979499977082 ], [ 517168.148241000017151, 7500949.939010259695351 ], [ 517608.669631719996687, 7501023.44241841044277 ], [ 517828.959920339984819, 7501072.440090700052679 ], [ 517978.502588119998109, 7501117.440985379740596 ], [ 517873.439548989990726, 7501235.941138340160251 ], [ 518389.210392989974935, 7501379.9494513804093 ], [ 519121.281781309982762, 7501534.949975430034101 ], [ 519636.90140195999993, 7501633.958211430348456 ], [ 520343.178845660004299, 7501712.978961739689112 ], [ 520737.772135290026199, 7501723.97868109960109 ], [ 521104.139196379983332, 7501751.480945750139654 ], [ 522422.251586830010638, 7501924.491564869880676 ], [ 522521.981803109985776, 7501847.499487180262804 ], [ 523447.779692990006879, 7502091.009804819710553 ], [ 524294.111731779994443, 7502249.520968340337276 ], [ 525246.218477030051872, 7502408.520923149771988 ], [ 526700.850970900035463, 7502355.539378190413117 ], [ 527190.810228800051846, 7502380.041910080239177 ], [ 527002.751236020005308, 7502588.051300699822605 ], [ 527233.139290379942395, 7502607.06084899045527 ], [ 527759.809933159966022, 7502688.05957665015012 ], [ 528266.309425930026919, 7502728.569669179618359 ], [ 529076.73118856002111, 7502911.078795489855111 ], [ 529603.48162614996545, 7503154.079038679599762 ], [ 530292.318035469972529, 7503316.099201279692352 ], [ 530852.970184960053302, 7503491.101557740010321 ], [ 531092.210039410041645, 7503242.110120669938624 ], [ 531329.338967559975572, 7503360.611643849872053 ], [ 531858.340914499945939, 7503651.619851970113814 ], [ 532466.618771139997989, 7503969.120871730148792 ], [ 533233.651434050058015, 7504312.631727330386639 ], [ 533603.881771669955924, 7504709.627261539921165 ], [ 534027.099943720037118, 7504974.140041249804199 ], [ 534635.430171989952214, 7505317.651213020086288 ], [ 535217.291988059994765, 7505503.150627369992435 ], [ 536169.390165189979598, 7505661.661419860087335 ], [ 537068.65092739998363, 7505741.16039321012795 ], [ 538205.909480990027077, 7505952.669931390322745 ], [ 539052.200798930018209, 7506296.660687520168722 ], [ 539607.670671500032768, 7506746.159959820099175 ], [ 539925.049874530057423, 7507090.157736930064857 ], [ 540348.211415769997984, 7507671.659639820456505 ], [ 540665.58149836002849, 7508571.170081409625709 ], [ 540612.738463919959031, 7509073.658652099780738 ], [ 540480.470579440006986, 7509232.170064670033753 ], [ 540295.36945720994845, 7509391.167218109592795 ], [ 540057.371062460006215, 7509681.668901289813221 ], [ 539898.727658509975299, 7510184.68239211011678 ], [ 539660.669795469962992, 7510607.68016923032701 ], [ 539422.657859849976376, 7510951.691127830184996 ], [ 539052.388189609977417, 7511268.680436610244215 ], [ 538523.479636730044149, 7511559.700316119939089 ], [ 537981.213230650057085, 7511781.517565599642694 ], [ 537941.651521719992161, 7511797.699529309757054 ], [ 537492.028700380004011, 7511930.201284980401397 ], [ 536513.520092790015042, 7512168.211254799738526 ], [ 535296.879862120025791, 7512379.720972119830549 ], [ 534344.770069499965757, 7512432.717863479629159 ], [ 533789.409573909942992, 7512353.23117852024734 ], [ 533551.350649280007929, 7512221.220540439710021 ], [ 533233.978675110032782, 7511983.23097356967628 ], [ 532705.021947950008325, 7511824.22030740045011 ], [ 532641.346885110018775, 7511793.761994309723377 ], [ 532096.70017128996551, 7511533.220152160152793 ], [ 531118.128920490038581, 7511295.218129090033472 ], [ 530324.61938511999324, 7511057.199628870002925 ], [ 529451.790100479964167, 7510766.1697186101228 ], [ 528658.280241169966757, 7510422.639340680092573 ], [ 527864.742193619953468, 7510184.620799530297518 ], [ 527124.119997350033373, 7509920.100146099925041 ], [ 526119.051335679949261, 7509602.579176349565387 ], [ 525140.43911667005159, 7509496.570468929596245 ], [ 524456.689746230025776, 7509487.559559389948845 ], [ 524151.169281380018219, 7509438.051605530083179 ], [ 522591.621478160028346, 7509122.02742169983685 ], [ 522451.571022430027369, 7509097.030138160102069 ], [ 522324.340485139982775, 7509085.020956199616194 ], [ 522005.951244029973168, 7508998.029494729824364 ], [ 521090.551235229999293, 7509073.010523959994316 ], [ 520052.928003809996881, 7508862.000883810222149 ], [ 519619.891624330019113, 7508736.979432850144804 ], [ 519206.109573089983314, 7508643.988675179891288 ], [ 518760.529426419991069, 7508556.979971840046346 ], [ 518142.959838100010529, 7508401.480365029536188 ], [ 517735.199112029979005, 7508250.968857959844172 ], [ 516913.610774539993145, 7507994.460242169909179 ], [ 516143.467740970023442, 7507858.440086290240288 ], [ 515687.31005864002509, 7507785.320344283245504 ], [ 515687.31005864002509, 7508702.941175408661366 ], [ 516068.361104719981086, 7508702.950624800287187 ], [ 516500.239082209998742, 7508810.949452149681747 ], [ 516932.129444469988812, 7508983.448731999844313 ], [ 517364.010314400016796, 7509199.458663940429688 ], [ 518067.749226149986498, 7509452.469257179647684 ], [ 518912.777727360022254, 7509330.469264090061188 ], [ 519307.440221610013396, 7509273.489978609606624 ], [ 519868.870076789986342, 7509350.490000429563224 ], [ 520005.170785209978931, 7509373.567330420017242 ], [ 520906.006727360014338, 7509526.057665060274303 ], [ 521402.089786909986287, 7509610.008999690413475 ], [ 521858.9592969599762, 7509706.585036410018802 ], [ 522935.251059490023181, 7509934.04007126018405 ], [ 523323.940627629985102, 7510193.041663180105388 ], [ 523647.860599100007676, 7510430.539885059930384 ], [ 523991.429057269997429, 7510603.559072679840028 ], [ 524162.859050359984394, 7510539.051478800363839 ], [ 524175.581662399985362, 7510552.060833330266178 ], [ 524296.708865039981902, 7510608.561523400247097 ], [ 524449.939836779958569, 7510735.050195139832795 ], [ 524628.93126082001254, 7510931.06005815975368 ], [ 524788.12910954002291, 7510968.56984443962574 ], [ 524991.771459970041178, 7510993.080950760282576 ], [ 525201.961775040021166, 7511074.579809789545834 ], [ 525355.470764999976382, 7511252.092282770201564 ], [ 525541.539301850018091, 7511594.592479820363224 ], [ 525715.241239189985208, 7511806.885280930437148 ], [ 525733.400640110019594, 7511829.078617500141263 ], [ 526007.827766750007868, 7512012.100629179738462 ], [ 526364.729590249946341, 7512169.600267699919641 ], [ 526765.851011640042998, 7512269.119919019751251 ], [ 527179.358417070005089, 7512292.118612400256097 ], [ 527573.720331709948368, 7512290.140388590283692 ], [ 528019.00225657003466, 7512313.15074963029474 ], [ 528381.821448970003985, 7512374.648699250072241 ], [ 528725.79111038998235, 7512474.67035620007664 ], [ 529082.381066789967008, 7512568.190159110352397 ], [ 529541.3494360599434, 7512788.690159239806235 ], [ 529892.520336349960417, 7513079.698101550340652 ], [ 530097.659862149972469, 7513415.708956269547343 ], [ 530130.411366789950989, 7513612.709768359549344 ], [ 530099.42050291004125, 7513784.71054114960134 ], [ 529979.421387149952352, 7513951.220812080428004 ], [ 529795.92030961997807, 7514143.20673255994916 ], [ 529701.409157510031946, 7514334.18831204995513 ], [ 529689.571899089962244, 7514437.698042769916356 ], [ 529694.629846600000747, 7514468.700406789779663 ], [ 529707.720653429976664, 7514496.70929556991905 ], [ 529740.341517299995758, 7514528.711873450316489 ], [ 529819.729662840021774, 7514562.701285749673843 ], [ 530148.117918489966542, 7514620.220253130421042 ], [ 530218.74973763001617, 7514643.220442649908364 ], [ 530423.070899500045925, 7514734.219831620343029 ], [ 530503.900893770041876, 7514762.228310209698975 ], [ 530647.470723689999431, 7514789.7284668199718 ], [ 530791.370318740024231, 7514798.746725520119071 ], [ 530826.129318200051785, 7514807.238458000123501 ], [ 530852.188056100043468, 7514823.740399150177836 ], [ 530865.880872169975191, 7514850.738035580143332 ], [ 530867.692459349986166, 7514885.237596809864044 ], [ 530860.79761279001832, 7514922.239439809694886 ], [ 530830.258743879967369, 7514986.238437609747052 ], [ 530748.808856319985352, 7515076.739342969842255 ], [ 530533.909162009949796, 7515253.239404910244048 ], [ 530493.648228749982081, 7515311.231420080177486 ], [ 530485.088802239974029, 7515344.741084960289299 ], [ 530488.418434530030936, 7515419.230454670265317 ], [ 530504.158913849969395, 7515475.23132895026356 ], [ 530527.559888079995289, 7515526.730163279920816 ], [ 530636.218579089967534, 7515653.23923297971487 ], [ 530720.108391609974205, 7515894.75172952003777 ], [ 530702.417887600022368, 7516200.239313459955156 ], [ 530564.126742949942127, 7516525.728350619785488 ], [ 530476.311610009986907, 7516787.22830564994365 ], [ 530490.178360010031611, 7517022.228644349612296 ], [ 530656.489814030006528, 7517225.23943976033479 ], [ 530968.829944240045734, 7517376.250337759964168 ], [ 531210.670135739957914, 7517406.761843520216644 ], [ 531515.108686399995349, 7517239.752154059708118 ], [ 531693.101855669985525, 7517225.759357900358737 ], [ 531769.671595370047726, 7517282.750366459600627 ], [ 531796.090702429995872, 7517486.249421309679747 ], [ 531758.64920034003444, 7517632.750212909653783 ], [ 532179.960140989976935, 7517967.761602830141783 ], [ 532549.079240350052714, 7518029.75042087957263 ], [ 533038.981324749998748, 7518065.251714630052447 ], [ 533713.010928750038147, 7518061.748432110063732 ], [ 534393.389142140047625, 7518045.250069919973612 ], [ 535379.197512720013037, 7518065.239417679607868 ], [ 536415.309916740050539, 7517970.239478410221636 ], [ 536885.82106514996849, 7517948.739742060191929 ], [ 537267.679878070019186, 7518016.729045360349119 ], [ 537485.079137690016069, 7518257.230500830337405 ], [ 537504.891110530006699, 7518403.739562990143895 ], [ 537588.630172290024348, 7518625.729829389601946 ], [ 537913.880765930050984, 7518821.720027790404856 ], [ 538251.419350809999742, 7518934.229637529700994 ], [ 538569.997983230045065, 7519059.732398999854922 ], [ 538907.860808350029401, 7519223.218876370228827 ], [ 539175.801647959975526, 7519406.719772949814796 ], [ 539322.797352000023238, 7519564.718835569918156 ], [ 539374.321725239977241, 7519691.720033509656787 ], [ 539413.251687229960226, 7519863.731583850458264 ], [ 539426.668668980011716, 7519997.231947139836848 ], [ 539427.008212720043957, 7520072.729762 ], [ 539614.67884160997346, 7520396.718216490000486 ], [ 539833.450501719955355, 7520552.719107920303941 ], [ 540302.252228950033896, 7520771.719968450255692 ], [ 540677.271513910032809, 7520865.219127329997718 ], [ 541052.321444040047936, 7520834.207481199875474 ], [ 541521.067888260004111, 7520552.710816349834204 ], [ 541896.109705229988322, 7520302.71127125993371 ], [ 542521.160122800036334, 7520084.202810940332711 ], [ 543021.179025089950301, 7520021.20073467027396 ], [ 543583.748000220046379, 7519990.189772630110383 ], [ 544083.791262720013037, 7519740.191862120293081 ], [ 544646.311593209975399, 7519490.192598029971123 ], [ 545052.591250750003383, 7519396.201453859917819 ], [ 545771.421882549999282, 7519333.67895373981446 ], [ 546333.978435499942861, 7519208.680190100334585 ], [ 546740.211962820030749, 7519052.669073389843106 ], [ 547115.298340609995648, 7518833.660968529991806 ], [ 547459.039317650021985, 7518552.670614539645612 ], [ 547805.601275980006903, 7518086.660438559949398 ], [ 547817.848904539947398, 7517997.657741430215538 ], [ 547817.521218489971943, 7517927.658131849952042 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.5822", "objectid": "5822", "lithstrtno": "2219", "code": "A-FO-od", "unitname": "Fortescue Group", "gswastatus": "Informal", "rank": "Formation", "descriptn": "Dolerite dyke or sill", "parentcode": "A-FO-xb-s", "parentname": "Fortescue Group", "rocktype1": "igneous mafic intrusive", "lithname1": "dolerite", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": null, "formation": null, "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": null, "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma); Fortescue Rifting Event (2775 - 2752 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2775", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.262641295838, "shape_area": 0.00058416833791699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 550240.370830929954536, 7509051.65035855025053 ], [ 550052.798911349964328, 7508832.651493079960346 ], [ 549896.550455349963158, 7508895.15027519967407 ], [ 549896.549101150012575, 7509364.150753700174391 ], [ 550209.048160879989155, 7509926.638127829879522 ], [ 550490.398612090037204, 7510332.630386269651353 ], [ 550990.47109497000929, 7510958.141390670090914 ], [ 551426.945709530031309, 7511423.715034839697182 ], [ 551459.209571829997003, 7511458.12822884041816 ], [ 551865.528648840030655, 7511801.630576659925282 ], [ 552396.779262859956361, 7512114.119234059937298 ], [ 552740.619233850040473, 7512270.632029250264168 ], [ 553209.36836562003009, 7512520.631152370013297 ], [ 553924.989553560037166, 7512931.139786940068007 ], [ 554070.888887600041926, 7513056.1293233204633 ], [ 554224.009517809958197, 7513157.14075134973973 ], [ 554370.692080090055242, 7513239.130039299838245 ], [ 554612.761223490000702, 7513339.63861539028585 ], [ 555211.510252650012262, 7513533.640483819879591 ], [ 555568.271343840053305, 7513672.151614439673722 ], [ 555861.708545739995316, 7513861.149782869964838 ], [ 556168.720058580045588, 7514216.149762759916484 ], [ 556329.411386069958098, 7514578.14968691021204 ], [ 556395.041666649980471, 7515004.150383680127561 ], [ 556354.478421580046415, 7515825.140343310311437 ], [ 556375.269657119992189, 7516181.652402970008552 ], [ 556409.019834719947539, 7516588.638416309840977 ], [ 556467.830703489948064, 7516919.140610580332577 ], [ 556545.5604096299503, 7517218.148839759640396 ], [ 556772.271008339943364, 7517865.161165599711239 ], [ 556897.251721439999528, 7518396.199569020420313 ], [ 556834.771384830004536, 7518802.719413139857352 ], [ 556772.278894940041937, 7519146.218413719907403 ], [ 557022.249313559965231, 7519271.240688440389931 ], [ 557209.760103469947353, 7519052.739931610412896 ], [ 557303.570084349950776, 7518646.232337079942226 ], [ 557334.819321669987403, 7518302.708508649840951 ], [ 557334.830827519996092, 7517865.197480149567127 ], [ 557252.092862259945832, 7517341.659371820278466 ], [ 557193.838800059980713, 7517125.668676010333002 ], [ 557147.897687020013109, 7516833.162529920227826 ], [ 557050.729050599969923, 7516470.669594380073249 ], [ 556786.110028609982692, 7515657.651135619729757 ], [ 556783.890439269947819, 7515205.648697529919446 ], [ 556800.971243790001608, 7514772.646481709554791 ], [ 556805.361583970021456, 7514365.149901020340621 ], [ 556714.540975130046718, 7513990.148112979717553 ], [ 556509.700201389961876, 7513717.650047839619219 ], [ 555884.449980839970522, 7513301.148592280223966 ], [ 555546.509203040041029, 7513112.150644919835031 ], [ 554705.497970039956272, 7512779.141034910455346 ], [ 554419.131219440023415, 7512736.141921159811318 ], [ 553771.92165458004456, 7512364.128684209659696 ], [ 553084.359125780058093, 7512083.121290050446987 ], [ 552490.528776980005205, 7511676.631063279695809 ], [ 552053.031475730007514, 7511270.629288829863071 ], [ 551521.729125880054198, 7510832.627482789568603 ], [ 551424.608781549963169, 7510724.136291139759123 ], [ 550990.458773490041494, 7510239.13016343023628 ], [ 550646.628642339957878, 7509707.641543529927731 ], [ 550240.370830929954536, 7509051.65035855025053 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.4676", "objectid": "4676", "lithstrtno": "2219", "code": "A-FO-od", "unitname": "Fortescue Group", "gswastatus": "Informal", "rank": "Formation", "descriptn": "Dolerite dyke or sill", "parentcode": "A-FO-xb-s", "parentname": "Fortescue Group", "rocktype1": "igneous mafic intrusive", "lithname1": "dolerite", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": null, "formation": null, "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": null, "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma); Fortescue Rifting Event (2775 - 2752 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2775", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.36587919511799999, "shape_area": 0.0010264174193700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 554834.608359670033678, 7521271.771419700235128 ], [ 554490.839493039995432, 7521115.259799200110137 ], [ 553990.800218899967149, 7520927.738220330327749 ], [ 553678.270213259966113, 7520896.729390090331435 ], [ 553303.249616930028424, 7520834.22156201954931 ], [ 553146.990613440051675, 7520646.717184250243008 ], [ 553115.749627399956807, 7520427.709148810245097 ], [ 553271.979911400005221, 7520177.701487329788506 ], [ 553990.791554949944839, 7519927.697815929539502 ], [ 554584.581370970001444, 7519677.698691800236702 ], [ 554834.590492289979011, 7519521.198743339627981 ], [ 554959.590303609962575, 7519302.710580710321665 ], [ 554990.890518759959377, 7518802.678673019632697 ], [ 554897.088812969974242, 7518396.171608179807663 ], [ 554824.139225039980374, 7517622.140910509973764 ], [ 554860.818122409982607, 7517322.630331659689546 ], [ 554890.961307900026441, 7516972.630977650173008 ], [ 554933.830054279998876, 7516622.139660909771919 ], [ 554951.438217940041795, 7516316.639842939563096 ], [ 554930.360569710028358, 7515909.641129069961607 ], [ 554814.480289179948159, 7515610.641654879786074 ], [ 554539.221081939991564, 7515236.639436399564147 ], [ 554181.489136890042573, 7514895.140189480036497 ], [ 553824.052093980018981, 7514629.628393420018256 ], [ 553383.760596489999443, 7514320.130556900054216 ], [ 552937.390739509952255, 7514068.127719609998167 ], [ 552484.819579840055667, 7513847.627401660196483 ], [ 552064.388414149987511, 7513691.120811220258474 ], [ 551567.762133099953644, 7513579.118968450464308 ], [ 550950.400427169981413, 7513461.621362959966063 ], [ 550173.499784040031955, 7513255.62858837004751 ], [ 549772.058370289974846, 7513079.628066340461373 ], [ 549472.106614929973148, 7512864.628942149691284 ], [ 549266.988626049947925, 7512528.631090340204537 ], [ 549017.801531590055674, 7512281.621161259710789 ], [ 548736.970398409990594, 7512073.130470720119774 ], [ 548481.851744340034202, 7511915.631002140231431 ], [ 548201.349203830002807, 7511770.629450149834156 ], [ 548178.131280350033194, 7511752.991772890090942 ], [ 548009.819583300035447, 7511625.129985979758203 ], [ 547932.950905930018052, 7511504.638110539875925 ], [ 547901.03905262995977, 7511473.128256909549236 ], [ 547817.780032480019145, 7511359.139636830426753 ], [ 547988.058195890043862, 7511059.142060450278223 ], [ 547885.330302570015192, 7510849.639051630161703 ], [ 547833.519514949992299, 7510658.638555710203946 ], [ 547768.500521330046467, 7510360.139111110009253 ], [ 547274.148572140024044, 7510712.640855640172958 ], [ 547275.26059381000232, 7510942.138586919754744 ], [ 547302.46016450994648, 7511311.131156819872558 ], [ 547367.169919079984538, 7511546.138635899871588 ], [ 547514.270673359977081, 7511723.630796080455184 ], [ 547554.751736809965223, 7511754.929449140094221 ], [ 547661.070914759999141, 7511837.131026280112565 ], [ 547731.88949681003578, 7512021.631898799911141 ], [ 547681.898447870044038, 7512200.139545659534633 ], [ 547753.10020510002505, 7512460.640449609607458 ], [ 548417.859357360051945, 7513163.629739440046251 ], [ 548749.55001840996556, 7513371.639964249916375 ], [ 549189.058551419992, 7513509.130647470243275 ], [ 549959.821321579976939, 7513778.61910889018327 ], [ 550405.600844520027749, 7513903.620661280117929 ], [ 550876.81927535997238, 7514047.619703330099583 ], [ 551850.951339580002241, 7514271.12161788996309 ], [ 552678.158572930027731, 7514375.1200912296772 ], [ 553086.078856399981305, 7514570.130195720121264 ], [ 553373.090318550006486, 7514746.630016029812396 ], [ 553666.789511539973319, 7514980.630683939903975 ], [ 553941.429692870005965, 7515227.128613879904151 ], [ 554216.440275560016744, 7515556.630309550091624 ], [ 554351.370617939974181, 7515849.13784018997103 ], [ 554416.439543080050498, 7516160.63928656000644 ], [ 554430.201462110038847, 7516376.629046970047057 ], [ 554424.389186830027029, 7516485.129010479897261 ], [ 554361.582325270050205, 7516644.639263659715652 ], [ 554146.8203180199489, 7516963.6315305698663 ], [ 554084.540130940033123, 7517646.14075743034482 ], [ 554147.039345999946818, 7518208.660051150247455 ], [ 554178.288729339954443, 7518615.172259110026062 ], [ 554115.767966849962249, 7519021.17945207003504 ], [ 553973.858579299994744, 7519345.189898329786956 ], [ 553954.89849138003774, 7519377.190948570147157 ], [ 553929.609886429971084, 7519402.689942100085318 ], [ 553859.851088849944063, 7519447.699348329566419 ], [ 553726.599248389946297, 7519512.192376250401139 ], [ 553472.680246960022487, 7519589.680336230434477 ], [ 553218.462379090022296, 7519635.689800689928234 ], [ 552780.148187250015326, 7519746.191867049783468 ], [ 552418.043980209971778, 7519812.178346159867942 ], [ 551986.31099800998345, 7519954.178711500018835 ], [ 551675.789430149947293, 7520185.169340649619699 ], [ 551543.308704870054498, 7520421.180343049578369 ], [ 551564.362152160028927, 7520822.190301760099828 ], [ 551660.441966620041057, 7520968.189111479558051 ], [ 551941.050715549965389, 7521138.201802129857242 ], [ 552265.698866680031642, 7521193.72009817045182 ], [ 552558.240206790040247, 7521211.220943139865994 ], [ 552958.848691480001435, 7521209.229686919599771 ], [ 553276.988916730042547, 7521233.240604850463569 ], [ 553502.942819576244801, 7521273.574077860452235 ], [ 554839.565807851380669, 7521273.574077860452235 ], [ 554834.608359670033678, 7521271.771419700235128 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.16191", "objectid": "16193", "lithstrtno": "4463", "code": "A-mgn-PRK", "unitname": "Rocklea Inlier metagranitic unit", "gswastatus": "Informal", "rank": "Suite", "descriptn": "Foliated gneissic or migmatitic metagranitic rock", "parentcode": "A-mg-PRK", "parentname": "Rocklea Inlier metagranitic unit", "rocktype1": "meta-igneous felsic intrusive", "lithname1": "granitic gneiss", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": null, "group_": "Rocklea Inlier metagranitic unit", "subgroup": null, "formation": null, "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": "Pilbara Craton", "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": null, "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": "Pilbara Craton Rocklea Inlier", "events": "Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma)", "agefrom": "Paleoarchean", "ageto": "Paleoarchean", "max_age_ma": "3225", "maxuncerty": "2", "min_age_ma": "3221", "minuncerty": "6", "max_age_da": "Isotopic", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 0.96974965471600005, "shape_area": 0.017519315743900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 524538.249417810002342, 7479935.452063700184226 ], [ 524662.731309870025143, 7480154.449138020165265 ], [ 525046.501200460013933, 7480304.959696309641004 ], [ 525590.138856749981642, 7480549.457734939642251 ], [ 526736.961849370039999, 7480922.959662619978189 ], [ 529856.887474340037443, 7481720.479547889903188 ], [ 529827.910515989991836, 7480963.489905229769647 ], [ 531488.108066829969175, 7481043.489093760028481 ], [ 533085.269960989942774, 7481251.001002860255539 ], [ 534592.610763909993693, 7481281.007791340351105 ], [ 536441.719193030032329, 7480978.031349030323327 ], [ 537775.93181324005127, 7480703.57045697979629 ], [ 538468.262211170047522, 7480515.588263570331037 ], [ 538902.020067770034075, 7480793.10108061041683 ], [ 539450.069282670039684, 7481044.61925155017525 ], [ 540092.788811390055344, 7481117.631719100289047 ], [ 540899.980495239957236, 7481030.660386419855058 ], [ 541528.288530569989234, 7480753.667894080281258 ], [ 542003.921304309973493, 7480483.660549759864807 ], [ 542810.168601599987596, 7480186.172313690185547 ], [ 543273.430744710029103, 7479986.681214369833469 ], [ 543539.54005779, 7479775.17871059011668 ], [ 543850.099438710021786, 7479563.177159620448947 ], [ 544323.518753150012344, 7479210.680796929635108 ], [ 545000.019705810002051, 7478579.670257880352437 ], [ 545128.84994149999693, 7478328.168212429620326 ], [ 545273.971010820008814, 7478091.670109380036592 ], [ 545330.20924285997171, 7477894.16892748977989 ], [ 545347.469562969985418, 7477512.160315119661391 ], [ 545321.02219096000772, 7477302.161381440237164 ], [ 545256.357257739990018, 7477067.150243889540434 ], [ 545115.849316100007854, 7476940.661324010230601 ], [ 544937.411430969950743, 7476877.640965590253472 ], [ 544772.079625239945017, 7476878.637933829799294 ], [ 544638.718173439963721, 7476917.641629779711366 ], [ 544543.608821350033395, 7476962.640816720202565 ], [ 544486.600448949960992, 7477014.139129949733615 ], [ 544410.870588200050406, 7477129.139150200411677 ], [ 544398.181233800016344, 7477135.639099080115557 ], [ 544245.439829859999008, 7477117.1421510996297 ], [ 544137.380202159984037, 7477130.630485829897225 ], [ 544003.990012840018608, 7477163.14045783970505 ], [ 543921.910125790047459, 7477284.139257409609854 ], [ 543776.55077919003088, 7477469.638466229662299 ], [ 543573.93015111994464, 7477661.651087479665875 ], [ 543307.510035800049081, 7477803.151486550457776 ], [ 542990.09090525994543, 7477900.648642280139029 ], [ 542729.74923455005046, 7477991.149885689839721 ], [ 542393.06988393003121, 7478075.650498890317976 ], [ 542081.720287809963338, 7478115.647714669816196 ], [ 541865.590316500049084, 7478135.640603840351105 ], [ 541687.399000389967114, 7478111.151426020078361 ], [ 541636.100918999989517, 7478022.14067148976028 ], [ 541616.161132990033366, 7477838.131628380157053 ], [ 541697.818109209998511, 7477640.132629239931703 ], [ 541976.461132270051166, 7477384.1186797702685 ], [ 542769.040812000050209, 7476908.609167319722474 ], [ 542978.120983900036663, 7476742.119599130004644 ], [ 543186.939394179964438, 7476524.609273049980402 ], [ 543275.311478639952838, 7476384.108866070397198 ], [ 543318.81773221003823, 7476173.599816120229661 ], [ 543336.910838649957441, 7475963.601623520255089 ], [ 543336.01063446002081, 7475766.087322100065649 ], [ 543322.669578160042875, 7475645.588219179771841 ], [ 543321.48089941998478, 7475397.092186010442674 ], [ 543345.000719630043022, 7474996.081464770250022 ], [ 543401.182136880001053, 7474773.069725950248539 ], [ 543476.690170909976587, 7474607.058913320302963 ], [ 543539.781323360046372, 7474505.061267970129848 ], [ 543742.570966850034893, 7474351.060028309933841 ], [ 543913.939341529970989, 7474280.059067719615996 ], [ 544047.288378549972549, 7474254.069900260306895 ], [ 544212.599255779990926, 7474234.069832229986787 ], [ 544358.990066859987564, 7474258.580309939570725 ], [ 544486.539540939964354, 7474334.580349479801953 ], [ 544569.630512499948964, 7474416.591412509791553 ], [ 544614.657629659981467, 7474531.080400019884109 ], [ 544640.56158791994676, 7474632.590177119709551 ], [ 544653.680978709948249, 7474709.098554720170796 ], [ 544653.91856421995908, 7474766.098375639878213 ], [ 544748.749146969988942, 7474644.610880590043962 ], [ 544868.471127780037932, 7474421.600939930416644 ], [ 544918.290347579983063, 7474204.591483780182898 ], [ 544929.95275928999763, 7473962.590209850110114 ], [ 544928.919781420030631, 7473752.588278099894524 ], [ 544895.860768839949742, 7473492.578885910101235 ], [ 544873.571916749468073, 7473446.765934069640934 ], [ 524814.091375153046101, 7473446.765934069640934 ], [ 524547.829927230020985, 7473933.389739160425961 ], [ 524314.660158729995601, 7474380.391378539614379 ], [ 524113.289297080016695, 7474826.900108000263572 ], [ 523987.717958259978332, 7475171.397866469807923 ], [ 523881.709820230025798, 7475617.39919385034591 ], [ 523884.297953500004951, 7476158.411572299897671 ], [ 523899.47760758997174, 7476673.909676229581237 ], [ 523856.891685770009644, 7477074.919690920040011 ], [ 523833.811786820006091, 7477577.930171160027385 ], [ 523880.459650699980557, 7478016.930567080155015 ], [ 523990.630124800023623, 7478455.432368899695575 ], [ 524119.887980200001039, 7478887.428070009686053 ], [ 524274.528004150022753, 7479306.940643169917166 ], [ 524538.249417810002342, 7479935.452063700184226 ] ], [ [ 541358.460613009985536, 7476431.070752290077507 ], [ 541371.310222759959288, 7476539.089240180328488 ], [ 541320.760819380055182, 7476749.099189889617264 ], [ 541244.510280070011504, 7476832.08961298968643 ], [ 541098.258586799958721, 7476864.090209979563951 ], [ 540971.020666989963502, 7476877.079898719675839 ], [ 540742.250839410000481, 7477011.579309450462461 ], [ 540475.649919499992393, 7477406.589215509593487 ], [ 540373.950899419956841, 7477483.589004130102694 ], [ 540221.411660689976998, 7477554.089975790120661 ], [ 539598.278405910008587, 7477765.570249490439892 ], [ 539312.390287859947421, 7477982.568873159587383 ], [ 539166.268936129985377, 7478154.568510370329022 ], [ 539045.630967270000838, 7478282.568591229617596 ], [ 538613.512336850049905, 7478595.068732789717615 ], [ 538346.578703250037506, 7478761.558315370231867 ], [ 538028.760317889973521, 7478915.060221480205655 ], [ 537615.490931609994732, 7479126.029186660423875 ], [ 537354.912620489951223, 7479273.029996830038726 ], [ 536687.148999179946259, 7479376.511235799640417 ], [ 536413.601945389993489, 7479358.501508070155978 ], [ 536184.381576010026038, 7479244.500811309553683 ], [ 535967.838253290043212, 7479002.981765929609537 ], [ 535852.94961626001168, 7478761.467817880213261 ], [ 535865.45077879994642, 7478563.971989460289478 ], [ 535973.359353450010531, 7478417.470643930137157 ], [ 536208.67089120997116, 7478353.469969959929585 ], [ 536520.470750760054216, 7478441.481110479682684 ], [ 536914.96944060001988, 7478535.999609249643981 ], [ 537188.561031299992464, 7478548.010379119776189 ], [ 537576.419097010046244, 7478477.022458010353148 ], [ 538135.950043509947136, 7478240.038715160451829 ], [ 538511.117701629991643, 7478182.040280549786985 ], [ 538822.509455760009587, 7477964.55079491995275 ], [ 538866.519821880036034, 7477563.541013290174305 ], [ 538745.520277449977584, 7477462.028324750252068 ], [ 538503.750118679949082, 7477475.521246880292892 ], [ 538204.880423530004919, 7477514.510608370415866 ], [ 537842.241106539964676, 7477508.990524750202894 ], [ 537492.291658040019684, 7477446.489446770399809 ], [ 537110.540420160046779, 7477389.972849680110812 ], [ 536728.740673499996774, 7477282.939162010326982 ], [ 536442.228769190027378, 7477079.928681880235672 ], [ 536333.737370750051923, 7476869.918774610385299 ], [ 536346.148593020043336, 7476640.91941266041249 ], [ 536428.58983392000664, 7476462.408203760161996 ], [ 536530.161248450051062, 7476315.910808119922876 ], [ 536625.313863039948046, 7476092.907453309744596 ], [ 536630.968454889953136, 7475609.3925636196509 ], [ 536585.899888799991459, 7475227.370493769645691 ], [ 536610.959037579945289, 7474972.858817160129547 ], [ 536731.528520839987323, 7474756.358776929788291 ], [ 536896.727803039946593, 7474653.860180609859526 ], [ 537074.909987590042874, 7474666.369350180029869 ], [ 537265.918872429989278, 7474786.870019759982824 ], [ 537437.907544029993005, 7474983.378747959621251 ], [ 537590.931406370014884, 7475224.89968893956393 ], [ 537718.481844619964249, 7475459.920584879815578 ], [ 537756.860391980037093, 7475593.430352349765599 ], [ 537846.038772220024839, 7475701.440673939883709 ], [ 537960.668860669946298, 7475758.440805559977889 ], [ 538145.050474349991418, 7475719.950655439868569 ], [ 538418.540455979993567, 7475706.450883599929512 ], [ 538685.870556570007466, 7475788.449010640382767 ], [ 538902.360836809966713, 7475953.480250170454383 ], [ 539061.571961560053751, 7476092.990216890349984 ], [ 539354.439745009993203, 7476289.51938187982887 ], [ 539628.200490779941902, 7476422.509449950419366 ], [ 539971.739809270016849, 7476466.041327700018883 ], [ 540416.950512130046263, 7476414.050173169933259 ], [ 540855.758395900018513, 7476343.073021410033107 ], [ 541224.689490749966353, 7476335.559219219721854 ], [ 541358.460613009985536, 7476431.070752290077507 ] ], [ [ 535805.28640327998437, 7475539.868359600193799 ], [ 535869.529938000021502, 7475666.870821200311184 ], [ 535921.589666099986061, 7475920.879242169670761 ], [ 535903.080141130019911, 7476041.880046259611845 ], [ 535763.840431499993429, 7476182.881343989633024 ], [ 535611.560275529976934, 7476240.900449469685555 ], [ 535490.719155590049922, 7476241.400933040305972 ], [ 535369.670986799988896, 7476197.888359400443733 ], [ 535280.599936189944856, 7476198.388064320199192 ], [ 535211.111269089975394, 7476293.898190249688923 ], [ 535205.728069989942014, 7476491.398832309991121 ], [ 535212.887750589987263, 7476663.410822159610689 ], [ 535194.419056689948775, 7476790.412126430310309 ], [ 535099.608665390056558, 7476911.921056929975748 ], [ 534953.58931184001267, 7476969.910778369754553 ], [ 534711.979972340050153, 7476971.410600939765573 ], [ 534457.180887729977258, 7476889.919906149618328 ], [ 534272.04126189998351, 7476738.401521010324359 ], [ 534137.609933770028874, 7476547.907458799891174 ], [ 534124.298060990055092, 7476427.40031720045954 ], [ 534231.747922249953263, 7476286.391005779616535 ], [ 534587.301779170054942, 7476163.879301480017602 ], [ 534637.920230860006995, 7476118.879857339896262 ], [ 534650.109833410009742, 7476004.382077129557729 ], [ 534515.532393840025179, 7475794.878760449588299 ], [ 534336.971588350017555, 7475687.870841540396214 ], [ 534069.050725679961033, 7475510.870088989846408 ], [ 533851.938362259999849, 7475327.350165169686079 ], [ 533698.498536749975756, 7475150.349448580294847 ], [ 533589.118865060037933, 7474883.337138920091093 ], [ 533569.060644509969279, 7474679.82876287959516 ], [ 533606.567680730018765, 7474539.840133409947157 ], [ 533839.941206270013936, 7474137.30896526016295 ], [ 533909.500624060048722, 7474060.820207010023296 ], [ 534042.55063718999736, 7473964.319312159903347 ], [ 534169.689554270007648, 7473944.81766203045845 ], [ 534239.739184070029296, 7473969.820194629952312 ], [ 534309.929303199984133, 7474007.319938800297678 ], [ 534405.599816540023312, 7474076.811073710210621 ], [ 534559.289050610037521, 7474298.81947829015553 ], [ 534924.689859559992328, 7474895.340122370049357 ], [ 535122.788080579950474, 7475116.851750509813428 ], [ 535358.739262609975412, 7475236.848466210067272 ], [ 535607.230046520009637, 7475343.3599007204175 ], [ 535805.28640327998437, 7475539.868359600193799 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.15987", "objectid": "15989", "lithstrtno": "4458", "code": "A-FO-xo-a", "unitname": "Fortescue Group", "gswastatus": "Informal", "rank": "Formation", "descriptn": "Layered mafic and ultramafic sills; coarse-grained pyroxenite overlain by leucocratic gabbro or dolerite; local basal serpentinite; metamorphosed", "parentcode": "A-FO-xb-s", "parentname": "Fortescue Group", "rocktype1": "igneous mafic intrusive", "lithname1": null, "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "igneous ultramafic intrusive", "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": null, "formation": null, "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": "South Pilbara Sub-basin", "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2775", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.38742561681400001, "shape_area": 0.00104216928383 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 521401.194137196463998, 7473446.765934069640934 ], [ 521321.488619300012942, 7473505.419688289985061 ], [ 521099.931962530012242, 7473722.908787299878895 ], [ 520853.479242540022824, 7474036.409161989577115 ], [ 520525.652166970015969, 7474648.920887449756265 ], [ 520368.459916869993322, 7475025.40897111967206 ], [ 520049.610527139971964, 7476172.920207080431283 ], [ 519905.30918208998628, 7476587.410791880451143 ], [ 519684.341249910008628, 7476919.411290739662945 ], [ 519583.571789679990616, 7477129.900248009711504 ], [ 519541.120659600012004, 7477556.401514640077949 ], [ 519652.110633370000869, 7478166.889219500124454 ], [ 519749.288134019996505, 7478541.890029679983854 ], [ 519987.109825439983979, 7479068.889269069768488 ], [ 520109.478303309995681, 7479392.89994344022125 ], [ 520206.971165129973087, 7479825.399831029586494 ], [ 520259.752034789999016, 7480225.898915249854326 ], [ 520305.577774589997716, 7480505.909247079864144 ], [ 520491.708337530028075, 7480867.409856320358813 ], [ 520734.630191079981159, 7481126.901970620267093 ], [ 520882.081729509984143, 7481374.422062840312719 ], [ 521100.231080099998508, 7481774.420146870426834 ], [ 521279.660066750016995, 7482072.421400080434978 ], [ 522066.53047991002677, 7483041.939930959604681 ], [ 522322.308881259988993, 7483333.439529390074313 ], [ 522609.93873357999837, 7483643.949660209938884 ], [ 522884.698015169997234, 7483915.948813259601593 ], [ 523203.919918, 7484174.950047279708087 ], [ 523459.067756309988908, 7484345.458320800215006 ], [ 523688.70260729000438, 7484477.94885510019958 ], [ 523956.290176049980801, 7484584.948004179634154 ], [ 524153.672332780028228, 7484634.460372479632497 ], [ 524485.168754169950262, 7484804.961554169654846 ], [ 524778.729300149949268, 7485012.972745269536972 ], [ 525052.920080450014211, 7485164.471218720078468 ], [ 525396.889256870024838, 7485289.980692549608648 ], [ 525778.911536619998515, 7485376.980111620388925 ], [ 526103.491320949979126, 7485438.968910169787705 ], [ 526453.530471069971099, 7485493.990890430286527 ], [ 526816.288172830012627, 7485549.498404719866812 ], [ 527465.238378289970569, 7485609.502829919569194 ], [ 527796.4907079100376, 7485716.00092520006001 ], [ 527981.178892430034466, 7485784.998135359957814 ], [ 528064.028813729993999, 7485829.009080340154469 ], [ 528427.277579859946854, 7485979.999922719784081 ], [ 528644.058482439955696, 7486087.001203370280564 ], [ 529071.121055769966915, 7486252.020327379927039 ], [ 529247.71946322999429, 7486242.029754130169749 ], [ 529267.379067659960128, 7486104.520032140426338 ], [ 529090.728832960012369, 7485898.518822309561074 ], [ 528679.981317640049383, 7485628.498478479683399 ], [ 528411.881155980052426, 7485413.51169663015753 ], [ 527991.112252300023101, 7485193.011992510408163 ], [ 527589.97084448998794, 7485086.990878780372441 ], [ 527214.551729660015553, 7485057.499534820206463 ], [ 526680.100852660019882, 7484996.489663230255246 ], [ 526208.970491520012729, 7484890.989003130234778 ], [ 525432.180338650010526, 7484684.96916319988668 ], [ 525075.419583359966055, 7484553.470669459551573 ], [ 524661.411596380057745, 7484421.960348170250654 ], [ 524278.98091410001507, 7484245.97177139017731 ], [ 523877.29882699000882, 7484018.95034100022167 ], [ 523513.568505620001815, 7483759.947633580304682 ], [ 523149.39070842997171, 7483411.940081279724836 ], [ 522829.750640810001642, 7483056.952182490378618 ], [ 522497.118864229996689, 7482657.940781069919467 ], [ 522164.130013610003516, 7482175.929998010396957 ], [ 521888.898788070015144, 7481801.929337779991329 ], [ 521351.563030759978574, 7481142.931618990376592 ], [ 521069.968882090004627, 7480768.910275789909065 ], [ 520832.471159129985608, 7480305.410857650451362 ], [ 520517.28793674998451, 7479556.401816979981959 ], [ 520290.759011539979838, 7478736.387838570401073 ], [ 520206.319334450003225, 7478367.892363959923387 ], [ 520127.70909004000714, 7477877.900098400190473 ], [ 520119.479524740017951, 7477489.910617570392787 ], [ 520193.899986490025185, 7477088.399429489858449 ], [ 520319.369233570003416, 7476731.400998610071838 ], [ 520520.8195976500283, 7476297.409134459681809 ], [ 520760.181566330022179, 7475818.910517989657819 ], [ 521031.681305530015379, 7475403.412329119630158 ], [ 521290.719448990013916, 7475052.409434890374541 ], [ 521512.038795879983809, 7474777.407136229798198 ], [ 521821.929474769975059, 7474431.911327159963548 ], [ 522018.201737450028304, 7474239.909218950197101 ], [ 522189.008498630020767, 7474047.909708119928837 ], [ 522435.469491810014006, 7473734.88989934977144 ], [ 522615.703167135594413, 7473446.765934069640934 ], [ 521401.194137196463998, 7473446.765934069640934 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.9854", "objectid": "9855", "lithstrtno": "2219", "code": "A-FO-od", "unitname": "Fortescue Group", "gswastatus": "Informal", "rank": "Formation", "descriptn": "Dolerite dyke or sill", "parentcode": "A-FO-xb-s", "parentname": "Fortescue Group", "rocktype1": "igneous mafic intrusive", "lithname1": "dolerite", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": null, "formation": null, "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": null, "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma); Fortescue Rifting Event (2775 - 2752 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2775", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.28536118970699997, "shape_area": 0.00075583492192200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 555089.240362670039758, 7497031.250550730153918 ], [ 555214.778581200051121, 7496966.737625430338085 ], [ 555303.849349590018392, 7496972.251311229541898 ], [ 555397.432319379993714, 7496948.761133500374854 ], [ 555500.588549330015667, 7496894.751310749910772 ], [ 555340.45946487004403, 7496653.75065691024065 ], [ 555072.269406519946642, 7496419.742752940393984 ], [ 555257.961555329966359, 7496120.253690180368721 ], [ 555169.568603049963713, 7496080.645912299863994 ], [ 555079.651138229994103, 7495856.180409490130842 ], [ 554951.794667689944617, 7495656.452342719770968 ], [ 554533.323906189994887, 7495685.344775210134685 ], [ 554222.481189709971659, 7495584.240095560438931 ], [ 553674.920575369964354, 7495440.742040479555726 ], [ 553121.107822670019232, 7495335.730401810258627 ], [ 552058.298123529995792, 7495176.229097790084779 ], [ 551372.390996049973182, 7495140.572720600292087 ], [ 550837.030713769956492, 7495112.720892540179193 ], [ 550366.470990129979327, 7495115.199292610399425 ], [ 549927.711291779996827, 7495130.199409529566765 ], [ 549476.347991509945132, 7495158.198621840216219 ], [ 549081.69803133001551, 7495096.689537179656327 ], [ 548794.838874500012025, 7494951.690788920037448 ], [ 548041.851294800057076, 7494395.67981312982738 ], [ 547812.008184600039385, 7494218.670278839766979 ], [ 547308.83934380998835, 7494049.681729639880359 ], [ 546939.900352380005643, 7494039.159448419697583 ], [ 546539.409910980029963, 7494060.158678470179439 ], [ 546208.961332999984734, 7494119.158106570132077 ], [ 545732.518375079962425, 7494223.65915559977293 ], [ 545262.211036029970273, 7494277.14960508979857 ], [ 544861.560681449947879, 7494285.647513809613883 ], [ 544428.949143290054053, 7494243.648458180017769 ], [ 544084.999543430050835, 7494137.151736919768155 ], [ 543779.078326359973289, 7493992.649916980415583 ], [ 543543.189538729959168, 7493866.648261900059879 ], [ 543249.821946040028706, 7493696.147726809605956 ], [ 543032.74942597001791, 7493525.639886749908328 ], [ 542866.689999529975466, 7493367.640603230334818 ], [ 542802.682014300022274, 7493278.639014470390975 ], [ 542636.310553809977137, 7493075.648924670182168 ], [ 542578.619356640032493, 7492980.651306429877877 ], [ 542286.889140769955702, 7493141.651626129634678 ], [ 542561.820394319947809, 7493458.150018610060215 ], [ 542747.390386529965326, 7493686.141672980040312 ], [ 543028.137615890009329, 7493882.139863289892673 ], [ 543398.137297129957005, 7494128.140172740444541 ], [ 543755.121623549959622, 7494304.64926781039685 ], [ 544277.139624880044721, 7494416.150826640427113 ], [ 545237.501353780040517, 7494449.160052079707384 ], [ 545695.309559370041825, 7494434.148953230120242 ], [ 546566.508490049978718, 7494423.159816980361938 ], [ 546821.579328609979711, 7494568.161856819875538 ], [ 547096.899161410052329, 7494948.160620270296931 ], [ 547498.701257099979557, 7495194.17018620017916 ], [ 547925.59855144994799, 7495364.171054489910603 ], [ 548396.782193950028159, 7495482.180683489888906 ], [ 548816.892022080020979, 7495569.179532590322196 ], [ 549217.759903430007398, 7495617.679179130122066 ], [ 549618.769633420044556, 7495685.690184440463781 ], [ 550019.969748529954813, 7495810.698891820386052 ], [ 550312.910615590051748, 7495892.210300539620221 ], [ 550733.099958559963852, 7495985.210589869879186 ], [ 551076.650700130034238, 7496021.709231699816883 ], [ 551375.36080701998435, 7496024.402736780233681 ], [ 551521.861877109971829, 7496025.721549900248647 ], [ 551954.149807250010781, 7495997.719214060343802 ], [ 552322.961759119993076, 7495989.220348490402102 ], [ 552666.488816019962542, 7496019.231565900146961 ], [ 553462.279581440030597, 7496205.730644360184669 ], [ 553736.679746850044467, 7496382.731079690158367 ], [ 554011.079331679968163, 7496591.241597959771752 ], [ 554189.528591600013897, 7496672.741518639959395 ], [ 554361.860675979987718, 7496812.242042959667742 ], [ 554527.538610500050709, 7496881.231944209896028 ], [ 554862.030735339969397, 7497234.060149200260639 ], [ 555089.240362670039758, 7497031.250550730153918 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.16188", "objectid": "16190", "lithstrtno": "2069", "code": "A-FOh-xs-f", "unitname": "Hardey Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Sedimentary and felsic volcanic rocks; local intrusive rocks", "parentcode": "A-FOS2-xs-f", "parentname": "Fortescue Group sequence 2", "rocktype1": "sedimentary siliciclastic", "lithname1": null, "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "igneous felsic volcanic", "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": "Fortescue Group sequence 2", "formation": "Hardey Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "Large igneous provinces and dyke swarms; West Australian Craton", "ssuite_tec": "Fortescue Large Igneous Province", "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": "Marble Bar Sub-basin; Northeast Pilbara Sub-basin; Northwest Pilbara Sub-basin; South Pilbara Sub-ba", "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2766", "maxuncerty": "7", "min_age_ma": "2749", "minuncerty": "5", "max_age_da": "Isotopic", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 2.1357912995800001, "shape_area": 0.0208742109765 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 528954.110069880029187, 7487103.521836710162461 ], [ 529120.149274140014313, 7487076.007991850376129 ], [ 529237.922070009983145, 7487046.530405789613724 ], [ 529385.112543620052747, 7487076.020391209982336 ], [ 529610.718033500015736, 7487032.521789309568703 ], [ 529486.573557080002502, 7487228.240700139664114 ], [ 529422.971164569957182, 7487328.510253859683871 ], [ 529542.089915359974839, 7487311.529445690102875 ], [ 529748.237938759964891, 7487243.030956010334194 ], [ 530644.619228519964963, 7486871.519565439783037 ], [ 531272.819183569983579, 7486582.030198579654098 ], [ 531685.150314419995993, 7486369.538402480073273 ], [ 532154.860149109968916, 7486176.051343370229006 ], [ 532656.549589470028877, 7486033.552292670123279 ], [ 533139.431913170032203, 7485941.560117250308394 ], [ 533603.168918970040977, 7485843.570628009736538 ], [ 534092.21032826998271, 7485720.068343419581652 ], [ 535127.470298039959744, 7485434.569571630097926 ], [ 536416.878469659946859, 7485109.088254359550774 ], [ 537274.421160569996573, 7484900.611389660276473 ], [ 538430.128910519997589, 7484538.110331879928708 ], [ 539071.751081289956346, 7484388.118471539579332 ], [ 539922.830867439974099, 7484167.147630030289292 ], [ 540773.859463830012828, 7483927.159011710435152 ], [ 541904.428336929995567, 7483628.172685800120234 ], [ 543307.878213220043108, 7483219.690653090365231 ], [ 543923.859284300007857, 7483031.691971049644053 ], [ 544031.747912460006773, 7482980.188702680170536 ], [ 544114.320860560052097, 7482954.200195039622486 ], [ 545262.300773459952325, 7482442.211092540062964 ], [ 546433.928628760040738, 7481843.719781110063195 ], [ 547456.001047570025548, 7481145.721713369712234 ], [ 548652.548129320028238, 7480148.730872269719839 ], [ 549400.371715590008534, 7479400.739066990092397 ], [ 550048.579763669986278, 7478777.751176180317998 ], [ 550472.311465810053051, 7478079.751260950230062 ], [ 550646.820849810028449, 7477780.750998630188406 ], [ 550880.391042839968577, 7476851.749500320293009 ], [ 551013.400707509950735, 7476009.738878300413489 ], [ 551013.400320730055682, 7474879.230345549993217 ], [ 551035.608584269997664, 7473948.730222159996629 ], [ 551080.212846429902129, 7473446.765934069640934 ], [ 550353.422429812490009, 7473446.765934069640934 ], [ 550353.399890600005165, 7474116.218901770189404 ], [ 550485.680286339949816, 7474936.216461749747396 ], [ 550432.788980519981124, 7475570.72875999007374 ], [ 550300.528914020047523, 7476470.232370080426335 ], [ 550062.460199619992636, 7477184.230514120310545 ], [ 549983.15048365003895, 7477501.740314709953964 ], [ 549850.877924870001152, 7477501.740025259554386 ], [ 549771.518295009969734, 7477131.219166809692979 ], [ 549718.64053223002702, 7476655.231389840133488 ], [ 549441.609890660038218, 7475898.720854910090566 ], [ 549312.020508819958195, 7475403.210941050201654 ], [ 549279.419068390037864, 7475237.699863799847662 ], [ 549252.850128320045769, 7474996.208536789752543 ], [ 549238.410781800048426, 7474633.191752339713275 ], [ 549249.548923820024356, 7474308.690579039976001 ], [ 549247.909778489964083, 7473964.692137549631298 ], [ 549227.310927379992791, 7473627.689886249601841 ], [ 549209.66171369550284, 7473446.765934069640934 ], [ 544873.571916749468073, 7473446.765934069640934 ], [ 544895.860768839949742, 7473492.578885910101235 ], [ 544928.919781420030631, 7473752.588278099894524 ], [ 544929.95275928999763, 7473962.590209850110114 ], [ 544918.290347579983063, 7474204.591483780182898 ], [ 544868.471127780037932, 7474421.600939930416644 ], [ 544748.749146969988942, 7474644.610880590043962 ], [ 544653.91856421995908, 7474766.098375639878213 ], [ 544699.739898180007003, 7475046.109928339719772 ], [ 544706.15904447005596, 7475046.109696970321238 ], [ 544744.57259790005628, 7475103.109389079734683 ], [ 544795.861381420050748, 7475198.121260889805853 ], [ 544809.111402770038694, 7475293.618115450255573 ], [ 544803.540456530055963, 7475472.109343989752233 ], [ 544760.11179583997, 7475688.6086087198928 ], [ 544697.560710279969499, 7475911.618799359537661 ], [ 544635.309355729958043, 7476185.629217100329697 ], [ 544579.53048045001924, 7476504.130518309772015 ], [ 544517.341558640007861, 7476797.648935760371387 ], [ 544486.600448949960992, 7477014.139129949733615 ], [ 544543.608821350033395, 7476962.640816720202565 ], [ 544638.718173439963721, 7476917.641629779711366 ], [ 544772.079625239945017, 7476878.637933829799294 ], [ 544937.411430969950743, 7476877.640965590253472 ], [ 545115.849316100007854, 7476940.661324010230601 ], [ 545256.357257739990018, 7477067.150243889540434 ], [ 545321.02219096000772, 7477302.161381440237164 ], [ 545347.469562969985418, 7477512.160315119661391 ], [ 545330.20924285997171, 7477894.16892748977989 ], [ 545273.971010820008814, 7478091.670109380036592 ], [ 545128.84994149999693, 7478328.168212429620326 ], [ 545000.019705810002051, 7478579.670257880352437 ], [ 544368.639762139995582, 7479729.680836910381913 ], [ 544064.201096069999039, 7480214.180569579824805 ], [ 543714.721562610007823, 7480620.180760269984603 ], [ 543278.448427070048638, 7481036.680964759550989 ], [ 542961.651990619953722, 7481286.66906442027539 ], [ 542435.340712219942361, 7481607.680911930277944 ], [ 541902.139656650018878, 7481820.681552739813924 ], [ 541349.728197410004213, 7481989.161317829973996 ], [ 540816.150883599999361, 7482125.660042230039835 ], [ 540327.690057180006988, 7482376.638795359991491 ], [ 539857.761162020033225, 7482512.638187630102038 ], [ 539133.091830539982766, 7482586.607948769815266 ], [ 537816.838914479943924, 7482619.089825170114636 ], [ 537225.619498300016858, 7482679.579045910388231 ], [ 536609.530612439964898, 7482836.058942019939423 ], [ 535745.990270199952647, 7483114.058705699630082 ], [ 535307.411674660048448, 7483167.559465959668159 ], [ 534271.189145580050536, 7483237.040472649969161 ], [ 533705.727482449961826, 7483348.048920690082014 ], [ 533153.321361340000294, 7483529.539472719654441 ], [ 532620.120768659980968, 7483729.540241659618914 ], [ 532143.878973240032792, 7483885.039836630225182 ], [ 531609.821962340036407, 7483913.028245289810002 ], [ 530451.509875620016828, 7483716.010619269683957 ], [ 529712.271662750048563, 7483395.011301290243864 ], [ 529450.889285249984823, 7483263.000973359681666 ], [ 529208.522589650005102, 7483111.489456219598651 ], [ 528966.250386580009945, 7482979.001210840418935 ], [ 528762.380300409975462, 7482897.498404650017619 ], [ 528604.2699740199605, 7482816.493775309994817 ], [ 528058.949573489953764, 7482635.489615900442004 ], [ 527449.948290279950015, 7482483.479327520355582 ], [ 526647.460255819954909, 7482145.481460879556835 ], [ 526219.932036489946768, 7481860.981002789922059 ], [ 525837.131990249967203, 7481589.469329429790378 ], [ 525383.569695619982667, 7481165.460271639749408 ], [ 525063.879986720043235, 7480804.459229090251029 ], [ 524826.821140169980936, 7480442.957518120296299 ], [ 524662.731309870025143, 7480154.449138020165265 ], [ 524538.249417810002342, 7479935.452063700184226 ], [ 524274.528004150022753, 7479306.940643169917166 ], [ 524119.887980200001039, 7478887.428070009686053 ], [ 523990.630124800023623, 7478455.432368899695575 ], [ 523880.459650699980557, 7478016.930567080155015 ], [ 523833.811786820006091, 7477577.930171160027385 ], [ 523856.891685770009644, 7477074.919690920040011 ], [ 523899.47760758997174, 7476673.909676229581237 ], [ 523884.297953500004951, 7476158.411572299897671 ], [ 523881.709820230025798, 7475617.39919385034591 ], [ 523987.717958259978332, 7475171.397866469807923 ], [ 524113.289297080016695, 7474826.900108000263572 ], [ 524314.660158729995601, 7474380.391378539614379 ], [ 524547.829927230020985, 7473933.389739160425961 ], [ 524814.091375153046101, 7473446.765934069640934 ], [ 522615.703167135594413, 7473446.765934069640934 ], [ 522435.469491810014006, 7473734.88989934977144 ], [ 522189.008498630020767, 7474047.909708119928837 ], [ 522018.201737450028304, 7474239.909218950197101 ], [ 521821.929474769975059, 7474431.911327159963548 ], [ 521512.038795879983809, 7474777.407136229798198 ], [ 521290.719448990013916, 7475052.409434890374541 ], [ 521031.681305530015379, 7475403.412329119630158 ], [ 520760.181566330022179, 7475818.910517989657819 ], [ 520520.8195976500283, 7476297.409134459681809 ], [ 520319.369233570003416, 7476731.400998610071838 ], [ 520193.899986490025185, 7477088.399429489858449 ], [ 520119.479524740017951, 7477489.910617570392787 ], [ 520127.70909004000714, 7477877.900098400190473 ], [ 520206.319334450003225, 7478367.892363959923387 ], [ 520290.759011539979838, 7478736.387838570401073 ], [ 520517.28793674998451, 7479556.401816979981959 ], [ 520832.471159129985608, 7480305.410857650451362 ], [ 521069.968882090004627, 7480768.910275789909065 ], [ 521351.563030759978574, 7481142.931618990376592 ], [ 521888.898788070015144, 7481801.929337779991329 ], [ 522164.130013610003516, 7482175.929998010396957 ], [ 522497.118864229996689, 7482657.940781069919467 ], [ 522829.750640810001642, 7483056.952182490378618 ], [ 523149.39070842997171, 7483411.940081279724836 ], [ 523513.568505620001815, 7483759.947633580304682 ], [ 523877.29882699000882, 7484018.95034100022167 ], [ 524278.98091410001507, 7484245.97177139017731 ], [ 524661.411596380057745, 7484421.960348170250654 ], [ 525075.419583359966055, 7484553.470669459551573 ], [ 525432.180338650010526, 7484684.96916319988668 ], [ 526208.970491520012729, 7484890.989003130234778 ], [ 526680.100852660019882, 7484996.489663230255246 ], [ 527214.551729660015553, 7485057.499534820206463 ], [ 527589.97084448998794, 7485086.990878780372441 ], [ 527991.112252300023101, 7485193.011992510408163 ], [ 528411.881155980052426, 7485413.51169663015753 ], [ 528679.981317640049383, 7485628.498478479683399 ], [ 529090.728832960012369, 7485898.518822309561074 ], [ 529267.379067659960128, 7486104.520032140426338 ], [ 529247.71946322999429, 7486242.029754130169749 ], [ 529071.121055769966915, 7486252.020327379927039 ], [ 528644.058482439955696, 7486087.001203370280564 ], [ 528427.277579859946854, 7485979.999922719784081 ], [ 528064.028813729993999, 7485829.009080340154469 ], [ 527981.178892430034466, 7485784.998135359957814 ], [ 527796.4907079100376, 7485716.00092520006001 ], [ 527465.238378289970569, 7485609.502829919569194 ], [ 526816.288172830012627, 7485549.498404719866812 ], [ 526453.530471069971099, 7485493.990890430286527 ], [ 526103.491320949979126, 7485438.968910169787705 ], [ 525778.911536619998515, 7485376.980111620388925 ], [ 525396.889256870024838, 7485289.980692549608648 ], [ 525052.920080450014211, 7485164.471218720078468 ], [ 524778.729300149949268, 7485012.972745269536972 ], [ 524485.168754169950262, 7484804.961554169654846 ], [ 524153.672332780028228, 7484634.460372479632497 ], [ 523956.290176049980801, 7484584.948004179634154 ], [ 523688.70260729000438, 7484477.94885510019958 ], [ 523459.067756309988908, 7484345.458320800215006 ], [ 523203.919918, 7484174.950047279708087 ], [ 522884.698015169997234, 7483915.948813259601593 ], [ 522609.93873357999837, 7483643.949660209938884 ], [ 522322.308881259988993, 7483333.439529390074313 ], [ 522066.53047991002677, 7483041.939930959604681 ], [ 521279.660066750016995, 7482072.421400080434978 ], [ 521100.231080099998508, 7481774.420146870426834 ], [ 520882.081729509984143, 7481374.422062840312719 ], [ 520734.630191079981159, 7481126.901970620267093 ], [ 520491.708337530028075, 7480867.409856320358813 ], [ 520305.577774589997716, 7480505.909247079864144 ], [ 520259.752034789999016, 7480225.898915249854326 ], [ 520206.971165129973087, 7479825.399831029586494 ], [ 520109.478303309995681, 7479392.89994344022125 ], [ 519987.109825439983979, 7479068.889269069768488 ], [ 519749.288134019996505, 7478541.890029679983854 ], [ 519652.110633370000869, 7478166.889219500124454 ], [ 519541.120659600012004, 7477556.401514640077949 ], [ 519583.571789679990616, 7477129.900248009711504 ], [ 519684.341249910008628, 7476919.411290739662945 ], [ 519905.30918208998628, 7476587.410791880451143 ], [ 520049.610527139971964, 7476172.920207080431283 ], [ 520368.459916869993322, 7475025.40897111967206 ], [ 520525.652166970015969, 7474648.920887449756265 ], [ 520853.479242540022824, 7474036.409161989577115 ], [ 521099.931962530012242, 7473722.908787299878895 ], [ 521321.488619300012942, 7473505.419688289985061 ], [ 521401.194137196463998, 7473446.765934069640934 ], [ 520263.966596475744154, 7473446.765934069640934 ], [ 520045.079995240026619, 7473894.428377710282803 ], [ 519729.221963040006813, 7474334.92953103967011 ], [ 519634.308755900012329, 7474430.939210419543087 ], [ 519514.34932562999893, 7474609.939006499946117 ], [ 519254.761205210001208, 7474853.430005059577525 ], [ 518995.009580629994161, 7475058.43823663983494 ], [ 518735.748522549984045, 7475371.431314400397241 ], [ 518508.929092329984996, 7475818.430933189578354 ], [ 518327.488122560025658, 7476442.93088511005044 ], [ 518215.772289789980277, 7477016.40078095998615 ], [ 518142.210221890010871, 7477602.391211249865592 ], [ 518125.649700690002646, 7478117.86872429959476 ], [ 518159.351960200001486, 7478525.359361410140991 ], [ 518244.409103669982869, 7479021.358764530159533 ], [ 518469.570884139975533, 7479567.368860090151429 ], [ 518713.410290280007757, 7480024.371472629718482 ], [ 519001.440619600005448, 7480404.37745278980583 ], [ 519622.430933850002475, 7481273.389771680347621 ], [ 519955.230062239977997, 7481716.908311439678073 ], [ 520237.10917721997248, 7482148.410561019554734 ], [ 520531.619565160013735, 7482560.410203600302339 ], [ 520941.17862751998473, 7483098.931340780109167 ], [ 521112.019750770006794, 7482919.920276300050318 ], [ 521163.329343390010763, 7483008.930106650106609 ], [ 521374.539772410003934, 7483293.929609539918602 ], [ 521784.480578640010208, 7483902.939748729579151 ], [ 522018.439330630004406, 7483621.429230930283666 ], [ 521999.950163599976804, 7483748.9293083101511 ], [ 522007.338594119995832, 7483971.429092960432172 ], [ 522059.031432130024768, 7484136.939696010202169 ], [ 522123.3302770400187, 7484282.942129979841411 ], [ 522206.711411260010209, 7484428.940459559671581 ], [ 522750.549823439971078, 7485113.459524570032954 ], [ 522999.849542689975351, 7485391.950317829847336 ], [ 523268.120747109991498, 7485625.951278129592538 ], [ 523577.778480749984737, 7485223.462142010219395 ], [ 524265.450897340022493, 7485403.967761510051787 ], [ 524915.208273750031367, 7485629.970491929911077 ], [ 526113.710027370019816, 7486246.990289689972997 ], [ 526961.480119650019333, 7486655.987977350130677 ], [ 527662.338701030006632, 7486932.500663819722831 ], [ 527974.408268759958446, 7487025.998880390077829 ], [ 528572.600081639946438, 7487105.512862170115113 ], [ 528795.161534680053592, 7487111.009507419541478 ], [ 528954.110069880029187, 7487103.521836710162461 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.5501", "objectid": "5501", "lithstrtno": "4124", "code": "A-HAu-xsl-ci", "unitname": "Mount McRae Shale and Mount Sylvia Formation", "gswastatus": "Informal", "rank": "Formation", "descriptn": "Mudstone siltstone chert banded iron-formation and dolomite; metamorphosed", "parentcode": "A-HAL-xkt-ci", "parentname": "Hamersley Group lower", "rocktype1": "sedimentary siliciclastic", "lithname1": "siltstone/mudstone", "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "sedimentary other chemical or biochemical", "lithname2": "iron formation", "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group lower", "formation": "Mount McRae Shale and Mount Sylvia Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2541", "maxuncerty": null, "min_age_ma": "2501", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 1.3227297790200001, "shape_area": 0.0026336634247400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 540982.640750179998577, 7521020.221449459902942 ], [ 541521.121391479973681, 7520848.708374029956758 ], [ 541937.188143379986286, 7520653.210939779877663 ], [ 542671.450893379980698, 7520383.709697290323675 ], [ 543577.010112980031408, 7520212.209388909861445 ], [ 544262.249843609984964, 7520065.68780876044184 ], [ 545094.439139469992369, 7519771.689673730172217 ], [ 545755.238412400009111, 7519649.69032904971391 ], [ 546464.969501200015657, 7519478.178228080272675 ], [ 547076.849915059981868, 7519282.180675569921732 ], [ 547541.840230589965358, 7518939.660958710126579 ], [ 548055.852417140034959, 7518401.159735480323434 ], [ 548276.089059549965896, 7518083.15027062036097 ], [ 548422.971490449970588, 7517764.649379810318351 ], [ 548643.208647969993763, 7517520.139687079936266 ], [ 548814.528343240031973, 7517299.638577819801867 ], [ 548887.949365769978613, 7517006.139925830066204 ], [ 548790.080467739957385, 7516712.149872760288417 ], [ 548447.359045919962227, 7516541.141613990068436 ], [ 547933.449674039962701, 7516369.641400409862399 ], [ 547615.228354310034774, 7516271.648910780437291 ], [ 547248.119517949991859, 7516051.66193072963506 ], [ 546954.42878852004651, 7515806.658421809785068 ], [ 546880.978811490000226, 7515611.148687190376222 ], [ 546758.599542230018415, 7515243.660391540266573 ], [ 546513.859153309953399, 7515023.638733309693635 ], [ 546146.721682289964519, 7514876.650525569915771 ], [ 545632.76747008995153, 7514803.15205886028707 ], [ 545314.569968260009773, 7514632.161047049798071 ], [ 544825.082816450041719, 7514215.658196600154042 ], [ 544678.24831814004574, 7513799.659713629633188 ], [ 544482.418259960017167, 7513016.647983860224485 ], [ 544482.410793130053207, 7512551.6588896503672 ], [ 544335.540762530057691, 7512062.148802960291505 ], [ 544090.778932159999385, 7511817.15087560005486 ], [ 544029.577797919977456, 7511765.412042209878564 ], [ 543772.59828351996839, 7511548.157806159928441 ], [ 543601.278376020025462, 7511278.650549460202456 ], [ 543478.910323719959706, 7510911.660685740411282 ], [ 543381.021468420047313, 7510324.151035180315375 ], [ 543356.489253900013864, 7509687.648783350363374 ], [ 543283.109859740012325, 7509198.147471319884062 ], [ 543136.210824489942752, 7508978.151689469814301 ], [ 542866.960801149951294, 7508635.647619180381298 ], [ 542622.220380789949559, 7508170.659347269684076 ], [ 542597.751156199956313, 7507729.650091419927776 ], [ 542426.430921099963598, 7507142.661000530235469 ], [ 542157.18836409994401, 7506530.64897022023797 ], [ 541936.889746180037037, 7506065.650917610153556 ], [ 541716.579055089969188, 7505698.161702239885926 ], [ 540762.078696239972487, 7504939.64010277017951 ], [ 540125.770195159944706, 7504572.649722670204937 ], [ 539244.629889119998552, 7504132.149919520132244 ], [ 538755.142619839985855, 7503960.650235869921744 ], [ 538020.880797310033813, 7503667.152258199639618 ], [ 537555.862850739969872, 7503544.648875479586422 ], [ 536992.93201675999444, 7503520.142260869964957 ], [ 536527.908533600042574, 7503593.64957720041275 ], [ 536258.679497829987668, 7503520.142049100250006 ], [ 536013.901978750014678, 7503250.640689079649746 ], [ 535891.528701080009341, 7502908.137486189603806 ], [ 535646.811027529998682, 7502516.630293989554048 ], [ 534985.921421359991655, 7502076.121785869821906 ], [ 534325.121031209942885, 7501880.119671490043402 ], [ 533444.018584429984912, 7501684.610329260118306 ], [ 532856.65218931005802, 7501611.11120583023876 ], [ 532540.009993170038797, 7501632.111001109704375 ], [ 532622.259100739960559, 7501487.100418940186501 ], [ 532463.803578209946863, 7501487.067533879540861 ], [ 531172.410778839956038, 7501486.738344410434365 ], [ 530418.709116179961711, 7501486.495882200077176 ], [ 529735.54628834000323, 7501486.244186529889703 ], [ 529283.510124549968168, 7501486.060903140343726 ], [ 528055.80054874997586, 7501423.059336570091546 ], [ 527895.380413289996795, 7501600.550623670220375 ], [ 528269.54911084997002, 7501675.549466320313513 ], [ 528644.579739370034076, 7501769.560601740144193 ], [ 529113.411460499977693, 7501800.570461129769683 ], [ 529800.969874809961766, 7501832.06981464009732 ], [ 530707.279987629968673, 7501832.090665870346129 ], [ 531832.36921708995942, 7502050.601514429785311 ], [ 532130.460120560019277, 7502165.598587240092456 ], [ 532401.508138290024363, 7501876.600775930099189 ], [ 532551.200599230010994, 7501832.098164609633386 ], [ 533020.02924736996647, 7501925.602211659774184 ], [ 533613.830401089973748, 7502019.621294899843633 ], [ 534488.93889664998278, 7502207.120117579586804 ], [ 534926.429906480014324, 7502457.130986009724438 ], [ 535239.000016969977878, 7502707.138429320417345 ], [ 535551.54326118004974, 7503144.641235849820077 ], [ 535676.530275200027972, 7503519.638427189551294 ], [ 535926.551618380006403, 7503894.651935909874737 ], [ 536270.368330019991845, 7504082.142233549617231 ], [ 536676.589791630045511, 7504113.647556249983609 ], [ 536989.179971029981971, 7504051.152139419689775 ], [ 537895.510879740002565, 7503957.148059849627316 ], [ 538364.259979589958675, 7504113.660114450380206 ], [ 539051.811228069942445, 7504394.649407530203462 ], [ 539676.888922760030255, 7504613.650578799657524 ], [ 540145.700841389945708, 7504988.647760559804738 ], [ 540770.792363699991256, 7505332.151711080223322 ], [ 541145.760131699964404, 7505676.148550059646368 ], [ 541614.601450589951128, 7506144.651670889928937 ], [ 541895.868716700002551, 7506645.16197604034096 ], [ 542083.358566339942627, 7507145.159036980010569 ], [ 542208.389240680029616, 7507707.658948659896851 ], [ 542145.908449199981987, 7508332.659268240444362 ], [ 542239.658127030008473, 7508645.160752990283072 ], [ 542458.470874110003933, 7508957.660044039599597 ], [ 542677.241687429952435, 7509082.66245721001178 ], [ 542864.719560010009445, 7509239.16115100029856 ], [ 542927.2699991799891, 7509989.150851080194116 ], [ 542927.261376110021956, 7510676.660736439749599 ], [ 542802.268583850003779, 7511333.159598980098963 ], [ 542677.702807420049794, 7511769.217952099628747 ], [ 542677.290337580023333, 7511770.661792299710214 ], [ 542270.978754749987274, 7512270.668791599571705 ], [ 541927.239561259979382, 7512614.179933479987085 ], [ 541708.510433039977215, 7512864.170864880084991 ], [ 541802.24961754004471, 7513020.67063379008323 ], [ 542052.241269630030729, 7512989.160135299898684 ], [ 542771.040110750007443, 7512583.159594760276377 ], [ 543333.622250700020231, 7512333.149206009693444 ], [ 543662.490462539950386, 7512139.149124950170517 ], [ 543999.971377330017276, 7512226.148398630321026 ], [ 544083.619118619943038, 7512436.151478759944439 ], [ 544110.92760646995157, 7512830.148890050128102 ], [ 544043.070209590019658, 7513263.661248640157282 ], [ 544019.521404400002211, 7513652.158787080086768 ], [ 544059.151025839964859, 7513963.659865760244429 ], [ 544226.390946530038491, 7514363.67160225007683 ], [ 544514.33162234001793, 7514718.658802700228989 ], [ 545260.532290859962814, 7515172.657789319753647 ], [ 545521.6189673099434, 7515241.149009400047362 ], [ 545769.668800889980048, 7515246.159009889699519 ], [ 546023.718619870021939, 7515187.658571889624 ], [ 546176.478632229962386, 7515206.160606130026281 ], [ 546311.360664939973503, 7515485.160285499878228 ], [ 546357.157507620053366, 7515752.148936149664223 ], [ 546479.040056189987808, 7515980.647956600412726 ], [ 546785.549659520038404, 7516240.150772740133107 ], [ 547104.427803089958616, 7516423.159972 ], [ 547346.939772429992445, 7516606.149222410283983 ], [ 547595.460421300027519, 7516706.64884824026376 ], [ 547875.430357409990393, 7516749.648120380006731 ], [ 548117.548875179956667, 7516850.140485050156713 ], [ 548149.559577399981208, 7516888.138962370343506 ], [ 548226.580347919953056, 7517034.140241320244968 ], [ 548233.58887604996562, 7517167.641332849860191 ], [ 548113.498294639983214, 7517321.138408009894192 ], [ 547904.221216939971782, 7517443.151080770418048 ], [ 547777.708135260036215, 7517584.151709419675171 ], [ 547740.041384069947526, 7517679.64995289966464 ], [ 547778.850409999955446, 7517819.650623749941587 ], [ 547817.521218489971943, 7517927.658131849952042 ], [ 547817.848904539947398, 7517997.657741430215538 ], [ 547805.601275980006903, 7518086.660438559949398 ], [ 547459.039317650021985, 7518552.670614539645612 ], [ 547115.298340609995648, 7518833.660968529991806 ], [ 546740.211962820030749, 7519052.669073389843106 ], [ 546333.978435499942861, 7519208.680190100334585 ], [ 545771.421882549999282, 7519333.67895373981446 ], [ 545052.591250750003383, 7519396.201453859917819 ], [ 544646.311593209975399, 7519490.192598029971123 ], [ 544083.791262720013037, 7519740.191862120293081 ], [ 543583.748000220046379, 7519990.189772630110383 ], [ 543021.179025089950301, 7520021.20073467027396 ], [ 542521.160122800036334, 7520084.202810940332711 ], [ 541896.109705229988322, 7520302.71127125993371 ], [ 541521.067888260004111, 7520552.710816349834204 ], [ 541052.321444040047936, 7520834.207481199875474 ], [ 540677.271513910032809, 7520865.219127329997718 ], [ 540302.252228950033896, 7520771.719968450255692 ], [ 539833.450501719955355, 7520552.719107920303941 ], [ 539614.67884160997346, 7520396.718216490000486 ], [ 539427.008212720043957, 7520072.729762 ], [ 539426.668668980011716, 7519997.231947139836848 ], [ 539413.251687229960226, 7519863.731583850458264 ], [ 539374.321725239977241, 7519691.720033509656787 ], [ 539322.797352000023238, 7519564.718835569918156 ], [ 539175.801647959975526, 7519406.719772949814796 ], [ 538907.860808350029401, 7519223.218876370228827 ], [ 538569.997983230045065, 7519059.732398999854922 ], [ 538251.419350809999742, 7518934.229637529700994 ], [ 537913.880765930050984, 7518821.720027790404856 ], [ 537588.630172290024348, 7518625.729829389601946 ], [ 537504.891110530006699, 7518403.739562990143895 ], [ 537485.079137690016069, 7518257.230500830337405 ], [ 537267.679878070019186, 7518016.729045360349119 ], [ 536885.82106514996849, 7517948.739742060191929 ], [ 536415.309916740050539, 7517970.239478410221636 ], [ 535379.197512720013037, 7518065.239417679607868 ], [ 534393.389142140047625, 7518045.250069919973612 ], [ 533713.010928750038147, 7518061.748432110063732 ], [ 533038.981324749998748, 7518065.251714630052447 ], [ 532549.079240350052714, 7518029.75042087957263 ], [ 532179.960140989976935, 7517967.761602830141783 ], [ 531758.64920034003444, 7517632.750212909653783 ], [ 531796.090702429995872, 7517486.249421309679747 ], [ 531769.671595370047726, 7517282.750366459600627 ], [ 531693.101855669985525, 7517225.759357900358737 ], [ 531515.108686399995349, 7517239.752154059708118 ], [ 531210.670135739957914, 7517406.761843520216644 ], [ 530968.829944240045734, 7517376.250337759964168 ], [ 530656.489814030006528, 7517225.23943976033479 ], [ 530490.178360010031611, 7517022.228644349612296 ], [ 530476.311610009986907, 7516787.22830564994365 ], [ 530564.126742949942127, 7516525.728350619785488 ], [ 530702.417887600022368, 7516200.239313459955156 ], [ 530720.108391609974205, 7515894.75172952003777 ], [ 530636.218579089967534, 7515653.23923297971487 ], [ 530527.559888079995289, 7515526.730163279920816 ], [ 530504.158913849969395, 7515475.23132895026356 ], [ 530488.418434530030936, 7515419.230454670265317 ], [ 530485.088802239974029, 7515344.741084960289299 ], [ 530493.648228749982081, 7515311.231420080177486 ], [ 530533.909162009949796, 7515253.239404910244048 ], [ 530748.808856319985352, 7515076.739342969842255 ], [ 530830.258743879967369, 7514986.238437609747052 ], [ 530860.79761279001832, 7514922.239439809694886 ], [ 530867.692459349986166, 7514885.237596809864044 ], [ 530865.880872169975191, 7514850.738035580143332 ], [ 530852.188056100043468, 7514823.740399150177836 ], [ 530826.129318200051785, 7514807.238458000123501 ], [ 530791.370318740024231, 7514798.746725520119071 ], [ 530647.470723689999431, 7514789.7284668199718 ], [ 530503.900893770041876, 7514762.228310209698975 ], [ 530423.070899500045925, 7514734.219831620343029 ], [ 530218.74973763001617, 7514643.220442649908364 ], [ 530148.117918489966542, 7514620.220253130421042 ], [ 529819.729662840021774, 7514562.701285749673843 ], [ 529740.341517299995758, 7514528.711873450316489 ], [ 529707.720653429976664, 7514496.70929556991905 ], [ 529694.629846600000747, 7514468.700406789779663 ], [ 529689.571899089962244, 7514437.698042769916356 ], [ 529701.409157510031946, 7514334.18831204995513 ], [ 529795.92030961997807, 7514143.20673255994916 ], [ 529979.421387149952352, 7513951.220812080428004 ], [ 530099.42050291004125, 7513784.71054114960134 ], [ 530130.411366789950989, 7513612.709768359549344 ], [ 530097.659862149972469, 7513415.708956269547343 ], [ 529892.520336349960417, 7513079.698101550340652 ], [ 529541.3494360599434, 7512788.690159239806235 ], [ 529082.381066789967008, 7512568.190159110352397 ], [ 528725.79111038998235, 7512474.67035620007664 ], [ 528381.821448970003985, 7512374.648699250072241 ], [ 528019.00225657003466, 7512313.15074963029474 ], [ 527573.720331709948368, 7512290.140388590283692 ], [ 527179.358417070005089, 7512292.118612400256097 ], [ 526765.851011640042998, 7512269.119919019751251 ], [ 526364.729590249946341, 7512169.600267699919641 ], [ 526007.827766750007868, 7512012.100629179738462 ], [ 525733.400640110019594, 7511829.078617500141263 ], [ 525715.241239189985208, 7511806.885280930437148 ], [ 525541.539301850018091, 7511594.592479820363224 ], [ 525355.470764999976382, 7511252.092282770201564 ], [ 525201.961775040021166, 7511074.579809789545834 ], [ 524991.771459970041178, 7510993.080950760282576 ], [ 524788.12910954002291, 7510968.56984443962574 ], [ 524628.93126082001254, 7510931.06005815975368 ], [ 524449.939836779958569, 7510735.050195139832795 ], [ 524296.708865039981902, 7510608.561523400247097 ], [ 524175.581662399985362, 7510552.060833330266178 ], [ 524162.859050359984394, 7510539.051478800363839 ], [ 523991.429057269997429, 7510603.559072679840028 ], [ 523647.860599100007676, 7510430.539885059930384 ], [ 523323.940627629985102, 7510193.041663180105388 ], [ 522935.251059490023181, 7509934.04007126018405 ], [ 521858.9592969599762, 7509706.585036410018802 ], [ 521402.089786909986287, 7509610.008999690413475 ], [ 520906.006727360014338, 7509526.057665060274303 ], [ 520005.170785209978931, 7509373.567330420017242 ], [ 519868.870076789986342, 7509350.490000429563224 ], [ 519307.440221610013396, 7509273.489978609606624 ], [ 518912.777727360022254, 7509330.469264090061188 ], [ 519982.678381100005936, 7509614.489995859563351 ], [ 520790.33930395997595, 7509810.000191969797015 ], [ 521671.439029879984446, 7509957.018936470150948 ], [ 522846.268818399985321, 7510275.031419220380485 ], [ 523849.760689369984902, 7510813.54871303960681 ], [ 524461.650530240032822, 7511278.559725630097091 ], [ 525049.020320000010543, 7511768.067746119573712 ], [ 525112.657200939953327, 7511807.879730549640954 ], [ 525636.488515109987929, 7512135.577202550135553 ], [ 526174.970592719968408, 7512331.08860176987946 ], [ 526786.8993170800386, 7512576.111894340254366 ], [ 527766.012258989969268, 7512845.148149039596319 ], [ 528451.322689770022407, 7512992.157981620170176 ], [ 528965.390379579970613, 7513114.681486169807613 ], [ 529283.53027829003986, 7513310.179969239979982 ], [ 529552.809830010053702, 7513653.199009819887578 ], [ 529650.70078537997324, 7514044.698509619571269 ], [ 529552.831549320020713, 7514338.19016341958195 ], [ 529528.320054790005088, 7514632.188188039697707 ], [ 529748.660451899981126, 7514852.208768350072205 ], [ 530115.820970879984088, 7515146.220316509716213 ], [ 530091.311437780037522, 7515684.222140549682081 ], [ 529846.538256110041402, 7516247.207606200128794 ], [ 529675.219794600037858, 7516663.697559090331197 ], [ 529601.811084239976481, 7517030.700361669994891 ], [ 529773.12969517998863, 7517397.709674839861691 ], [ 530164.801248240051791, 7517789.222396439872682 ], [ 530752.209263560012914, 7518009.750843860208988 ], [ 531462.029136199969798, 7518205.26035728957504 ], [ 532392.009412940009497, 7518401.250288999639452 ], [ 533028.401630589971319, 7518401.250747869722545 ], [ 533909.450898190028965, 7518499.250098859891295 ], [ 535108.697880489984527, 7518450.237544589675963 ], [ 536112.210407849983312, 7518646.248493609949946 ], [ 536724.078674650052562, 7518988.738700640387833 ], [ 537384.898478670045733, 7519429.231762089766562 ], [ 537825.370399679988623, 7519576.228570929728448 ], [ 538265.961347240023315, 7519673.72992848046124 ], [ 538608.648913390003145, 7519894.229630409739912 ], [ 539000.201804729993455, 7520285.721641919575632 ], [ 539342.811559570021927, 7520555.229987599886954 ], [ 539807.878525439999066, 7520750.719968990422785 ], [ 540272.898704249993898, 7520922.218769470229745 ], [ 540982.640750179998577, 7521020.221449459902942 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.8680", "objectid": "8681", "lithstrtno": "2219", "code": "A-FO-od", "unitname": "Fortescue Group", "gswastatus": "Informal", "rank": "Formation", "descriptn": "Dolerite dyke or sill", "parentcode": "A-FO-xb-s", "parentname": "Fortescue Group", "rocktype1": "igneous mafic intrusive", "lithname1": "dolerite", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": null, "formation": null, "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": null, "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma); Fortescue Rifting Event (2775 - 2752 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2775", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.55572759406399996, "shape_area": 0.0022604386659900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 520542.462652940012049, 7514160.968576629646122 ], [ 519928.680768750025891, 7514807.459462120197713 ], [ 519922.708887970016804, 7514883.940687100403011 ], [ 519917.670074609981384, 7515169.947305140085518 ], [ 519925.960200970002916, 7515564.941732300445437 ], [ 519953.787620300019626, 7515724.758886470459402 ], [ 519900.343085089989472, 7516263.777936239726841 ], [ 520008.762039760011248, 7516612.118976039811969 ], [ 520117.299361719982699, 7517047.57921488955617 ], [ 520185.237884389993269, 7517395.971388869918883 ], [ 520361.539808640023693, 7518034.621373900212348 ], [ 520510.397251019952819, 7518324.824829200282693 ], [ 520859.66047996992711, 7518796.493398250080645 ], [ 520896.319889380014502, 7519002.919434909708798 ], [ 520872.96024511998985, 7519429.411170129664242 ], [ 520471.885893520026002, 7519820.437087640166283 ], [ 520215.746720750001259, 7520082.134254289790988 ], [ 520229.626076239976101, 7520372.515831279568374 ], [ 520216.449312160024419, 7520619.372835559770465 ], [ 520081.754149810003582, 7520851.868108260445297 ], [ 520014.649357219983358, 7521156.874627060256898 ], [ 519981.788932837487664, 7521273.574077860452235 ], [ 522409.242599931545556, 7521273.574077860452235 ], [ 522348.220414990035351, 7520706.969655729830265 ], [ 522282.15959312999621, 7520191.960507390089333 ], [ 522226.659193270024844, 7519237.460663010366261 ], [ 522200.289610730018467, 7519040.458986540324986 ], [ 521884.939737839973532, 7518265.451066539622843 ], [ 521800.200406750023831, 7517832.950569169595838 ], [ 521779.159589310002048, 7517438.447461250238121 ], [ 521738.93966532999184, 7516999.958360100165009 ], [ 521666.768648990022484, 7516535.460828520357609 ], [ 521581.801603920001071, 7516058.468591059558094 ], [ 521477.821174010052346, 7515594.469858160242438 ], [ 521335.779068149975501, 7515136.958421420305967 ], [ 521233.060718770022504, 7514933.968699309974909 ], [ 521098.600245599984191, 7514756.481158919632435 ], [ 520906.899310519977007, 7514566.459113360382617 ], [ 520663.783022239978891, 7514268.97126024030149 ], [ 520542.462652940012049, 7514160.968576629646122 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.9853", "objectid": "9854", "lithstrtno": "2219", "code": "A-FO-od", "unitname": "Fortescue Group", "gswastatus": "Informal", "rank": "Formation", "descriptn": "Dolerite dyke or sill", "parentcode": "A-FO-xb-s", "parentname": "Fortescue Group", "rocktype1": "igneous mafic intrusive", "lithname1": "dolerite", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": null, "formation": null, "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": null, "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma); Fortescue Rifting Event (2775 - 2752 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2775", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.21476456169700001, "shape_area": 0.00086849203173099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 521206.44805255002575, 7513361.990735240280628 ], [ 521379.008907879993785, 7513545.499772519804537 ], [ 521635.52861825999571, 7513989.981383229605854 ], [ 521885.749655669962522, 7514452.988889950327575 ], [ 522117.140884039981756, 7514967.491810309700668 ], [ 522343.17095966998022, 7515685.47884355019778 ], [ 522466.829111320024822, 7516263.981953090056777 ], [ 522609.569676789978985, 7516861.48109246045351 ], [ 522796.28983674000483, 7517337.469327299855649 ], [ 522988.712196270003915, 7517680.467206840403378 ], [ 523232.190064209979028, 7518054.490173670463264 ], [ 523405.710937699943315, 7518429.000097339972854 ], [ 523496.349508450017311, 7518765.999401739798486 ], [ 523472.781448009947781, 7519148.019750829786062 ], [ 523429.659503509989008, 7519440.998553990386426 ], [ 523304.758738029981032, 7519919.010429590009153 ], [ 523160.551499070017599, 7520352.510412150062621 ], [ 523073.630857660027687, 7520791.999725989997387 ], [ 523007.305717104056384, 7521273.574077860452235 ], [ 524942.084509948384948, 7521273.574077860452235 ], [ 524958.171890130033717, 7521215.120178709737957 ], [ 524906.299241830012761, 7521005.109648800455034 ], [ 524796.9697620900115, 7520757.600493759848177 ], [ 524637.49894109996967, 7520656.588923869654536 ], [ 524478.680098630022258, 7520689.07113432046026 ], [ 524243.453589889977593, 7520709.571230069734156 ], [ 524143.549343852791935, 7520656.412410277873278 ], [ 524134.350605180021375, 7520500.060532470233738 ], [ 524152.72074481000891, 7520353.571849780157208 ], [ 524202.369046679988969, 7520098.558881849981844 ], [ 524239.229006730020046, 7519837.549687219783664 ], [ 524237.668311430083122, 7519506.55080983042717 ], [ 524158.951758319977671, 7519010.529038690030575 ], [ 524157.999326489982195, 7518807.028272549621761 ], [ 524119.032020880025811, 7518641.521978080272675 ], [ 524028.608133540023118, 7518355.517049229703844 ], [ 523912.941209269978572, 7518108.009794030338526 ], [ 523733.722453519992996, 7517860.998836340382695 ], [ 523509.899753010016866, 7517613.990790239535272 ], [ 523271.098302030004561, 7516882.98878544010222 ], [ 523433.95207786001265, 7516360.500125460326672 ], [ 523476.730214309995063, 7515997.508203850127757 ], [ 523373.289957669971045, 7515654.508595500141382 ], [ 523180.56040567997843, 7515248.00934008974582 ], [ 523089.739643169974443, 7514873.007855829782784 ], [ 523056.320965659979265, 7514536.009334879927337 ], [ 523067.817986970010679, 7514281.009863840416074 ], [ 523066.150845020019915, 7513931.010712930001318 ], [ 522886.021028539980762, 7513505.530193040147424 ], [ 522738.429538290016353, 7513220.030236219987273 ], [ 522572.099404939974193, 7513030.021872960031033 ], [ 522380.780247449991293, 7512916.521716950461268 ], [ 522208.370498010015581, 7512764.519335090182722 ], [ 522004.111833690025378, 7512606.520235720090568 ], [ 521206.44805255002575, 7513361.990735240280628 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.16771", "objectid": "16773", "lithstrtno": "2191", "code": "A-FOr-b", "unitname": "Mount Roe Basalt", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Basaltic volcanic rock; local volcaniclastic and siliciclastic rocks", "parentcode": "A-FOS1-xbb-s", "parentname": "Fortescue Group sequence 1", "rocktype1": "igneous mafic volcanic", "lithname1": null, "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": "Fortescue Group sequence 1", "formation": "Mount Roe Basalt", "member": null, "bed": null, "state": "Western Australia", "watectunit": "Large igneous provinces and dyke swarms; West Australian Craton", "ssuite_tec": "Fortescue Large Igneous Province", "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": "Marble Bar Sub-basin; Northeast Pilbara Sub-basin", "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2775", "maxuncerty": "10", "min_age_ma": "2772", "minuncerty": "2", "max_age_da": "Isotopic", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 0.044852185260600003, "shape_area": 8.7229217986999993e-05 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 544579.53048045001924, 7476504.130518309772015 ], [ 544635.309355729958043, 7476185.629217100329697 ], [ 544697.560710279969499, 7475911.618799359537661 ], [ 544760.11179583997, 7475688.6086087198928 ], [ 544803.540456530055963, 7475472.109343989752233 ], [ 544809.111402770038694, 7475293.618115450255573 ], [ 544795.861381420050748, 7475198.121260889805853 ], [ 544744.57259790005628, 7475103.109389079734683 ], [ 544706.15904447005596, 7475046.109696970321238 ], [ 544699.739898180007003, 7475046.109928339719772 ], [ 544440.75061997002922, 7475397.621103939600289 ], [ 544257.600703369942494, 7475666.100282370112836 ], [ 544150.728781630052254, 7475933.609804259613156 ], [ 544019.370185459963977, 7476380.111608060076833 ], [ 543982.239278460037895, 7476596.631488529965281 ], [ 543971.598602070007473, 7477042.141102709807456 ], [ 543984.660283060045913, 7477112.140265529975295 ], [ 544003.990012840018608, 7477163.14045783970505 ], [ 544137.380202159984037, 7477130.630485829897225 ], [ 544245.439829859999008, 7477117.1421510996297 ], [ 544398.181233800016344, 7477135.639099080115557 ], [ 544410.870588200050406, 7477129.139150200411677 ], [ 544486.600448949960992, 7477014.139129949733615 ], [ 544517.341558640007861, 7476797.648935760371387 ], [ 544579.53048045001924, 7476504.130518309772015 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.16936", "objectid": "16938", "lithstrtno": "4458", "code": "A-FO-xo-a", "unitname": "Fortescue Group", "gswastatus": "Informal", "rank": "Formation", "descriptn": "Layered mafic and ultramafic sills; coarse-grained pyroxenite overlain by leucocratic gabbro or dolerite; local basal serpentinite; metamorphosed", "parentcode": "A-FO-xb-s", "parentname": "Fortescue Group", "rocktype1": "igneous mafic intrusive", "lithname1": null, "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "igneous ultramafic intrusive", "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": null, "formation": null, "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": "South Pilbara Sub-basin", "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2775", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.320359391406, "shape_area": 0.0012670522943900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 549209.66171369550284, 7473446.765934069640934 ], [ 549227.310927379992791, 7473627.689886249601841 ], [ 549247.909778489964083, 7473964.692137549631298 ], [ 549249.548923820024356, 7474308.690579039976001 ], [ 549238.410781800048426, 7474633.191752339713275 ], [ 549252.850128320045769, 7474996.208536789752543 ], [ 549279.419068390037864, 7475237.699863799847662 ], [ 549312.020508819958195, 7475403.210941050201654 ], [ 549441.609890660038218, 7475898.720854910090566 ], [ 549718.64053223002702, 7476655.231389840133488 ], [ 549771.518295009969734, 7477131.219166809692979 ], [ 549850.877924870001152, 7477501.740025259554386 ], [ 549983.15048365003895, 7477501.740314709953964 ], [ 550062.460199619992636, 7477184.230514120310545 ], [ 550300.528914020047523, 7476470.232370080426335 ], [ 550432.788980519981124, 7475570.72875999007374 ], [ 550485.680286339949816, 7474936.216461749747396 ], [ 550353.399890600005165, 7474116.218901770189404 ], [ 550353.422429812490009, 7473446.765934069640934 ], [ 549209.66171369550284, 7473446.765934069640934 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.7877", "objectid": "7878", "lithstrtno": "4105", "code": "P_-HAw-fr", "unitname": "Woongarra Rhyolite", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Rhyolite rhyodacite rhyolitic breccia and banded iron-formation; metamorphosed", "parentcode": "P_-HAU-xci-f", "parentname": "Hamersley Group upper", "rocktype1": "igneous felsic volcanic", "lithname1": "rhyolite", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group upper", "formation": "Woongarra Rhyolite", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Paleoproterozoic", "ageto": "Paleoproterozoic", "max_age_ma": "2449", "maxuncerty": "3", "min_age_ma": "2445", "minuncerty": "5", "max_age_da": "Isotopic", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 0.92142801741199998, "shape_area": 0.0021868512288300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 561992.061383410007693, 7491548.828501519747078 ], [ 562521.079803650034592, 7491443.339907119981945 ], [ 562666.860106543055736, 7491443.341978270560503 ], [ 562666.860106543055736, 7490997.268630385398865 ], [ 562434.020006260019727, 7490960.339716799557209 ], [ 562255.138719380018301, 7490942.341470959596336 ], [ 562111.701183879980817, 7490942.341656750068069 ], [ 561967.689865470048971, 7490957.840596780180931 ], [ 561789.330315939965658, 7490993.841509629972279 ], [ 561447.579118140041828, 7491087.831228899769485 ], [ 561343.999657099950127, 7491106.820366109721363 ], [ 561202.150876770028844, 7491117.830765389837325 ], [ 561058.57812742004171, 7491114.820658599957824 ], [ 560878.559417800046504, 7491095.331193099729717 ], [ 560700.429184500011615, 7491060.818243809975684 ], [ 560526.88127023994457, 7491011.818067179992795 ], [ 559929.459091600030661, 7490792.82088456954807 ], [ 559330.811492510023527, 7490623.799296939745545 ], [ 558764.581863790052012, 7490563.31014512013644 ], [ 558179.327531220042147, 7490528.301644960418344 ], [ 557606.920336249982938, 7490512.298539609648287 ], [ 557149.109579319949262, 7490527.790441599674523 ], [ 556602.428969210013747, 7490568.778313140384853 ], [ 556093.739616920007393, 7490584.269089750014246 ], [ 555521.35792516998481, 7490587.271619060076773 ], [ 555006.431059389957227, 7490628.260786630213261 ], [ 554586.930939109995961, 7490675.261713890358806 ], [ 554212.041539250058122, 7490728.260465569794178 ], [ 553672.048846399993636, 7490845.750289809890091 ], [ 553459.540769950021058, 7490815.750678749755025 ], [ 553048.378829860012047, 7490744.251306530088186 ], [ 552690.860442089964636, 7490601.252312409691513 ], [ 552297.549740719958209, 7490511.749160650186241 ], [ 551356.233513029990718, 7490337.189423720352352 ], [ 551356.233714660047553, 7490337.249311570078135 ], [ 550976.810912359971553, 7490294.53687281999737 ], [ 550574.710670660017058, 7490249.26102614030242 ], [ 550205.918517110054381, 7490207.726119190454483 ], [ 549848.407810820033774, 7490011.218461450189352 ], [ 549687.558985300012864, 7489850.229938889853656 ], [ 549544.481534000020474, 7489653.720123520120978 ], [ 549437.210341510013677, 7489367.220461320132017 ], [ 549562.359360320027918, 7489135.219783149659634 ], [ 549866.299771460006014, 7488831.230419640429318 ], [ 550205.898894299985841, 7488652.238660969771445 ], [ 550581.371146389981732, 7488563.240808730013669 ], [ 550992.346481370041147, 7488343.015108509920537 ], [ 551348.8731804699637, 7488151.95201200991869 ], [ 551348.879236279986799, 7488153.749205430038273 ], [ 552190.307156149996445, 7487704.748273840174079 ], [ 552458.420305559993722, 7487508.259410570375621 ], [ 552762.38842922996264, 7487347.261956869624555 ], [ 554389.201146050007083, 7486632.268889189697802 ], [ 555086.388819269952364, 7486292.778706509619951 ], [ 556319.90044342004694, 7485935.28877651039511 ], [ 556607.551553230034187, 7485875.289830160327256 ], [ 556819.960292669944465, 7485816.791321939788759 ], [ 557410.971217770013027, 7485606.310205210000277 ], [ 557618.360711049987003, 7485548.799116269685328 ], [ 558502.350900650024414, 7485368.811100269667804 ], [ 558823.288362130057067, 7485292.819745820015669 ], [ 559416.111160399974324, 7485121.319079210050404 ], [ 559591.731237130006775, 7485082.821547220461071 ], [ 559770.850210809963755, 7485060.829919259995222 ], [ 559988.580673109972849, 7485053.330759939737618 ], [ 560281.059761279961094, 7485063.327579639852047 ], [ 560646.099169709952548, 7485094.838985750451684 ], [ 561378.661332880030386, 7485181.329030959866941 ], [ 561807.929275420028716, 7485214.352229559794068 ], [ 562666.860106543055736, 7485244.75902686920017 ], [ 562666.860106543055736, 7484752.543935566209257 ], [ 562045.031326589989476, 7484698.357952949590981 ], [ 560960.618532820022665, 7484619.337542350403965 ], [ 560220.029631930054165, 7484672.327784390188754 ], [ 559308.365425799973309, 7484784.212309150025249 ], [ 558712.487350440002047, 7484857.311369420029223 ], [ 557628.01885943999514, 7485201.302174190059304 ], [ 556464.279823770048097, 7485491.791407180018723 ], [ 556105.40838184999302, 7485541.790630529634655 ], [ 555872.959852430038154, 7485631.291738339699805 ], [ 555354.521061060018837, 7485756.290413860231638 ], [ 554853.959906719974242, 7486024.278550979681313 ], [ 554407.080602459958754, 7486131.769226860255003 ], [ 554049.511369140003808, 7486292.771328049711883 ], [ 553602.568778170039877, 7486524.766971509903669 ], [ 553280.832354560028762, 7486703.767619789578021 ], [ 552583.568355859955773, 7487114.748353379778564 ], [ 552297.569548410014249, 7487275.750405360013247 ], [ 552065.191636570030823, 7487418.750326620414853 ], [ 551493.128464640001766, 7487633.249030480161309 ], [ 551347.461202039965428, 7487732.949910280294716 ], [ 551153.438051630044356, 7487865.743341330438852 ], [ 550688.600265090004541, 7488098.239096100442111 ], [ 550313.250286179943942, 7488276.730200399644673 ], [ 549776.920173540012911, 7488455.730471529997885 ], [ 549365.731043579988182, 7488723.719588650390506 ], [ 549079.658860909985378, 7489009.730146840214729 ], [ 548918.779980969964527, 7489260.229725419543684 ], [ 548829.422016810043715, 7489528.210123609751463 ], [ 548883.05092617997434, 7489707.221509889699519 ], [ 548936.638724540011026, 7489850.221444319933653 ], [ 549043.907902959967032, 7490011.218519140034914 ], [ 549204.861118479981087, 7490100.220020210370421 ], [ 549687.550105770002119, 7490279.220335530117154 ], [ 550062.919663849985227, 7490440.229997159913182 ], [ 550545.609055069973692, 7490547.228825179859996 ], [ 550992.539270390057936, 7490583.220552190206945 ], [ 551357.266521550016478, 7490644.027377779595554 ], [ 551421.538080709986389, 7490654.741692890413105 ], [ 552011.551299010054208, 7490726.240335299633443 ], [ 552494.177772370050661, 7490904.748294780030847 ], [ 553012.629012149991468, 7491012.248947810381651 ], [ 553584.681596540031023, 7491101.749320579692721 ], [ 553889.61093282001093, 7491130.761719340458512 ], [ 554601.599390279967338, 7491076.260436410084367 ], [ 555179.999341189977713, 7491002.770095380023122 ], [ 555720.118228579987772, 7490923.777944720350206 ], [ 556656.288962260005064, 7490887.148668210022151 ], [ 557227.069282240001485, 7490864.787604030221701 ], [ 557703.978934710030444, 7490861.789144589565694 ], [ 558231.978382559958845, 7490903.811121249571443 ], [ 558811.25888198998291, 7491008.81138888001442 ], [ 559702.838738769991323, 7491271.312594629824162 ], [ 559976.550313269952312, 7491333.308798779733479 ], [ 560224.870665209949948, 7491408.31000730022788 ], [ 560537.252318589948118, 7491565.818223150447011 ], [ 560987.000516430009156, 7491628.319632159546018 ], [ 561330.888508139993064, 7491654.82883698027581 ], [ 561992.061383410007693, 7491548.828501519747078 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.15284", "objectid": "15286", "lithstrtno": "4105", "code": "P_-HAw-fr", "unitname": "Woongarra Rhyolite", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Rhyolite rhyodacite rhyolitic breccia and banded iron-formation; metamorphosed", "parentcode": "P_-HAU-xci-f", "parentname": "Hamersley Group upper", "rocktype1": "igneous felsic volcanic", "lithname1": "rhyolite", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group upper", "formation": "Woongarra Rhyolite", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Paleoproterozoic", "ageto": "Paleoproterozoic", "max_age_ma": "2449", "maxuncerty": "3", "min_age_ma": "2445", "minuncerty": "5", "max_age_da": "Isotopic", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 3.1699326943199999, "shape_area": 0.0245273556097 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 515687.31005864002509, 7507284.364434811286628 ], [ 515727.401673869986553, 7507294.44228694960475 ], [ 516077.559980659978464, 7507374.940313899889588 ], [ 516567.649635889916681, 7507461.461209960281849 ], [ 516974.989065799978562, 7507529.450941889546812 ], [ 517617.678937539923936, 7507621.458239920437336 ], [ 517884.809234520071186, 7507626.45950067974627 ], [ 518845.808005279977806, 7507697.980592619627714 ], [ 519692.141436650010291, 7507777.478591890074313 ], [ 520459.120535549998749, 7507962.499755850061774 ], [ 521252.569250860018656, 7508095.008492359891534 ], [ 522046.009716300060973, 7508306.518230189569294 ], [ 522495.619599479949102, 7508412.019790690392256 ], [ 523447.751102910027839, 7508491.531642080284655 ], [ 524135.411504069983494, 7508571.05088615976274 ], [ 524796.650109110050835, 7508809.060238439589739 ], [ 525537.161682610050775, 7508888.560437959618866 ], [ 526304.178405749960802, 7509047.079424640163779 ], [ 527150.572323399945162, 7509258.600825910456479 ], [ 527891.170337439980358, 7509549.630575990304351 ], [ 528759.181210299953818, 7509752.148616939783096 ], [ 529408.909576560021378, 7509934.658954329788685 ], [ 530282.090520340017974, 7510219.191589759662747 ], [ 531297.329562349943444, 7510503.211238949559629 ], [ 532292.230620560003445, 7510767.219354189932346 ], [ 533510.480061769951135, 7511234.208642659708858 ], [ 534079.009040210046805, 7511478.210979480296373 ], [ 534870.880958189954981, 7511559.220930890180171 ], [ 535845.449424559948966, 7511457.710090230219066 ], [ 536515.48107646999415, 7511295.209174829535186 ], [ 537266.720861639943905, 7511153.20205038972199 ], [ 538322.440249609993771, 7510706.688930760137737 ], [ 538626.999142840038985, 7510523.679197969846427 ], [ 538972.159902979969047, 7509914.689756290055811 ], [ 539114.237828589975834, 7509528.669906909577549 ], [ 539134.550768380053341, 7509041.669524259865284 ], [ 539012.7302670100471, 7508493.181885650381446 ], [ 538586.329662399948575, 7507965.169740119948983 ], [ 538180.211560850031674, 7507599.671520809642971 ], [ 537631.980831310036592, 7507214.168417110107839 ], [ 537428.930559089989401, 7507011.171658460050821 ], [ 537002.52044387999922, 7506686.161332639865577 ], [ 536616.771521440008655, 7506544.169201100245118 ], [ 535743.688247720012441, 7506361.159436600282788 ], [ 534931.557807549950667, 7506158.158888090401888 ], [ 534038.1795864100568, 7505813.147930650040507 ], [ 533489.917933249962516, 7505488.139462489634752 ], [ 533022.90101448004134, 7505082.130395379848778 ], [ 532495.011441659997217, 7504737.120717509649694 ], [ 531906.171165960025974, 7504513.618821060284972 ], [ 530728.50931001000572, 7504046.609459710307419 ], [ 530456.141345420037396, 7503904.60914792958647 ], [ 530330.938629699987359, 7504034.600131249986589 ], [ 529716.559640730032697, 7503911.601014990359545 ], [ 529213.502345059998333, 7503780.581910129636526 ], [ 528797.900004970026202, 7503627.080213760025799 ], [ 527507.377630549948663, 7503343.059446619823575 ], [ 526960.550516100018285, 7503255.548426319845021 ], [ 526610.599389689974487, 7503255.540216240100563 ], [ 526129.429774809977971, 7503146.04971828032285 ], [ 525298.209493739996105, 7503146.041082710027695 ], [ 524313.980666519957595, 7502993.020090309903026 ], [ 522979.729673549998552, 7502796.00996265001595 ], [ 521973.58024351997301, 7502730.490436179563403 ], [ 520967.450855030037928, 7502533.48075976036489 ], [ 519573.797612160036806, 7502354.695541289635003 ], [ 518734.541179510008078, 7502246.968182840384543 ], [ 518147.140985219972208, 7502100.460410409606993 ], [ 517439.452265210042242, 7501894.939140919595957 ], [ 517626.978287780017126, 7501568.438148479908705 ], [ 517493.280382250086404, 7501530.939766810275614 ], [ 517041.529127980000339, 7501482.438852850347757 ], [ 516806.139175439951941, 7501470.929028630256653 ], [ 516513.439839239930734, 7501427.929280590265989 ], [ 516208.029622350004502, 7501404.430479659698904 ], [ 515687.31005864002509, 7501381.228581719100475 ], [ 515687.31005864002509, 7501854.524165705777705 ], [ 515739.549064819933847, 7501845.9300237596035 ], [ 516241.760339149972424, 7501804.929461900144815 ], [ 516636.078343549917918, 7501815.939950410276651 ], [ 517068.967790280003101, 7501902.438979189842939 ], [ 517381.030367530067451, 7501996.450458600185812 ], [ 516985.409341790014878, 7502432.939720500260592 ], [ 516863.05789255007403, 7502589.942326080054045 ], [ 517080.599171089997981, 7502644.356281739659607 ], [ 517652.700889169995207, 7502787.440623049624264 ], [ 518363.340637009998318, 7502949.95782564021647 ], [ 518992.720304229937028, 7503112.471846310421824 ], [ 519500.350147699995432, 7503193.482631060294807 ], [ 520271.900280739995651, 7503274.97976098023355 ], [ 520982.51921596005559, 7503437.480494789779186 ], [ 521754.828933689976111, 7503561.49910281971097 ], [ 522673.508125049993396, 7503780.507541339844465 ], [ 523439.03043066005921, 7503868.018290109932423 ], [ 525079.511674160021357, 7504086.528897769749165 ], [ 526041.911488050012849, 7504086.540897079743445 ], [ 527157.42773378000129, 7504239.557840440422297 ], [ 528710.430082709994167, 7504589.578082759864628 ], [ 529322.881041220040061, 7504699.101350129581988 ], [ 529519.738315970054828, 7504721.101395370438695 ], [ 529782.189706749981269, 7504852.111618340015411 ], [ 529846.579264719970524, 7505018.110530230216682 ], [ 530434.150448080035858, 7505322.119503930211067 ], [ 531001.421949689975008, 7505585.119388460181653 ], [ 531730.780776569969021, 7505767.629514589905739 ], [ 531892.838277079979889, 7505828.631136720068753 ], [ 532231.098419170011766, 7506036.13034437969327 ], [ 532535.66227497998625, 7506280.128463479690254 ], [ 533205.688455870025791, 7506665.63972613029182 ], [ 533571.211581630050205, 7506929.661227500066161 ], [ 534139.712190150050446, 7507214.159917029552162 ], [ 534444.310595639981329, 7507356.160217549651861 ], [ 534769.160987279959954, 7507478.167769909836352 ], [ 534911.291675420012325, 7507518.669675059616566 ], [ 535114.321285499958321, 7507640.660739 ], [ 535236.120806129998527, 7507823.178549899719656 ], [ 535358.021751470048912, 7508351.180761110037565 ], [ 535520.509332970017567, 7508594.687963870353997 ], [ 535743.819436899968423, 7508818.17833917029202 ], [ 536007.749962339992635, 7508980.679477440193295 ], [ 536576.257994789979421, 7509386.678368129767478 ], [ 536718.417728489963338, 7509630.19065823033452 ], [ 536637.239427529973909, 7509975.691391319967806 ], [ 536393.608924590051174, 7510158.201416499912739 ], [ 536028.131239549955353, 7510219.199188100174069 ], [ 535540.809031330049038, 7510219.199873119592667 ], [ 534627.20182425994426, 7510239.690441120415926 ], [ 534200.742349050007761, 7510219.191578520461917 ], [ 533875.92854063003324, 7510158.20165743958205 ], [ 533307.420549900038168, 7509955.199741209857166 ], [ 532718.621047309949063, 7509792.699682730250061 ], [ 531297.251988389994949, 7509264.678162580356002 ], [ 530525.700181809952483, 7509021.159533250145614 ], [ 529551.019780109985732, 7508858.651383410207927 ], [ 528251.497776060015894, 7508655.620795699767768 ], [ 527134.711085689952597, 7508351.099182499572635 ], [ 525794.590079659945332, 7508066.557996190153062 ], [ 524596.650707719963975, 7507782.540694549679756 ], [ 523662.659097680007108, 7507681.038180800154805 ], [ 522830.179916460008826, 7507498.029714879579842 ], [ 522038.308340209943708, 7507295.018886250443757 ], [ 520677.948256989999209, 7507010.999082010239363 ], [ 519662.739749950007536, 7506929.487592220306396 ], [ 518548.659981289994903, 7506807.981043729931116 ], [ 518147.55064301006496, 7506708.468301449902356 ], [ 517281.418690250022337, 7506445.959485289640725 ], [ 516873.740797090053093, 7506307.96147646009922 ], [ 516466.369054429931566, 7506220.949263669550419 ], [ 515906.289625330013223, 7506134.93883580993861 ], [ 515687.31005864002509, 7506092.979791475459933 ], [ 515687.31005864002509, 7507284.364434811286628 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.15981", "objectid": "15983", "lithstrtno": "4104", "code": "P_-HAo-ci", "unitname": "Boolgeeda Iron Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Fine-grained finely laminated iron-formation mudstone siltstone and chert; metamorphosed", "parentcode": "P_-HAU-xci-f", "parentname": "Hamersley Group upper", "rocktype1": "sedimentary other chemical or biochemical", "lithname1": "iron formation", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group upper", "formation": "Boolgeeda Iron Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Paleoproterozoic", "ageto": "Paleoproterozoic", "max_age_ma": "2445", "maxuncerty": "5", "min_age_ma": "2445", "minuncerty": null, "max_age_da": "Isotopic", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.79044154896300001, "shape_area": 0.0026293850775400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 515687.31005864002509, 7506092.979791475459933 ], [ 515906.289625330013223, 7506134.93883580993861 ], [ 516466.369054429931566, 7506220.949263669550419 ], [ 516873.740797089994885, 7506307.96147646009922 ], [ 517281.418690250022337, 7506445.959485289640725 ], [ 518147.550643010006752, 7506708.468301449902356 ], [ 518548.659981289994903, 7506807.981043729931116 ], [ 519662.739749950007536, 7506929.487592220306396 ], [ 520677.948256989999209, 7507010.999082010239363 ], [ 522038.308340209943708, 7507295.018886250443757 ], [ 522830.179916460008826, 7507498.029714879579842 ], [ 523662.659097680007108, 7507681.038180800154805 ], [ 524596.650707719963975, 7507782.540694549679756 ], [ 525794.590079659945332, 7508066.557996190153062 ], [ 527134.711085689952597, 7508351.099182499572635 ], [ 528251.497776060015894, 7508655.620795699767768 ], [ 529551.019780109985732, 7508858.651383410207927 ], [ 530525.700181809952483, 7509021.159533250145614 ], [ 531297.251988389994949, 7509264.678162580356002 ], [ 532718.621047309949063, 7509792.699682730250061 ], [ 533307.420549900038168, 7509955.199741209857166 ], [ 533875.92854063003324, 7510158.20165743958205 ], [ 534200.742349050007761, 7510219.191578520461917 ], [ 534627.20182425994426, 7510239.690441120415926 ], [ 535540.809031330049038, 7510219.199873119592667 ], [ 536028.131239549955353, 7510219.199188100174069 ], [ 536393.608924590051174, 7510158.201416499912739 ], [ 536637.239427529973909, 7509975.691391319967806 ], [ 536718.417728489963338, 7509630.19065823033452 ], [ 536576.257994789979421, 7509386.678368129767478 ], [ 536007.749962339992635, 7508980.679477440193295 ], [ 535743.819436899968423, 7508818.17833917029202 ], [ 535520.509332970017567, 7508594.687963870353997 ], [ 535358.021751470048912, 7508351.180761110037565 ], [ 535236.120806129998527, 7507823.178549899719656 ], [ 535114.321285499958321, 7507640.660739 ], [ 534911.291675420012325, 7507518.669675059616566 ], [ 534769.160987279959954, 7507478.167769909836352 ], [ 534444.310595639981329, 7507356.160217549651861 ], [ 534139.712190150050446, 7507214.159917029552162 ], [ 533571.211581630050205, 7506929.661227500066161 ], [ 533205.688455870025791, 7506665.63972613029182 ], [ 532535.66227497998625, 7506280.128463479690254 ], [ 532231.098419170011766, 7506036.13034437969327 ], [ 531892.838277079979889, 7505828.631136720068753 ], [ 531730.780776569969021, 7505767.629514589905739 ], [ 531001.421949689975008, 7505585.119388460181653 ], [ 530434.150448080035858, 7505322.119503930211067 ], [ 529846.579264719970524, 7505018.110530230216682 ], [ 529782.189706749981269, 7504852.111618340015411 ], [ 529519.738315970054828, 7504721.101395370438695 ], [ 529322.881041220040061, 7504699.101350129581988 ], [ 528710.430082709994167, 7504589.578082759864628 ], [ 527157.42773378000129, 7504239.557840440422297 ], [ 526041.911488050012849, 7504086.540897079743445 ], [ 525079.511674160021357, 7504086.528897769749165 ], [ 523439.03043066005921, 7503868.018290109932423 ], [ 522673.508125049993396, 7503780.507541339844465 ], [ 521754.828933689976111, 7503561.49910281971097 ], [ 520982.51921596005559, 7503437.480494789779186 ], [ 520271.900280739995651, 7503274.97976098023355 ], [ 519500.350147699995432, 7503193.482631060294807 ], [ 518992.720304229995236, 7503112.471846310421824 ], [ 518363.340637009998318, 7502949.95782564021647 ], [ 517652.700889169995207, 7502787.440623049624264 ], [ 517080.599171089997981, 7502644.356281739659607 ], [ 516863.057892550015822, 7502589.942326080054045 ], [ 516559.528845859982539, 7502992.442232459783554 ], [ 517327.8402004900272, 7503193.448910360224545 ], [ 518160.282295580022037, 7503355.949978579767048 ], [ 519297.311057329992764, 7503599.468447639606893 ], [ 519947.010635969985742, 7503700.980550330132246 ], [ 520414.019579010026064, 7503782.489781250245869 ], [ 521098.648917799990159, 7503867.990412909537554 ], [ 523067.199196270026732, 7504217.511165929958224 ], [ 525210.731001010048203, 7504567.529698389582336 ], [ 526654.369699290022254, 7504655.06131970975548 ], [ 528426.11156214994844, 7505027.081078560091555 ], [ 529279.140169459977187, 7505442.599590890109539 ], [ 530175.980050690006465, 7506011.619548610411584 ], [ 530875.899837580043823, 7506317.632908140309155 ], [ 531685.219599460018799, 7506755.138321680016816 ], [ 532866.420069309999235, 7507455.161494229920208 ], [ 533041.409982310025953, 7507717.67045971006155 ], [ 533107.019451310043223, 7508045.669424450024962 ], [ 533085.151903329999186, 7508308.168893829919398 ], [ 532932.108606930007227, 7508483.171749169938266 ], [ 532538.352077750023454, 7508548.677518219687045 ], [ 532013.401035169954412, 7508548.669753519818187 ], [ 531357.270649209967814, 7508395.667834320105612 ], [ 530263.531104409950785, 7508220.649868439882994 ], [ 529344.831691039958969, 7507958.1297348998487 ], [ 528098.008845529984683, 7507783.099712680093944 ], [ 526916.841063459985889, 7507564.581700350157917 ], [ 525888.777275269967504, 7507345.559387769550085 ], [ 524292.058388389996253, 7507105.036800029687583 ], [ 521798.578427009982988, 7506667.508674659766257 ], [ 519283.228955679980572, 7506382.979115700349212 ], [ 518708.470003649999853, 7506299.990632159635425 ], [ 518079.051595150027424, 7506117.46876826044172 ], [ 517530.849081900028978, 7505975.462046549655497 ], [ 516820.229322989995126, 7505812.951413069851696 ], [ 515987.729986529971939, 7505650.451000420376658 ], [ 515687.31005864002509, 7505599.152506510727108 ], [ 515687.31005864002509, 7506092.979791475459933 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.14798", "objectid": "14800", "lithstrtno": "4068", "code": "P_-TK-s", "unitname": "Turee Creek Group", "gswastatus": "Formal", "rank": "Group", "descriptn": "Mudstone siltstone sandstone conglomerate dolomite; minor diamictite limestone and iron formation; intruded by Balgara Dolerite sills", "parentcode": "AP_-MB-xb-c", "parentname": "Mount Bruce Supergroup", "rocktype1": "sedimentary siliciclastic", "lithname1": null, "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Turee Creek Group", "subgroup": null, "formation": null, "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Turee Creek Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma)", "agefrom": "Paleoproterozoic", "ageto": "Paleoproterozoic", "max_age_ma": "2445", "maxuncerty": null, "min_age_ma": "2208", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 1.0280733528699999, "shape_area": 0.0120461465574 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 526916.841063459985889, 7507564.581700350157917 ], [ 528098.008845529984683, 7507783.099712680093944 ], [ 529344.831691039958969, 7507958.1297348998487 ], [ 530263.531104409950785, 7508220.649868439882994 ], [ 531357.270649209967814, 7508395.667834320105612 ], [ 532013.401035169954412, 7508548.669753519818187 ], [ 532538.352077750023454, 7508548.677518219687045 ], [ 532932.108606930007227, 7508483.171749169938266 ], [ 533085.151903329999186, 7508308.168893829919398 ], [ 533107.019451310043223, 7508045.669424450024962 ], [ 533041.409982310025953, 7507717.67045971006155 ], [ 532866.420069309999235, 7507455.161494229920208 ], [ 531685.219599460018799, 7506755.138321680016816 ], [ 530875.899837580043823, 7506317.632908140309155 ], [ 530175.980050690006465, 7506011.619548610411584 ], [ 529279.140169459977187, 7505442.599590890109539 ], [ 528426.11156214994844, 7505027.081078560091555 ], [ 526654.369699290022254, 7504655.06131970975548 ], [ 525210.731001010048203, 7504567.529698389582336 ], [ 523067.199196270026732, 7504217.511165929958224 ], [ 521098.648917799990159, 7503867.990412909537554 ], [ 520414.019579010026064, 7503782.489781250245869 ], [ 519947.010635969985742, 7503700.980550330132246 ], [ 519297.311057329992764, 7503599.468447639606893 ], [ 518160.282295580022037, 7503355.949978579767048 ], [ 517327.8402004900272, 7503193.448910360224545 ], [ 516559.528845859982539, 7502992.442232459783554 ], [ 516863.05789255007403, 7502589.942326080054045 ], [ 516985.409341790014878, 7502432.939720500260592 ], [ 516678.098510309995618, 7502381.430084919556975 ], [ 515987.759246180008631, 7502401.430705550126731 ], [ 515687.31005864002509, 7502462.967454206198454 ], [ 515687.31005864002509, 7505599.152506510727108 ], [ 515987.729986529971939, 7505650.451000420376658 ], [ 516820.229322989995126, 7505812.951413069851696 ], [ 517530.849081900028978, 7505975.462046549655497 ], [ 518079.051595150027424, 7506117.46876826044172 ], [ 518708.470003649999853, 7506299.990632159635425 ], [ 519283.228955679980572, 7506382.979115700349212 ], [ 521798.578427009982988, 7506667.508674659766257 ], [ 524292.058388389996253, 7507105.036800029687583 ], [ 525888.777275269967504, 7507345.559387769550085 ], [ 526916.841063459985889, 7507564.581700350157917 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.15982", "objectid": "15984", "lithstrtno": "2258", "code": "A-HAm-cib", "unitname": "Marra Mamba Iron Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Chert banded iron-formation mudstone and siltstone; minor carbonate; metamorphosed", "parentcode": "A-HAL-xkt-ci", "parentname": "Hamersley Group lower", "rocktype1": "sedimentary other chemical or biochemical", "lithname1": "iron formation", "qualifier1": "banded", "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group lower", "formation": "Marra Mamba Iron Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2629", "maxuncerty": null, "min_age_ma": "2597", "minuncerty": "5", "max_age_da": "Inferred", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 0.158855733587, "shape_area": 0.00025443351231099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 518908.579403460025787, 7498264.440973529592156 ], [ 518634.320034599979408, 7498094.449079169891775 ], [ 518378.750043659994844, 7497847.439117729663849 ], [ 518052.658892910054419, 7497479.929860760457814 ], [ 517847.879607070004568, 7497213.920483809895813 ], [ 517473.779419790022075, 7497665.421633450314403 ], [ 517576.339326519984752, 7497748.931734690442681 ], [ 518083.560259499994572, 7498211.439638 ], [ 518466.130403210001532, 7498460.429988720454276 ], [ 518804.271018920000643, 7498665.439835360273719 ], [ 519198.908855680027045, 7498812.449021300300956 ], [ 519142.373424510005862, 7498952.95056237000972 ], [ 519103.091585670015775, 7499079.938515899702907 ], [ 519637.339709100022446, 7499435.950325359590352 ], [ 520226.328942429972813, 7499730.461817169561982 ], [ 520656.728255619993433, 7499911.97177623026073 ], [ 521177.758416139986366, 7500024.971386150456965 ], [ 521744.101620649977122, 7500092.981452509760857 ], [ 522262.589272340002935, 7500072.48211217019707 ], [ 522854.101535509980749, 7500070.49063022993505 ], [ 523397.800140250008553, 7500183.491012180224061 ], [ 524248.587900620012078, 7500447.019791600294411 ], [ 524512.801641589961946, 7500182.007559839636087 ], [ 524463.09924496000167, 7500175.499866460449994 ], [ 523807.080191819986794, 7499963.000741709955037 ], [ 523539.32880095008295, 7499824.488559490069747 ], [ 523297.169660909974482, 7499723.988046020269394 ], [ 522960.039467710012104, 7499706.491441669873893 ], [ 522349.829996639920864, 7499766.980938440188766 ], [ 522165.428285450034309, 7499767.980588540434837 ], [ 521783.759064020006917, 7499750.978217979893088 ], [ 521446.58837318001315, 7499727.479032450355589 ], [ 521058.238675899978261, 7499640.459560570307076 ], [ 520701.558828630018979, 7499521.471808220259845 ], [ 520204.509207860042807, 7499313.960170620121062 ], [ 519841.059423100028653, 7499099.460949829779565 ], [ 519560.629718000011053, 7498905.449083999730647 ], [ 519252.201017629995476, 7498679.95235482044518 ], [ 519335.661807239986956, 7498472.439554899930954 ], [ 518908.579403460025787, 7498264.440973529592156 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.15983", "objectid": "15985", "lithstrtno": "2257", "code": "A-HAd-kd", "unitname": "Wittenoom Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Thinly bedded dolomite and dolomitic shale with minor black chert shale banded iron formation and sandstone", "parentcode": "A-HAL-xkt-ci", "parentname": "Hamersley Group lower", "rocktype1": "sedimentary carbonate", "lithname1": "dolostone/dolomite", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group lower", "formation": "Wittenoom Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2597", "maxuncerty": "5", "min_age_ma": "2504", "minuncerty": null, "max_age_da": "Isotopic", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.12278604736400001, "shape_area": 0.00028217936251099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 521328.899037259980105, 7500656.480679200030863 ], [ 521600.978795, 7500716.479862280189991 ], [ 522066.440767369989771, 7500347.990559520199895 ], [ 522262.589272340002935, 7500072.48211217019707 ], [ 521744.101620649977122, 7500092.981452509760857 ], [ 521177.758416139986366, 7500024.971386150456965 ], [ 520656.728255619993433, 7499911.97177623026073 ], [ 520226.328942429972813, 7499730.461817169561982 ], [ 519637.339709100022446, 7499435.950325359590352 ], [ 519103.091585670015775, 7499079.938515899702907 ], [ 519142.373424510005862, 7498952.95056237000972 ], [ 519198.908855680027045, 7498812.449021300300956 ], [ 518804.271018920000643, 7498665.439835360273719 ], [ 518466.130403210001532, 7498460.429988720454276 ], [ 518083.560259499994572, 7498211.439638 ], [ 517576.339326519984752, 7497748.931734690442681 ], [ 517473.779419790022075, 7497665.421633450314403 ], [ 516997.112233689986169, 7498099.42919669020921 ], [ 517461.881108669971582, 7498453.430531879886985 ], [ 517877.940137110010255, 7498746.941773089580238 ], [ 518342.972217280010227, 7499040.940498439595103 ], [ 518930.35734212998068, 7499358.950494660064578 ], [ 519006.429596919973847, 7499391.451385060325265 ], [ 518959.7393457100261, 7499542.451161010190845 ], [ 519321.979867429996375, 7499823.947971889749169 ], [ 519713.530612269998528, 7500191.470446850173175 ], [ 520251.981200859998353, 7500460.470861679874361 ], [ 520790.429984660004266, 7500582.969375729560852 ], [ 521328.899037259980105, 7500656.480679200030863 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.15988", "objectid": "15990", "lithstrtno": "4124", "code": "A-HAu-xsl-ci", "unitname": "Mount McRae Shale and Mount Sylvia Formation", "gswastatus": "Informal", "rank": "Formation", "descriptn": "Mudstone siltstone chert banded iron-formation and dolomite; metamorphosed", "parentcode": "A-HAL-xkt-ci", "parentname": "Hamersley Group lower", "rocktype1": "sedimentary siliciclastic", "lithname1": "siltstone/mudstone", "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "sedimentary other chemical or biochemical", "lithname2": "iron formation", "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group lower", "formation": "Mount McRae Shale and Mount Sylvia Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2541", "maxuncerty": null, "min_age_ma": "2501", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.25099304321799998, "shape_area": 0.00057424801056 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 516446.690742139995564, 7498643.431208970025182 ], [ 516399.80081337998854, 7498690.920674299821258 ], [ 516752.109791999973822, 7498820.421163430437446 ], [ 517682.119090339983813, 7499358.941561980172992 ], [ 518293.999550679989625, 7499579.442325529642403 ], [ 518636.630131700017955, 7499603.948979339562356 ], [ 518912.270378570014145, 7499695.460613200441003 ], [ 518839.308721749985125, 7499930.939910479821265 ], [ 519069.999476659984794, 7500108.460693730041385 ], [ 519372.288886139984243, 7500431.949672809801996 ], [ 519631.441732620005496, 7500691.461144080385566 ], [ 519976.910060780006461, 7500799.467891490086913 ], [ 520473.579158, 7500907.472074420191348 ], [ 521543.439776370010804, 7501077.536889360286295 ], [ 522373.881059199979063, 7501209.489694490097463 ], [ 523090.591946310014464, 7501408.48978086002171 ], [ 523576.890120199997909, 7501033.501141640357673 ], [ 523814.809190919972025, 7500861.501062080264091 ], [ 524403.068835210055113, 7500914.508251939900219 ], [ 525518.201257530017756, 7500983.103860430419445 ], [ 526591.381750919972546, 7501049.041682800278068 ], [ 528009.380023929988965, 7501104.558906380087137 ], [ 527430.069593699998222, 7500795.549122979864478 ], [ 526591.889810179942288, 7500682.031155990436673 ], [ 525549.851323970011435, 7500614.030079290270805 ], [ 525164.741490110056475, 7500478.010388390161097 ], [ 524717.158815650036559, 7500210.008445120416582 ], [ 524512.801641589961946, 7500182.007559839636087 ], [ 524248.587900620012078, 7500447.019791600294411 ], [ 523397.800140250008553, 7500183.491012180224061 ], [ 522854.101535509980749, 7500070.49063022993505 ], [ 522262.589272340002935, 7500072.48211217019707 ], [ 522066.440767369989771, 7500347.990559520199895 ], [ 521600.978795, 7500716.479862280189991 ], [ 521328.899037259980105, 7500656.480679200030863 ], [ 520790.429984660004266, 7500582.969375729560852 ], [ 520251.981200859998353, 7500460.470861679874361 ], [ 519713.530612269998528, 7500191.470446850173175 ], [ 519321.979867429996375, 7499823.947971889749169 ], [ 518959.7393457100261, 7499542.451161010190845 ], [ 519006.429596919973847, 7499391.451385060325265 ], [ 518930.35734212998068, 7499358.950494660064578 ], [ 518342.972217280010227, 7499040.940498439595103 ], [ 517877.940137110010255, 7498746.941773089580238 ], [ 517461.881108669971582, 7498453.430531879886985 ], [ 516997.112233689986169, 7498099.42919669020921 ], [ 516885.902088599978015, 7498199.429791740141809 ], [ 516446.690742139995564, 7498643.431208970025182 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.7875", "objectid": "7876", "lithstrtno": "2258", "code": "A-HAm-cib", "unitname": "Marra Mamba Iron Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Chert banded iron-formation mudstone and siltstone; minor carbonate; metamorphosed", "parentcode": "A-HAL-xkt-ci", "parentname": "Hamersley Group lower", "rocktype1": "sedimentary other chemical or biochemical", "lithname1": "iron formation", "qualifier1": "banded", "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group lower", "formation": "Marra Mamba Iron Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2629", "maxuncerty": null, "min_age_ma": "2597", "minuncerty": "5", "max_age_da": "Inferred", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 0.94115175683300001, "shape_area": 0.0026079233351200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 552461.869387940037996, 7485130.261249019764364 ], [ 553299.030578140052967, 7484648.280572880059481 ], [ 554199.290736960014328, 7484058.279978320002556 ], [ 555890.978131970041431, 7482756.780634730122983 ], [ 557462.729210410034284, 7481615.291048490442336 ], [ 558166.318415640038438, 7481134.301850469782948 ], [ 558495.691402100026608, 7480910.312827819958329 ], [ 558945.300989239942282, 7480407.810311909765005 ], [ 559447.810751999961212, 7479693.820964760147035 ], [ 560135.491078190039843, 7478900.317874279804528 ], [ 560426.431284490041435, 7478582.820712439715862 ], [ 560770.249323150026612, 7478159.841215039603412 ], [ 560849.620869579957798, 7477524.841734640300274 ], [ 560690.949486859957688, 7477048.840362769551575 ], [ 560611.57851814001333, 7476731.339792679995298 ], [ 560638.070735429995693, 7476334.832341159693897 ], [ 560770.241452359943651, 7475990.848633529618382 ], [ 560928.940531059983186, 7475620.339508170261979 ], [ 561219.878350600018166, 7475276.850051529705524 ], [ 561616.650867559947073, 7474853.339500810019672 ], [ 561881.149548829998821, 7474430.329383400268853 ], [ 561907.560773620032705, 7474006.840184009633958 ], [ 561563.771348390029743, 7473504.338690780103207 ], [ 561550.468092117458582, 7473446.765934069640934 ], [ 560826.793062305427156, 7473446.765934069640934 ], [ 560835.080332349985838, 7474022.851079889573157 ], [ 560747.990340759977698, 7474430.849786610342562 ], [ 560603.88147336000111, 7474870.850602730177343 ], [ 560358.740260210004635, 7475483.342136479914188 ], [ 560232.808540910016745, 7475744.850065840408206 ], [ 560043.638665909995325, 7476083.33965312037617 ], [ 559898.918661569943652, 7476408.340487170033157 ], [ 559843.110859469976276, 7476701.840296889655292 ], [ 559870.578330309945159, 7477127.825745229609311 ], [ 559941.869839449995197, 7477413.839102909900248 ], [ 560000.63984713004902, 7477719.318579459562898 ], [ 559970.361824939958751, 7478050.32086979970336 ], [ 559882.373260110034607, 7478260.830046719871461 ], [ 559529.190361369983293, 7478886.309631819836795 ], [ 559408.93108398001641, 7479001.821175940334797 ], [ 559301.230240639997646, 7479091.310507340356708 ], [ 559073.070471100043505, 7479245.320975399576128 ], [ 558162.910846160026267, 7480427.790963140316308 ], [ 557005.000187280005775, 7481649.799908259883523 ], [ 555585.872745560016483, 7482764.780236049555242 ], [ 553994.731696769944392, 7483836.269434520043433 ], [ 552567.438844150048681, 7484595.270084340125322 ], [ 551577.239460229990073, 7484982.252649479545653 ], [ 551338.549904590006918, 7485090.061955739744008 ], [ 551338.5497821100289, 7485090.025646439753473 ], [ 549851.188989539979957, 7485761.741123080253601 ], [ 548225.680131730041467, 7486292.730476760305464 ], [ 546587.230142600019462, 7486772.721792650409043 ], [ 544574.599058820051141, 7487458.188967909663916 ], [ 543469.998219090048224, 7487871.180351009592414 ], [ 542340.530504659982398, 7488386.659122560173273 ], [ 541719.809467370039783, 7488918.160171950235963 ], [ 541239.63983072002884, 7489576.641609819605947 ], [ 541734.628457920043729, 7489299.554097919724882 ], [ 541894.312351180007681, 7489210.159689630381763 ], [ 542571.512399810017087, 7488831.160668919794261 ], [ 543840.309419329976663, 7488181.178546589799225 ], [ 544875.02778613998089, 7487774.691257519647479 ], [ 546577.260286420001648, 7487345.218131000176072 ], [ 547917.222122960025445, 7486949.728884840384126 ], [ 549154.91041516000405, 7486446.740225279703736 ], [ 549901.131908909999765, 7486170.605126890353858 ], [ 551180.02149674994871, 7485697.249936619773507 ], [ 551340.358837340027094, 7485626.337629109621048 ], [ 552461.869387940037996, 7485130.261249019764364 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.4684", "objectid": "4684", "lithstrtno": "4113", "code": "P_-HAb-cib", "unitname": "Brockman Iron Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Banded iron-formation chert mudstone and siltstone; metamorphosed", "parentcode": "P_-HAU-xci-f", "parentname": "Hamersley Group upper", "rocktype1": "sedimentary other chemical or biochemical", "lithname1": "iron formation", "qualifier1": "banded", "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group upper", "formation": "Brockman Iron Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Paleoproterozoic", "ageto": "Paleoproterozoic", "max_age_ma": "2494", "maxuncerty": null, "min_age_ma": "2451", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 1.87832495115, "shape_area": 0.0176099604819 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 562666.860106543055736, 7476861.29614201374352 ], [ 562548.12923551001586, 7477176.840552739799023 ], [ 562499.051775350002572, 7477559.349274420179427 ], [ 562405.520149050047621, 7477941.359709770418704 ], [ 562305.249252759967931, 7478260.338304109871387 ], [ 562217.750590660027228, 7478572.839649910107255 ], [ 562060.639919589972124, 7478961.839952230453491 ], [ 561897.041405549971387, 7479338.339646079577506 ], [ 561720.549841640051454, 7479663.841516169719398 ], [ 561555.988813429954462, 7479823.83794873021543 ], [ 561282.990936969988979, 7479926.841339250095189 ], [ 561073.599140699952841, 7480023.831344950012863 ], [ 560819.990342710050754, 7480190.341357300058007 ], [ 560579.309177830000408, 7480382.829210110008717 ], [ 560332.309257369954139, 7480606.831241140142083 ], [ 560034.599146069958806, 7480850.329705360345542 ], [ 559388.251004809979349, 7481331.31110505014658 ], [ 558855.848585069994442, 7481709.810595990158617 ], [ 558811.488468160037883, 7481735.312533549964428 ], [ 558653.169789870036766, 7481869.807492359541357 ], [ 558526.340702550020069, 7481959.810445980168879 ], [ 558247.428242309950292, 7482145.80981088988483 ], [ 557702.1606820699526, 7482479.788011509925127 ], [ 557144.29002588998992, 7482858.30011445004493 ], [ 556339.359097260050476, 7483422.790656579658389 ], [ 555008.228967749979347, 7484327.279931530356407 ], [ 554557.948378719971515, 7484597.28947607986629 ], [ 554221.658450940041803, 7484745.277343910187483 ], [ 553859.379547549993731, 7484798.279873340390623 ], [ 553579.438505909987725, 7484774.269393079914153 ], [ 553299.030578140052967, 7484648.280572880059481 ], [ 552461.869387940037996, 7485130.261249019764364 ], [ 551340.358837340027094, 7485626.337629109621048 ], [ 551180.02149674994871, 7485697.249936619773507 ], [ 549901.131908909999765, 7486170.605126890353858 ], [ 549154.91041516000405, 7486446.740225279703736 ], [ 547917.222122960025445, 7486949.728884840384126 ], [ 546577.260286420001648, 7487345.218131000176072 ], [ 544875.02778613998089, 7487774.691257519647479 ], [ 543840.309419329976663, 7488181.178546589799225 ], [ 542571.512399810017087, 7488831.160668919794261 ], [ 542400.79943162004929, 7489029.160934429615736 ], [ 542350.679909239988774, 7489195.167987239547074 ], [ 542344.31951180996839, 7489195.168274519965053 ], [ 542300.359836720046587, 7489303.658677879720926 ], [ 542256.640922829974443, 7489469.161055089905858 ], [ 542245.318502080044709, 7489762.16108509991318 ], [ 542278.430744110024534, 7490048.159758640453219 ], [ 542387.871132510015741, 7490321.159055279567838 ], [ 542592.310546300024725, 7490517.651349290274084 ], [ 542815.35845373000484, 7490624.660747840069234 ], [ 543038.320503570022993, 7490699.670249789953232 ], [ 543420.678319129976444, 7490869.658592940308154 ], [ 543918.322316259960644, 7491197.669856980443001 ], [ 544135.618549510021694, 7491432.161117110401392 ], [ 544238.378264619968832, 7491635.160393830388784 ], [ 544315.018133740057237, 7491692.172029820270836 ], [ 544585.511445099953562, 7491365.671757680363953 ], [ 544708.960547090042382, 7491509.670096930116415 ], [ 544828.010475110029802, 7491628.65930688008666 ], [ 545036.390950290020555, 7491777.160529489628971 ], [ 545304.281155009986833, 7491926.159265699796379 ], [ 546018.689793150057085, 7492283.65813267044723 ], [ 546524.778901990037411, 7492402.66767456009984 ], [ 546971.279514390043914, 7492432.179934759624302 ], [ 547358.208265290013514, 7492402.689256370067596 ], [ 547774.959186000050977, 7492343.190372839570045 ], [ 548668.010057860054076, 7492343.208312249742448 ], [ 549174.018445470021106, 7492372.700973270460963 ], [ 549501.460381799959578, 7492462.198465449735522 ], [ 549769.408589369966649, 7492521.710005650296807 ], [ 550126.58004432998132, 7492700.209701140411198 ], [ 550692.171366530004889, 7492878.708934020251036 ], [ 551227.969715739949606, 7492938.220353459939361 ], [ 551364.966591530013829, 7492932.324395109899342 ], [ 551912.660673990030773, 7492908.741091069765389 ], [ 552775.930030860006809, 7492670.73900244012475 ], [ 554383.360805099946447, 7492759.761629750020802 ], [ 554948.919062659959309, 7492730.262764049693942 ], [ 555514.499594919965602, 7492789.759422839619219 ], [ 556080.120245069963858, 7492968.260365390218794 ], [ 556556.361293209949508, 7493087.269083140417933 ], [ 557032.688999920035712, 7493146.780197789892554 ], [ 557508.909998000017367, 7493295.788291630335152 ], [ 558044.729297060053796, 7493444.7886360604316 ], [ 558461.5013462100178, 7493623.279629110358655 ], [ 558997.299511149991304, 7493801.793448559939861 ], [ 559314.809575189952739, 7493920.801283299922943 ], [ 559791.570562480017543, 7493873.80110920034349 ], [ 560930.54918336996343, 7494014.308365819975734 ], [ 561445.871286730049178, 7494055.810433239676058 ], [ 562017.86825298005715, 7493989.310636560432613 ], [ 562666.860106543055736, 7493948.500266523100436 ], [ 562666.860106543055736, 7492719.446714281104505 ], [ 562519.63842960994225, 7492724.33079618960619 ], [ 561126.260707290028222, 7492651.320399310439825 ], [ 559952.941987609956414, 7492467.79866745043546 ], [ 558926.241475829971023, 7492284.289813860319555 ], [ 557862.92075577005744, 7491917.791419030167162 ], [ 556799.610155759961344, 7491734.270272320136428 ], [ 555517.924562950036488, 7491690.303761900402606 ], [ 554672.931208909954876, 7491661.258393780328333 ], [ 553389.608255989965983, 7491734.250089040026069 ], [ 552509.628818519995548, 7491697.7503981301561 ], [ 551886.299605170032009, 7491661.230382160283625 ], [ 551360.246637489995919, 7491529.420138870365918 ], [ 550896.279859749949537, 7491404.231776890344918 ], [ 549612.929414979997091, 7491257.708402830176055 ], [ 548806.299725190037861, 7491074.208357560448349 ], [ 548366.278671049978584, 7491037.700336120091379 ], [ 547486.269420549971983, 7490854.199981180019677 ], [ 547082.899858859949745, 7490707.697768059559166 ], [ 546769.690927169984207, 7490574.189537869766355 ], [ 546425.291519170044921, 7490406.191465930081904 ], [ 546232.009528610040434, 7490128.679955460131168 ], [ 546231.999958069995046, 7489784.189334640279412 ], [ 546276.27850270003546, 7489277.689614480361342 ], [ 546373.349525970057584, 7488770.701892349869013 ], [ 546500.341896250029095, 7488548.709076629951596 ], [ 547008.470879010041244, 7488418.709465850144625 ], [ 547605.278605010011233, 7488218.210545349866152 ], [ 548494.020522819948383, 7487882.220946219749749 ], [ 548735.312448729993775, 7487804.719787940382957 ], [ 549389.111590950051323, 7487552.739949880167842 ], [ 549617.750346099957824, 7487488.229974529705942 ], [ 549814.509592509944923, 7487397.741918230429292 ], [ 550043.099172860034741, 7487332.729794139973819 ], [ 550417.940741110011004, 7487254.742107329890132 ], [ 550652.6283519200515, 7487132.239282780326903 ], [ 551089.328658859943971, 7486684.250709360465407 ], [ 551343.354683769983239, 7486514.723462239839137 ], [ 551406.247431789990515, 7486472.749969189986587 ], [ 551761.821539620053954, 7486356.259555390104651 ], [ 552168.448603449971415, 7486264.758787809871137 ], [ 552663.711761989980005, 7486115.757965289987624 ], [ 553012.697209479985759, 7485942.2681749695912 ], [ 553367.581373880035244, 7485685.759792169556022 ], [ 553691.022168859955855, 7485492.768842839635909 ], [ 553982.819799700053409, 7485344.768889689818025 ], [ 554369.942465250031091, 7485183.772040910087526 ], [ 554820.919659969978966, 7485060.280038660392165 ], [ 555335.139231530018151, 7484879.278656690381467 ], [ 556102.668451559962705, 7484467.789796110242605 ], [ 556566.089935260009952, 7484299.801005779765546 ], [ 556978.929645500029437, 7484170.302235740236938 ], [ 557752.598456379957497, 7483945.808593270368874 ], [ 558920.90135218994692, 7483571.819695089943707 ], [ 559546.367665310041048, 7483393.331099299713969 ], [ 560097.611719629960135, 7483252.829650710336864 ], [ 560652.730846249964088, 7483132.331242550164461 ], [ 561166.819444510038011, 7483040.850057239644229 ], [ 561563.550251089967787, 7482985.848885879851878 ], [ 562620.921824160031974, 7482870.370290259830654 ], [ 562666.860106543055736, 7482869.427093832753599 ], [ 562666.860106543055736, 7476861.29614201374352 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.3597", "objectid": "3597", "lithstrtno": "4124", "code": "A-HAu-xsl-ci", "unitname": "Mount McRae Shale and Mount Sylvia Formation", "gswastatus": "Informal", "rank": "Formation", "descriptn": "Mudstone siltstone chert banded iron-formation and dolomite; metamorphosed", "parentcode": "A-HAL-xkt-ci", "parentname": "Hamersley Group lower", "rocktype1": "sedimentary siliciclastic", "lithname1": "siltstone/mudstone", "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "sedimentary other chemical or biochemical", "lithname2": "iron formation", "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group lower", "formation": "Mount McRae Shale and Mount Sylvia Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2541", "maxuncerty": null, "min_age_ma": "2501", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 1.06798108018, "shape_area": 0.0025233820028799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 562666.860106543055736, 7493948.500266523100436 ], [ 562017.86825298005715, 7493989.310636560432613 ], [ 561445.871286730049178, 7494055.810433239676058 ], [ 560930.54918336996343, 7494014.308365819975734 ], [ 559791.570562480017543, 7493873.80110920034349 ], [ 559314.809575189952739, 7493920.801283299922943 ], [ 558997.299511149991304, 7493801.793448559939861 ], [ 558461.5013462100178, 7493623.279629110358655 ], [ 558044.729297060053796, 7493444.7886360604316 ], [ 557508.909998000017367, 7493295.788291630335152 ], [ 557032.688999920035712, 7493146.780197789892554 ], [ 556556.361293209949508, 7493087.269083140417933 ], [ 556080.120245069963858, 7492968.260365390218794 ], [ 555514.499594919965602, 7492789.759422839619219 ], [ 554948.919062659959309, 7492730.262764049693942 ], [ 554383.360805099946447, 7492759.761629750020802 ], [ 552775.930030860006809, 7492670.73900244012475 ], [ 551912.660673990030773, 7492908.741091069765389 ], [ 551364.966591530013829, 7492932.324395109899342 ], [ 551227.969715739949606, 7492938.220353459939361 ], [ 550692.171366530004889, 7492878.708934020251036 ], [ 550126.58004432998132, 7492700.209701140411198 ], [ 549769.408589369966649, 7492521.710005650296807 ], [ 549501.460381799959578, 7492462.198465449735522 ], [ 549174.018445470021106, 7492372.700973270460963 ], [ 548668.010057860054076, 7492343.208312249742448 ], [ 547774.959186000050977, 7492343.190372839570045 ], [ 547358.208265290013514, 7492402.689256370067596 ], [ 546971.279514390043914, 7492432.179934759624302 ], [ 546524.778901990037411, 7492402.66767456009984 ], [ 546018.689793150057085, 7492283.65813267044723 ], [ 545304.281155009986833, 7491926.159265699796379 ], [ 545036.390950290020555, 7491777.160529489628971 ], [ 544828.010475110029802, 7491628.65930688008666 ], [ 544708.960547090042382, 7491509.670096930116415 ], [ 544585.511445099953562, 7491365.671757680363953 ], [ 544315.018133740057237, 7491692.172029820270836 ], [ 544238.378264619968832, 7491635.160393830388784 ], [ 544135.618549510021694, 7491432.161117110401392 ], [ 543918.322316259960644, 7491197.669856980443001 ], [ 543420.678319129976444, 7490869.658592940308154 ], [ 543038.320503570022993, 7490699.670249789953232 ], [ 542815.35845373000484, 7490624.660747840069234 ], [ 542592.310546300024725, 7490517.651349290274084 ], [ 542387.871132510015741, 7490321.159055279567838 ], [ 542278.430744110024534, 7490048.159758640453219 ], [ 542245.318502080044709, 7489762.16108509991318 ], [ 542256.640922829974443, 7489469.161055089905858 ], [ 542300.359836720046587, 7489303.658677879720926 ], [ 542344.31951180996839, 7489195.168274519965053 ], [ 542350.679909239988774, 7489195.167987239547074 ], [ 542400.79943162004929, 7489029.160934429615736 ], [ 542571.512399810017087, 7488831.160668919794261 ], [ 541894.312351180007681, 7489210.159689630381763 ], [ 541740.130720659974031, 7489441.161330849863589 ], [ 541672.788809409947135, 7489598.16102849971503 ], [ 541538.098677800036967, 7490024.648979109711945 ], [ 541560.619127630023286, 7490159.161617719568312 ], [ 541605.511732809944078, 7490293.649401130154729 ], [ 541762.539372520055622, 7490428.650730979628861 ], [ 541942.050373179954477, 7490540.658418909646571 ], [ 542121.611326170037501, 7490675.150472099892795 ], [ 542547.951409470057115, 7490855.157926949672401 ], [ 542705.060030539985746, 7490877.161405250430107 ], [ 542929.420247980044223, 7490989.651189760304987 ], [ 543041.628388570039533, 7491034.648773539811373 ], [ 543288.521259670029394, 7491169.16250969003886 ], [ 543467.990977440029383, 7491303.657953480258584 ], [ 543916.811161260004155, 7491662.659460389986634 ], [ 544116.748927850043401, 7491902.661235259845853 ], [ 544278.199806150048971, 7491731.162152940407395 ], [ 544410.521071129944175, 7491797.668131220154464 ], [ 544724.722298449953087, 7491977.160089329816401 ], [ 544926.638237460050732, 7492066.669293380342424 ], [ 545353.032135299989022, 7492201.170327479951084 ], [ 545734.439228910021484, 7492380.660428210161626 ], [ 546048.651691599981859, 7492493.169389870017767 ], [ 546362.818985190009698, 7492582.670811150223017 ], [ 546676.941534420009702, 7492650.168377090245485 ], [ 547103.317789910011925, 7492650.180430520325899 ], [ 547379.936057189945132, 7492619.509876229800284 ], [ 547800.501640790025704, 7492572.869106560014188 ], [ 548113.150488939951174, 7492538.188606569543481 ], [ 548609.524892949964851, 7492518.292499619536102 ], [ 548674.150659580016509, 7492515.700941150076687 ], [ 549044.658509760047309, 7492599.751008120365441 ], [ 549167.862052430049516, 7492627.697604079730809 ], [ 549457.153067799983546, 7492715.703061419539154 ], [ 549683.977676769951358, 7492784.701064139604568 ], [ 550065.459032419952564, 7492942.20985712017864 ], [ 550534.541891410015523, 7493081.193029480054975 ], [ 550671.339240900008008, 7493121.721171219833195 ], [ 551052.80020133999642, 7493211.218328719958663 ], [ 551366.026483480003662, 7493247.456507329829037 ], [ 551636.307681920006871, 7493278.721003590151668 ], [ 552399.249670129967853, 7493143.741067410446703 ], [ 552780.738207599963062, 7493099.241545979864895 ], [ 552982.679487730027176, 7493143.749370129778981 ], [ 553296.870801819954067, 7493166.240730220451951 ], [ 553633.418506529997103, 7493143.748349349945784 ], [ 553925.148862999980338, 7493143.749152080155909 ], [ 554396.410372480051592, 7493121.748792300000787 ], [ 555136.930052940035239, 7493166.261243619956076 ], [ 555720.380931269959547, 7493233.758609309792519 ], [ 556371.181922900024801, 7493368.272165860049427 ], [ 556864.819337649969384, 7493525.279066280461848 ], [ 557246.288316729944199, 7493682.770033920183778 ], [ 557538.058653300045989, 7493817.278351039625704 ], [ 558772.240281710051931, 7494310.79051337018609 ], [ 559221.050658049993217, 7494378.290843970142305 ], [ 559647.420679530012421, 7494400.799023820087314 ], [ 560051.290330259944312, 7494400.798726679757237 ], [ 561128.430605069966987, 7494512.809020079672337 ], [ 562070.941096269991249, 7494625.308588610030711 ], [ 562430.00961092999205, 7494692.319664860144258 ], [ 562666.860106543055736, 7494692.319922047667205 ], [ 562666.860106543055736, 7493948.500266523100436 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.4686", "objectid": "4686", "lithstrtno": "4111", "code": "P_-HAj-xci-od", "unitname": "Weeli Wolli Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Banded iron-formation (commonly jaspilitic) mudstone siltstone and numerous dolerite sills; metamorphosed", "parentcode": "P_-HAU-xci-f", "parentname": "Hamersley Group upper", "rocktype1": "sedimentary other chemical or biochemical", "lithname1": "iron formation", "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "igneous mafic intrusive", "lithname2": "dolerite", "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group upper", "formation": "Weeli Wolli Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Paleoproterozoic", "ageto": "Paleoproterozoic", "max_age_ma": "2451", "maxuncerty": null, "min_age_ma": "2450", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 1.1292811170099999, "shape_area": 0.0079047980932400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 562666.860106543055736, 7482869.427093832753599 ], [ 562620.921824160031974, 7482870.370290259830654 ], [ 561563.550251089967787, 7482985.848885879851878 ], [ 561166.819444510038011, 7483040.850057239644229 ], [ 560652.730846249964088, 7483132.331242550164461 ], [ 560097.611719629960135, 7483252.829650710336864 ], [ 559546.367665310041048, 7483393.331099299713969 ], [ 558920.90135218994692, 7483571.819695089943707 ], [ 557752.598456379957497, 7483945.808593270368874 ], [ 556978.929645500029437, 7484170.302235740236938 ], [ 556566.089935260009952, 7484299.801005779765546 ], [ 556102.668451559962705, 7484467.789796110242605 ], [ 555335.139231530018151, 7484879.278656690381467 ], [ 554820.919659969978966, 7485060.280038660392165 ], [ 554369.942465250031091, 7485183.772040910087526 ], [ 553982.819799700053409, 7485344.768889689818025 ], [ 553691.022168859955855, 7485492.768842839635909 ], [ 553367.581373880035244, 7485685.759792169556022 ], [ 553012.697209479985759, 7485942.2681749695912 ], [ 552663.711761989980005, 7486115.757965289987624 ], [ 552168.448603449971415, 7486264.758787809871137 ], [ 551761.821539620053954, 7486356.259555390104651 ], [ 551406.247431789990515, 7486472.749969189986587 ], [ 551343.354683769983239, 7486514.723462239839137 ], [ 551089.328658859943971, 7486684.250709360465407 ], [ 550652.6283519200515, 7487132.239282780326903 ], [ 550417.940741110011004, 7487254.742107329890132 ], [ 550043.099172860034741, 7487332.729794139973819 ], [ 549814.509592509944923, 7487397.741918230429292 ], [ 549617.750346099957824, 7487488.229974529705942 ], [ 549389.111590950051323, 7487552.739949880167842 ], [ 548735.312448729993775, 7487804.719787940382957 ], [ 548494.020522819948383, 7487882.220946219749749 ], [ 547605.278605010011233, 7488218.210545349866152 ], [ 547008.470879010041244, 7488418.709465850144625 ], [ 546500.341896250029095, 7488548.709076629951596 ], [ 546373.349525970057584, 7488770.701892349869013 ], [ 546276.27850270003546, 7489277.689614480361342 ], [ 546231.999958069995046, 7489784.189334640279412 ], [ 546232.009528610040434, 7490128.679955460131168 ], [ 546425.291519170044921, 7490406.191465930081904 ], [ 546769.690927169984207, 7490574.189537869766355 ], [ 547082.899858859949745, 7490707.697768059559166 ], [ 547486.269420549971983, 7490854.199981180019677 ], [ 548366.278671049978584, 7491037.700336120091379 ], [ 548806.299725190037861, 7491074.208357560448349 ], [ 549612.929414979997091, 7491257.708402830176055 ], [ 550896.279859749949537, 7491404.231776890344918 ], [ 551360.246637489995919, 7491529.420138870365918 ], [ 551886.299605170032009, 7491661.230382160283625 ], [ 552509.628818519995548, 7491697.7503981301561 ], [ 553389.608255989965983, 7491734.250089040026069 ], [ 554672.931208909954876, 7491661.258393780328333 ], [ 555517.924562950036488, 7491690.303761900402606 ], [ 556799.610155759961344, 7491734.270272320136428 ], [ 557862.92075577005744, 7491917.791419030167162 ], [ 558926.241475829971023, 7492284.289813860319555 ], [ 559952.941987609956414, 7492467.79866745043546 ], [ 561126.260707290028222, 7492651.320399310439825 ], [ 562519.63842960994225, 7492724.33079618960619 ], [ 562666.860106543055736, 7492719.446714281104505 ], [ 562666.860106543055736, 7491443.341978270560503 ], [ 562521.079803650034592, 7491443.339907119981945 ], [ 561992.061383410007693, 7491548.828501519747078 ], [ 561330.888508139993064, 7491654.82883698027581 ], [ 560987.000516430009156, 7491628.319632159546018 ], [ 560537.252318589948118, 7491565.818223150447011 ], [ 560224.870665209949948, 7491408.31000730022788 ], [ 559976.550313269952312, 7491333.308798779733479 ], [ 559702.838738769991323, 7491271.312594629824162 ], [ 558811.25888198998291, 7491008.81138888001442 ], [ 558231.978382559958845, 7490903.811121249571443 ], [ 557703.978934710030444, 7490861.789144589565694 ], [ 557227.069282240001485, 7490864.787604030221701 ], [ 556656.288962260005064, 7490887.148668210022151 ], [ 555720.118228579987772, 7490923.777944720350206 ], [ 555179.999341189977713, 7491002.770095380023122 ], [ 554601.599390279967338, 7491076.260436410084367 ], [ 553889.61093282001093, 7491130.761719340458512 ], [ 553584.681596540031023, 7491101.749320579692721 ], [ 553012.629012149991468, 7491012.248947810381651 ], [ 552494.177772370050661, 7490904.748294780030847 ], [ 552011.551299010054208, 7490726.240335299633443 ], [ 551421.538080709986389, 7490654.741692890413105 ], [ 551357.266521550016478, 7490644.027377779595554 ], [ 550992.539270390057936, 7490583.220552190206945 ], [ 550545.609055069973692, 7490547.228825179859996 ], [ 550062.919663849985227, 7490440.229997159913182 ], [ 549687.550105770002119, 7490279.220335530117154 ], [ 549204.861118479981087, 7490100.220020210370421 ], [ 549043.907902959967032, 7490011.218519140034914 ], [ 548936.638724540011026, 7489850.221444319933653 ], [ 548883.05092617997434, 7489707.221509889699519 ], [ 548829.422016810043715, 7489528.210123609751463 ], [ 548918.779980969964527, 7489260.229725419543684 ], [ 549079.658860909985378, 7489009.730146840214729 ], [ 549365.731043579988182, 7488723.719588650390506 ], [ 549776.920173540012911, 7488455.730471529997885 ], [ 550313.250286179943942, 7488276.730200399644673 ], [ 550688.600265090004541, 7488098.239096100442111 ], [ 551153.438051630044356, 7487865.743341330438852 ], [ 551347.461202039965428, 7487732.949910280294716 ], [ 551493.128464640001766, 7487633.249030480161309 ], [ 552065.191636570030823, 7487418.750326620414853 ], [ 552297.569548410014249, 7487275.750405360013247 ], [ 552583.568355859955773, 7487114.748353379778564 ], [ 553280.832354560028762, 7486703.767619789578021 ], [ 553602.568778170039877, 7486524.766971509903669 ], [ 554049.511369140003808, 7486292.771328049711883 ], [ 554407.080602459958754, 7486131.769226860255003 ], [ 554853.959906719974242, 7486024.278550979681313 ], [ 555354.521061060018837, 7485756.290413860231638 ], [ 555872.959852430038154, 7485631.291738339699805 ], [ 556105.40838184999302, 7485541.790630529634655 ], [ 556464.279823770048097, 7485491.791407180018723 ], [ 557628.01885943999514, 7485201.302174190059304 ], [ 558712.487350440002047, 7484857.311369420029223 ], [ 559308.365425799973309, 7484784.212309150025249 ], [ 560220.029631930054165, 7484672.327784390188754 ], [ 560960.618532820022665, 7484619.337542350403965 ], [ 562045.031326589989476, 7484698.357952949590981 ], [ 562666.860106543055736, 7484752.543935566209257 ], [ 562666.860106543055736, 7482869.427093832753599 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.7708", "objectid": "7709", "lithstrtno": "4124", "code": "A-HAu-xsl-ci", "unitname": "Mount McRae Shale and Mount Sylvia Formation", "gswastatus": "Informal", "rank": "Formation", "descriptn": "Mudstone siltstone chert banded iron-formation and dolomite; metamorphosed", "parentcode": "A-HAL-xkt-ci", "parentname": "Hamersley Group lower", "rocktype1": "sedimentary siliciclastic", "lithname1": "siltstone/mudstone", "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "sedimentary other chemical or biochemical", "lithname2": "iron formation", "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group lower", "formation": "Mount McRae Shale and Mount Sylvia Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2541", "maxuncerty": null, "min_age_ma": "2501", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.64674087957199999, "shape_area": 0.0024271898412200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 562666.860106543055736, 7474303.736969869583845 ], [ 562648.130346660036594, 7474324.341077829711139 ], [ 562489.470800000010058, 7474509.841486860066652 ], [ 562330.751035189954564, 7474800.341639880090952 ], [ 562145.619462150032632, 7475408.850841050036252 ], [ 562066.239222049945965, 7476122.842129549942911 ], [ 561960.510675700032152, 7476493.341559140011668 ], [ 561907.561282849987037, 7476837.331754730083048 ], [ 561775.329069140017964, 7477180.839138709940016 ], [ 561695.998378359945491, 7477577.838732260279357 ], [ 561325.679088150034659, 7478291.849648060277104 ], [ 561166.979595110053197, 7478767.82974832970649 ], [ 560955.420378569979221, 7479111.827466390095651 ], [ 560664.510850730002858, 7479482.31912678014487 ], [ 560188.359123370028101, 7479905.321263619698584 ], [ 559565.259590790024959, 7480131.810321420431137 ], [ 558961.618415990029462, 7480662.810186740010977 ], [ 558166.318415640038438, 7481134.301850469782948 ], [ 557462.729210410034284, 7481615.291048490442336 ], [ 555890.978131970041431, 7482756.780634730122983 ], [ 554199.290736960014328, 7484058.279978320002556 ], [ 553299.030578140052967, 7484648.280572880059481 ], [ 553579.438505909987725, 7484774.269393079914153 ], [ 553859.379547549993731, 7484798.279873340390623 ], [ 554221.658450940041803, 7484745.277343910187483 ], [ 554557.948378719971515, 7484597.28947607986629 ], [ 555008.228967749979347, 7484327.279931530356407 ], [ 556339.359097260050476, 7483422.790656579658389 ], [ 557144.29002588998992, 7482858.30011445004493 ], [ 557702.1606820699526, 7482479.788011509925127 ], [ 558247.428242309950292, 7482145.80981088988483 ], [ 558526.340702550020069, 7481959.810445980168879 ], [ 558653.169789870036766, 7481869.807492359541357 ], [ 558811.488468160037883, 7481735.312533549964428 ], [ 558855.848585069994442, 7481709.810595990158617 ], [ 559388.251004809979349, 7481331.31110505014658 ], [ 560034.599146069958806, 7480850.329705360345542 ], [ 560332.309257369954139, 7480606.831241140142083 ], [ 560579.309177830000408, 7480382.829210110008717 ], [ 560819.990342710050754, 7480190.341357300058007 ], [ 561073.599140699952841, 7480023.831344950012863 ], [ 561282.990936969988979, 7479926.841339250095189 ], [ 561555.988813429954462, 7479823.83794873021543 ], [ 561720.549841640051454, 7479663.841516169719398 ], [ 561897.041405549971387, 7479338.339646079577506 ], [ 562060.639919589972124, 7478961.839952230453491 ], [ 562217.750590660027228, 7478572.839649910107255 ], [ 562305.249252759967931, 7478260.338304109871387 ], [ 562405.520149050047621, 7477941.359709770418704 ], [ 562499.051775350002572, 7477559.349274420179427 ], [ 562548.12923551001586, 7477176.840552739799023 ], [ 562666.860106543055736, 7476861.29614201374352 ], [ 562666.860106543055736, 7474303.736969869583845 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.4685", "objectid": "4685", "lithstrtno": "4104", "code": "P_-HAo-ci", "unitname": "Boolgeeda Iron Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Fine-grained finely laminated iron-formation mudstone siltstone and chert; metamorphosed", "parentcode": "P_-HAU-xci-f", "parentname": "Hamersley Group upper", "rocktype1": "sedimentary other chemical or biochemical", "lithname1": "iron formation", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group upper", "formation": "Boolgeeda Iron Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Paleoproterozoic", "ageto": "Paleoproterozoic", "max_age_ma": "2445", "maxuncerty": "5", "min_age_ma": "2445", "minuncerty": null, "max_age_da": "Isotopic", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.84233180388200002, "shape_area": 0.0021427326020500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 561967.689865470048971, 7490957.840596780180931 ], [ 562111.701183879980817, 7490942.341656750068069 ], [ 562255.138719380018301, 7490942.341470959596336 ], [ 562434.020006260019727, 7490960.339716799557209 ], [ 562666.860106543055736, 7490997.268630385398865 ], [ 562666.860106543055736, 7490327.742040442302823 ], [ 562508.521387450047769, 7490316.349900550208986 ], [ 562232.209474180010147, 7490323.840735719539225 ], [ 561887.998742550029419, 7490364.830492990091443 ], [ 561353.138263929984532, 7490455.839925279840827 ], [ 561149.948077109991573, 7490467.328518300317228 ], [ 560939.491455549956299, 7490454.332256129942834 ], [ 560659.271487800055183, 7490407.830268920399249 ], [ 560036.63073367998004, 7490250.817435380071402 ], [ 559565.77068843995221, 7490140.319842300377786 ], [ 559293.121205250034109, 7490098.320342510007322 ], [ 558944.329036970040761, 7490074.80872633960098 ], [ 558454.619944949983619, 7490079.311080169863999 ], [ 556952.621510909986682, 7490173.289636230096221 ], [ 556613.370150540024042, 7490170.290530409663916 ], [ 556335.350146159995347, 7490144.78921109996736 ], [ 556057.378166969981976, 7490089.779209819622338 ], [ 555922.809317460050806, 7490047.280013689771295 ], [ 555796.610539139946923, 7489986.769164679571986 ], [ 555680.940175779978745, 7489904.280013989657164 ], [ 555422.109302929951809, 7489682.76849140971899 ], [ 555317.190970840048976, 7489627.280259019695222 ], [ 555250.491035289946012, 7489608.778387219645083 ], [ 555181.981955250026658, 7489600.279798209667206 ], [ 555121.180678260046989, 7489605.268457190133631 ], [ 555077.509789519943297, 7489627.27132183033973 ], [ 555057.43090725003276, 7489667.769072749651968 ], [ 555055.669637170038186, 7489722.769396349787712 ], [ 555077.47972264001146, 7489926.771004930138588 ], [ 555064.819724770030007, 7490002.768572620116174 ], [ 555034.847964460030198, 7490071.269424409605563 ], [ 554990.98925154004246, 7490131.268015249632299 ], [ 554936.41038460994605, 7490182.271604879759252 ], [ 554874.289853860042058, 7490224.271523060277104 ], [ 554807.80789655004628, 7490256.269581560045481 ], [ 554678.440193659975193, 7490290.270079569891095 ], [ 554545.757976630004123, 7490299.269265339709818 ], [ 554208.550733990035951, 7490286.260467450134456 ], [ 553999.691431769984774, 7490303.258721450343728 ], [ 553519.378694409970194, 7490376.257764330133796 ], [ 553314.549001369974576, 7490381.750424340367317 ], [ 553041.379191059968434, 7490359.260142910294235 ], [ 552699.760082739987411, 7490298.249241 ], [ 551355.009175600018352, 7489973.566368820145726 ], [ 551355.000405839993618, 7489970.961965770460665 ], [ 550954.048379419953562, 7489876.730932460166514 ], [ 550621.24930092995055, 7489772.729154540225863 ], [ 550433.598883340018801, 7489695.228412760421634 ], [ 550328.029854170046747, 7489628.222351909615099 ], [ 550285.738052150001749, 7489586.229384990409017 ], [ 550253.301929129986092, 7489537.229197359643877 ], [ 550232.6700369999744, 7489481.221961669623852 ], [ 550223.110004200018011, 7489419.719302509911358 ], [ 550223.97110015002545, 7489355.731089119799435 ], [ 550234.669951020041481, 7489292.230416620150208 ], [ 550254.6215788499685, 7489231.729525770060718 ], [ 550283.239334529964253, 7489177.719123959541321 ], [ 550322.429807569948025, 7489129.230446239933372 ], [ 550369.362692189984955, 7489089.229550669901073 ], [ 550480.609119680011645, 7489028.731948739849031 ], [ 550797.231603089952841, 7488911.730072430334985 ], [ 551350.489284290000796, 7488631.60913693998009 ], [ 551592.862106529995799, 7488544.739053940400481 ], [ 552134.688126430031843, 7488391.25076686963439 ], [ 552388.760000659967773, 7488291.758676700294018 ], [ 552690.450839139986783, 7488138.748175430111587 ], [ 553401.070733950007707, 7487733.249943439848721 ], [ 553896.301398920011707, 7487490.769196850247681 ], [ 554405.948296479997225, 7487274.771301779896021 ], [ 555836.071254760026932, 7486728.790605160407722 ], [ 556804.82938687002752, 7486337.79075643979013 ], [ 557264.831118940026499, 7486181.298667410388589 ], [ 557672.411451869993471, 7486076.302588099613786 ], [ 558225.220487660029903, 7485970.809013069607317 ], [ 558779.850868319976144, 7485895.818508500233293 ], [ 559601.098498450010084, 7485823.820487939752638 ], [ 560798.851472449954599, 7485752.840195829980075 ], [ 561372.290765090030618, 7485744.849593220278621 ], [ 561797.648586699971929, 7485767.847794779576361 ], [ 562666.860106543055736, 7485870.348914626054466 ], [ 562666.860106543055736, 7485244.75902686920017 ], [ 561807.929275420028716, 7485214.352229559794068 ], [ 561378.661332880030386, 7485181.329030959866941 ], [ 560646.099169709952548, 7485094.838985750451684 ], [ 560281.059761279961094, 7485063.327579639852047 ], [ 559988.580673109972849, 7485053.330759939737618 ], [ 559770.850210809963755, 7485060.829919259995222 ], [ 559591.731237130006775, 7485082.821547220461071 ], [ 559416.111160399974324, 7485121.319079210050404 ], [ 558823.288362130057067, 7485292.819745820015669 ], [ 558502.350900650024414, 7485368.811100269667804 ], [ 557618.360711049987003, 7485548.799116269685328 ], [ 557410.971217770013027, 7485606.310205210000277 ], [ 556819.960292669944465, 7485816.791321939788759 ], [ 556607.551553230034187, 7485875.289830160327256 ], [ 556319.90044342004694, 7485935.28877651039511 ], [ 555086.388819269952364, 7486292.778706509619951 ], [ 554389.201146050007083, 7486632.268889189697802 ], [ 552762.38842922996264, 7487347.261956869624555 ], [ 552458.420305559993722, 7487508.259410570375621 ], [ 552190.307156149996445, 7487704.748273840174079 ], [ 551348.879236279986799, 7488153.749205430038273 ], [ 551348.8731804699637, 7488151.95201200991869 ], [ 550992.346481370041147, 7488343.015108509920537 ], [ 550581.371146389981732, 7488563.240808730013669 ], [ 550205.898894299985841, 7488652.238660969771445 ], [ 549866.299771460006014, 7488831.230419640429318 ], [ 549562.359360320027918, 7489135.219783149659634 ], [ 549437.210341510013677, 7489367.220461320132017 ], [ 549544.481534000020474, 7489653.720123520120978 ], [ 549687.558985300012864, 7489850.229938889853656 ], [ 549848.407810820033774, 7490011.218461450189352 ], [ 550205.918517110054381, 7490207.726119190454483 ], [ 550574.710670660017058, 7490249.26102614030242 ], [ 550976.810912359971553, 7490294.53687281999737 ], [ 551356.233714660047553, 7490337.249311570078135 ], [ 551356.233513029990718, 7490337.189423720352352 ], [ 552297.549740719958209, 7490511.749160650186241 ], [ 552690.860442089964636, 7490601.252312409691513 ], [ 553048.378829860012047, 7490744.251306530088186 ], [ 553459.540769950021058, 7490815.750678749755025 ], [ 553672.048846399993636, 7490845.750289809890091 ], [ 554212.041539250058122, 7490728.260465569794178 ], [ 554586.930939109995961, 7490675.261713890358806 ], [ 555006.431059389957227, 7490628.260786630213261 ], [ 555521.35792516998481, 7490587.271619060076773 ], [ 556093.739616920007393, 7490584.269089750014246 ], [ 556602.428969210013747, 7490568.778313140384853 ], [ 557149.109579319949262, 7490527.790441599674523 ], [ 557606.920336249982938, 7490512.298539609648287 ], [ 558179.327531220042147, 7490528.301644960418344 ], [ 558764.581863790052012, 7490563.31014512013644 ], [ 559330.811492510023527, 7490623.799296939745545 ], [ 559929.459091600030661, 7490792.82088456954807 ], [ 560526.88127023994457, 7491011.818067179992795 ], [ 560700.429184500011615, 7491060.818243809975684 ], [ 560878.559417800046504, 7491095.331193099729717 ], [ 561058.57812742004171, 7491114.820658599957824 ], [ 561202.150876770028844, 7491117.830765389837325 ], [ 561343.999657099950127, 7491106.820366109721363 ], [ 561447.579118140041828, 7491087.831228899769485 ], [ 561789.330315939965658, 7490993.841509629972279 ], [ 561967.689865470048971, 7490957.840596780180931 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.8420", "objectid": "8421", "lithstrtno": "2219", "code": "A-FO-od", "unitname": "Fortescue Group", "gswastatus": "Informal", "rank": "Formation", "descriptn": "Dolerite dyke or sill", "parentcode": "A-FO-xb-s", "parentname": "Fortescue Group", "rocktype1": "igneous mafic intrusive", "lithname1": "dolerite", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": null, "formation": null, "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": null, "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma); Fortescue Rifting Event (2775 - 2752 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2775", "maxuncerty": null, "min_age_ma": "2629", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 1.3540091569899999, "shape_area": 0.010743036332199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 562666.860106543055736, 7497990.631876044906676 ], [ 562017.460723969968967, 7497884.259027689695358 ], [ 561539.879878400010057, 7497765.770021039992571 ], [ 561069.011243949993514, 7497704.759833839721978 ], [ 560636.190526859951206, 7497630.76089888997376 ], [ 560088.960638139978983, 7497557.271907770074904 ], [ 559561.129777790047228, 7497553.769323430024087 ], [ 559026.79020450997632, 7497531.261897060088813 ], [ 558631.969253320014104, 7497425.260880719870329 ], [ 558255.600268559996039, 7497185.26009499002248 ], [ 558070.121155599947087, 7496944.770771049894392 ], [ 557896.630763810011558, 7496576.258577490225434 ], [ 556810.039340780000202, 7496760.771355640143156 ], [ 556919.861955519998446, 7497122.759786680340767 ], [ 557035.40986553998664, 7497344.758373170159757 ], [ 557259.399272640002891, 7497649.25935020018369 ], [ 557450.919712999952026, 7497794.760403499938548 ], [ 557673.869504629983567, 7497876.259613890200853 ], [ 557909.380009340005927, 7497912.756985089741647 ], [ 558259.311313159996644, 7497949.258003230206668 ], [ 558679.441208709962666, 7498023.260132320225239 ], [ 559118.799577760044485, 7498154.758440059609711 ], [ 559889.530454299994744, 7498411.251732099801302 ], [ 560627.90070563997142, 7498553.749823899939656 ], [ 561098.710991080035456, 7498583.249814179725945 ], [ 561912.528315510018729, 7498559.2597412802279 ], [ 562421.449098899960518, 7498588.759355739690363 ], [ 562666.860106543055736, 7498620.430423093959689 ], [ 562666.860106543055736, 7497990.631876044906676 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.4687", "objectid": "4687", "lithstrtno": "4068", "code": "P_-TK-s", "unitname": "Turee Creek Group", "gswastatus": "Formal", "rank": "Group", "descriptn": "Mudstone siltstone sandstone conglomerate dolomite; minor diamictite limestone and iron formation; intruded by Balgara Dolerite sills", "parentcode": "AP_-MB-xb-c", "parentname": "Mount Bruce Supergroup", "rocktype1": "sedimentary siliciclastic", "lithname1": null, "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Turee Creek Group", "subgroup": null, "formation": null, "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Turee Creek Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma)", "agefrom": "Paleoproterozoic", "ageto": "Paleoproterozoic", "max_age_ma": "2445", "maxuncerty": null, "min_age_ma": "2208", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.40256874734699999, "shape_area": 0.0056821573360100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 562666.860106543055736, 7485870.348914626054466 ], [ 561797.648586699971929, 7485767.847794779576361 ], [ 561372.290765090030618, 7485744.849593220278621 ], [ 560798.851472449954599, 7485752.840195829980075 ], [ 559601.098498450010084, 7485823.820487939752638 ], [ 558779.850868319976144, 7485895.818508500233293 ], [ 558225.220487660029903, 7485970.809013069607317 ], [ 557672.411451869993471, 7486076.302588099613786 ], [ 557264.831118940026499, 7486181.298667410388589 ], [ 556804.82938687002752, 7486337.79075643979013 ], [ 555836.071254760026932, 7486728.790605160407722 ], [ 554405.948296479997225, 7487274.771301779896021 ], [ 553896.301398920011707, 7487490.769196850247681 ], [ 553401.070733950007707, 7487733.249943439848721 ], [ 552690.450839139986783, 7488138.748175430111587 ], [ 552388.760000659967773, 7488291.758676700294018 ], [ 552134.688126430031843, 7488391.25076686963439 ], [ 551592.862106529995799, 7488544.739053940400481 ], [ 551350.489284290000796, 7488631.60913693998009 ], [ 550797.231603089952841, 7488911.730072430334985 ], [ 550480.609119680011645, 7489028.731948739849031 ], [ 550369.362692189984955, 7489089.229550669901073 ], [ 550322.429807569948025, 7489129.230446239933372 ], [ 550283.239334529964253, 7489177.719123959541321 ], [ 550254.6215788499685, 7489231.729525770060718 ], [ 550234.669951020041481, 7489292.230416620150208 ], [ 550223.97110015002545, 7489355.731089119799435 ], [ 550223.110004200018011, 7489419.719302509911358 ], [ 550232.6700369999744, 7489481.221961669623852 ], [ 550253.301929129986092, 7489537.229197359643877 ], [ 550285.738052150001749, 7489586.229384990409017 ], [ 550328.029854170046747, 7489628.222351909615099 ], [ 550433.598883340018801, 7489695.228412760421634 ], [ 550621.24930092995055, 7489772.729154540225863 ], [ 550954.048379419953562, 7489876.730932460166514 ], [ 551355.000405839993618, 7489970.961965770460665 ], [ 551355.009175600018352, 7489973.566368820145726 ], [ 552699.760082739987411, 7490298.249241 ], [ 553041.379191059968434, 7490359.260142910294235 ], [ 553314.549001369974576, 7490381.750424340367317 ], [ 553519.378694409970194, 7490376.257764330133796 ], [ 553999.691431769984774, 7490303.258721450343728 ], [ 554208.550733990035951, 7490286.260467450134456 ], [ 554545.757976630004123, 7490299.269265339709818 ], [ 554678.440193659975193, 7490290.270079569891095 ], [ 554807.80789655004628, 7490256.269581560045481 ], [ 554874.289853860042058, 7490224.271523060277104 ], [ 554936.41038460994605, 7490182.271604879759252 ], [ 554990.98925154004246, 7490131.268015249632299 ], [ 555034.847964460030198, 7490071.269424409605563 ], [ 555064.819724770030007, 7490002.768572620116174 ], [ 555077.47972264001146, 7489926.771004930138588 ], [ 555055.669637170038186, 7489722.769396349787712 ], [ 555057.43090725003276, 7489667.769072749651968 ], [ 555077.509789519943297, 7489627.27132183033973 ], [ 555121.180678260046989, 7489605.268457190133631 ], [ 555181.981955250026658, 7489600.279798209667206 ], [ 555250.491035289946012, 7489608.778387219645083 ], [ 555317.190970840048976, 7489627.280259019695222 ], [ 555422.109302929951809, 7489682.76849140971899 ], [ 555680.940175779978745, 7489904.280013989657164 ], [ 555796.610539139946923, 7489986.769164679571986 ], [ 555922.809317460050806, 7490047.280013689771295 ], [ 556057.378166969981976, 7490089.779209819622338 ], [ 556335.350146159995347, 7490144.78921109996736 ], [ 556613.370150540024042, 7490170.290530409663916 ], [ 556952.621510909986682, 7490173.289636230096221 ], [ 558454.619944949983619, 7490079.311080169863999 ], [ 558944.329036970040761, 7490074.80872633960098 ], [ 559293.121205250034109, 7490098.320342510007322 ], [ 559565.77068843995221, 7490140.319842300377786 ], [ 560036.63073367998004, 7490250.817435380071402 ], [ 560659.271487800055183, 7490407.830268920399249 ], [ 560939.491455549956299, 7490454.332256129942834 ], [ 561149.948077109991573, 7490467.328518300317228 ], [ 561353.138263929984532, 7490455.839925279840827 ], [ 561887.998742550029419, 7490364.830492990091443 ], [ 562232.209474180010147, 7490323.840735719539225 ], [ 562508.521387450047769, 7490316.349900550208986 ], [ 562666.860106543055736, 7490327.742040442302823 ], [ 562666.860106543055736, 7485870.348914626054466 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.14338", "objectid": "14339", "lithstrtno": "2258", "code": "A-HAm-cib", "unitname": "Marra Mamba Iron Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Chert banded iron-formation mudstone and siltstone; minor carbonate; metamorphosed", "parentcode": "A-HAL-xkt-ci", "parentname": "Hamersley Group lower", "rocktype1": "sedimentary other chemical or biochemical", "lithname1": "iron formation", "qualifier1": "banded", "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group lower", "formation": "Marra Mamba Iron Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2629", "maxuncerty": null, "min_age_ma": "2597", "minuncerty": "5", "max_age_da": "Inferred", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 3.2073941479000001, "shape_area": 0.010145258489 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 548640.953464290942065, 7521273.574077860452235 ], [ 548761.428701419965364, 7521155.699331229552627 ], [ 548900.950248799985275, 7521065.68975913990289 ], [ 549180.109107009950094, 7520943.19092417974025 ], [ 549472.190413629985414, 7520840.188566190190613 ], [ 549808.758831460028887, 7520736.178342989645898 ], [ 550653.059888210031204, 7520426.181568100117147 ], [ 551014.678965050028637, 7520239.669949440285563 ], [ 551242.628899940056726, 7520034.669556410051882 ], [ 551445.290414919960313, 7519868.169856520369649 ], [ 551698.502042190055363, 7519618.671442500315607 ], [ 551977.181308640050702, 7519387.66122165042907 ], [ 552508.919727199943736, 7518875.661261970177293 ], [ 552736.711374880047515, 7518632.649459320120513 ], [ 552951.648096360033378, 7518364.148328660055995 ], [ 553365.709329799981788, 7517646.139826419763267 ], [ 553521.998791010002606, 7517146.120753969997168 ], [ 553490.751053510000929, 7516646.130151580087841 ], [ 553396.94924536999315, 7516396.131426160223782 ], [ 553119.358725509955548, 7516212.130172469653189 ], [ 552934.171248369966634, 7516053.632071820087731 ], [ 552735.878587619983591, 7515800.120999690145254 ], [ 552594.358582830056548, 7515463.632309479638934 ], [ 552472.469793559983373, 7515248.128782370127738 ], [ 552267.968993069953285, 7515045.631445099599659 ], [ 551731.074992449954152, 7514759.201526599936187 ], [ 551298.908410839969292, 7514528.621823900379241 ], [ 550872.358978120028041, 7514435.608253129757941 ], [ 550522.581304499995895, 7514431.12007798999548 ], [ 550096.13010181998834, 7514357.129423620179296 ], [ 549777.157928950036876, 7514142.630515470169485 ], [ 549381.82016482995823, 7513928.131438869982958 ], [ 548700.250355439959094, 7513696.629555179737508 ], [ 548311.548449330031872, 7513533.128911710344255 ], [ 548011.999417399987578, 7513394.639083719812334 ], [ 547744.120906300027855, 7513230.630903270095587 ], [ 547552.240127959987149, 7513009.140230040065944 ], [ 547423.940015339991078, 7512774.140642990358174 ], [ 547301.797638020012528, 7512494.641788500361145 ], [ 547025.85104430001229, 7511974.129926219582558 ], [ 546921.599986459943466, 7511756.871668560430408 ], [ 546910.207894589984789, 7511733.130136489868164 ], [ 546839.032225689967163, 7511472.640136569738388 ], [ 546773.339685610029846, 7511046.639840469695628 ], [ 546747.331027709995396, 7510919.130965920165181 ], [ 546523.250805940013379, 7510615.138416299596429 ], [ 546344.38002908998169, 7510444.151013869792223 ], [ 545834.078861130052246, 7510116.140090740285814 ], [ 545584.70227057999, 7509837.140359420329332 ], [ 545386.061797900008969, 7509520.139114540070295 ], [ 545238.039955170010217, 7509170.651160649955273 ], [ 545122.098981300019659, 7508859.651255340315402 ], [ 544986.967824600054882, 7508529.640704610385001 ], [ 544743.649668990052305, 7508180.64890768006444 ], [ 544659.952399050001986, 7507964.649859149940312 ], [ 544499.401140230009332, 7507634.652536380104721 ], [ 544320.020545160048641, 7507368.150118900462985 ], [ 544044.859332469990477, 7507007.147786979563534 ], [ 543852.741408649948426, 7506721.649244810454547 ], [ 543666.679994179983623, 7506391.651839040219784 ], [ 543486.618928679963574, 7505966.149615850299597 ], [ 543177.948728719959036, 7505267.651104040443897 ], [ 542851.599998170044273, 7504830.148377349600196 ], [ 542628.151267910026945, 7504653.147738579660654 ], [ 541996.49951150000561, 7504230.151673150248826 ], [ 541486.308983789989725, 7503927.648783730342984 ], [ 541052.439851489965804, 7503624.639814630150795 ], [ 540714.57853476004675, 7503454.658803319558501 ], [ 540331.750142619945109, 7503195.649200160056353 ], [ 539885.060554989962839, 7502867.149066110141575 ], [ 539534.279518340015784, 7502671.651546549983323 ], [ 539088.339263470028527, 7502508.650756360031664 ], [ 538115.051889610011131, 7502437.639098499901593 ], [ 537790.329145789961331, 7502369.149316649883986 ], [ 537573.567950980039313, 7502255.649229579605162 ], [ 537394.901242660009302, 7502116.638735800050199 ], [ 537330.598165779956616, 7501970.641640059649944 ], [ 537323.512343090027571, 7501824.63116788957268 ], [ 537322.000254699960351, 7501506.137971930205822 ], [ 537263.759554189979099, 7501296.640788069926202 ], [ 537039.810191430035047, 7501017.629488600417972 ], [ 536612.610229640034959, 7500784.619802930392325 ], [ 536218.050877150031738, 7500716.62982770986855 ], [ 535734.419606919982471, 7500662.120714230462909 ], [ 534972.087890470051207, 7500831.609265670180321 ], [ 534616.169753010035492, 7500865.118759210221469 ], [ 534266.389420230058022, 7500867.109677930362523 ], [ 534081.707948690047488, 7500817.109223029576242 ], [ 533864.937776679988019, 7500710.10962160024792 ], [ 533501.710612179944292, 7500546.609419420361519 ], [ 533285.191948459949344, 7500484.100489480420947 ], [ 533038.928390149958432, 7500854.600384590215981 ], [ 533000.699731510016136, 7500836.09126906003803 ], [ 532828.741958869970404, 7500779.589823200367391 ], [ 532059.217866000020877, 7500783.592576529830694 ], [ 531715.73976946005132, 7500766.589671320281923 ], [ 531009.339159070048481, 7500675.080785560421646 ], [ 530322.572177659953013, 7500685.071386770345271 ], [ 529769.568950040033087, 7500739.068745999597013 ], [ 529089.130638509988785, 7500749.058695370331407 ], [ 528593.159048130037263, 7500745.061562200076878 ], [ 528861.282109110034071, 7500456.376656860113144 ], [ 529080.291546280030161, 7500220.560018570162356 ], [ 528991.080585750052705, 7500183.048984399996698 ], [ 528679.648660099948756, 7500223.049524989910424 ], [ 527986.562664440018125, 7500239.548052719794214 ], [ 527668.650482030003332, 7500241.048918349668384 ], [ 526409.297543440014124, 7500216.030406280420721 ], [ 525849.759919609990902, 7500225.52054840978235 ], [ 525373.009474970051087, 7500266.021161619573832 ], [ 525080.378881589975208, 7500248.520118249580264 ], [ 524717.158815650036559, 7500210.008445120416582 ], [ 525164.741490110056475, 7500478.010388390161097 ], [ 525549.851323970011435, 7500614.030079290270805 ], [ 526591.889810179942288, 7500682.031155990436673 ], [ 527430.069593699998222, 7500795.549122979864478 ], [ 528009.380023929988965, 7501104.558906380087137 ], [ 528302.37962347001303, 7501116.061090369708836 ], [ 528419.508611020050012, 7500966.560950050130486 ], [ 528449.42942168994341, 7500976.550271079875529 ], [ 529061.089658710057847, 7501044.56824946962297 ], [ 529763.349431850016117, 7501135.069384420290589 ], [ 530442.982213509967551, 7501135.069277220405638 ], [ 531190.530099679948762, 7501090.091032720170915 ], [ 532255.239534780033864, 7501090.091991020366549 ], [ 532914.749698439962231, 7501129.601234369911253 ], [ 532980.302307370002382, 7500984.598948219791055 ], [ 533649.940938669955358, 7501055.119656150229275 ], [ 534813.658578719943762, 7501213.618710099719465 ], [ 535289.749861310003325, 7501266.619812849909067 ], [ 535871.598377979942597, 7501240.119965040124953 ], [ 536215.441291820025072, 7501319.618713189847767 ], [ 536585.740454040002078, 7501557.629628020338714 ], [ 536718.007789180031978, 7502060.138529310002923 ], [ 536718.008638269966468, 7502615.629928699694574 ], [ 536770.921030709985644, 7502932.640545120462775 ], [ 536956.039038649993017, 7503170.63928843010217 ], [ 537458.561911060009152, 7503118.13959925994277 ], [ 537934.598100109957159, 7502959.149481950327754 ], [ 538490.040202290052548, 7502853.640004459768534 ], [ 539204.189948190003633, 7503038.640902689658105 ], [ 540447.261362720048055, 7503647.150411129929125 ], [ 541293.589129960048012, 7504202.150551839731634 ], [ 542034.149294179980643, 7504704.65143350046128 ], [ 542748.241729310015216, 7505604.149364749900997 ], [ 543197.859995450009592, 7506291.651044440455735 ], [ 543753.311143380007707, 7507006.14853013958782 ], [ 544255.819560579955578, 7507878.650570879690349 ], [ 544520.360227240016684, 7508619.149100380018353 ], [ 544599.691484899958596, 7509307.151234080083668 ], [ 544626.180307739996351, 7509862.650901610031724 ], [ 544864.169698999961838, 7510153.151318330317736 ], [ 545313.800301290000789, 7510444.152128339745104 ], [ 545684.079341580043547, 7510788.140244360081851 ], [ 546213.101779810036533, 7511581.639293549582362 ], [ 546266.225982900010422, 7511758.854636039584875 ], [ 546292.391366260009818, 7511846.137563469819725 ], [ 546345.340604510041885, 7512190.129451249726117 ], [ 546556.911903640022501, 7512613.13760878983885 ], [ 546821.429407270043157, 7512798.150753559544683 ], [ 546847.837919460027479, 7512824.640321739949286 ], [ 547085.848777150036767, 7513142.140599629841745 ], [ 547535.499783820006996, 7513671.140150490216911 ], [ 547799.999848159961402, 7513935.62943566031754 ], [ 548223.188856089953333, 7514147.138311300426722 ], [ 548725.718877919949591, 7514279.629916179925203 ], [ 549069.508477109950036, 7514358.640474690124393 ], [ 549439.771045750007033, 7514570.129413739778101 ], [ 550048.098786800052039, 7514861.130233380012214 ], [ 551106.047744889976457, 7514993.631505040451884 ], [ 551608.528330349945463, 7515258.118888939730823 ], [ 551952.427688780007884, 7515654.62000382039696 ], [ 552005.308401120011695, 7515972.120834840461612 ], [ 552005.320539579959586, 7516316.120233830064535 ], [ 552031.740366630023345, 7516659.61781414039433 ], [ 552111.14043827005662, 7516950.619430690072477 ], [ 552164.019822699949145, 7517056.618780449964106 ], [ 552190.439047339954413, 7517188.608529070392251 ], [ 552137.581058409996331, 7517321.118114409968257 ], [ 551502.840183029999025, 7517850.120681430213153 ], [ 551264.768027849961072, 7518008.639421570114791 ], [ 551000.289480659994297, 7518326.130060980096459 ], [ 550682.909945619991049, 7518934.651580410078168 ], [ 550471.340299690025859, 7519410.668283799663186 ], [ 550048.162290849955752, 7519860.179352750070393 ], [ 549677.920448170043528, 7520204.177992169745266 ], [ 549096.03939349995926, 7520442.179891030304134 ], [ 548620.001067279954441, 7520918.200960939750075 ], [ 548286.730018491391093, 7521273.574077860452235 ], [ 548640.953464290942065, 7521273.574077860452235 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.14338", "objectid": "14339", "lithstrtno": "2258", "code": "A-HAm-cib", "unitname": "Marra Mamba Iron Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Chert banded iron-formation mudstone and siltstone; minor carbonate; metamorphosed", "parentcode": "A-HAL-xkt-ci", "parentname": "Hamersley Group lower", "rocktype1": "sedimentary other chemical or biochemical", "lithname1": "iron formation", "qualifier1": "banded", "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group lower", "formation": "Marra Mamba Iron Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2629", "maxuncerty": null, "min_age_ma": "2597", "minuncerty": "5", "max_age_da": "Inferred", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 3.2073941479000001, "shape_area": 0.010145258489 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 515687.31005864002509, 7510208.102885807864368 ], [ 516174.411889459996019, 7510353.441098780371249 ], [ 516492.951762130018324, 7510465.937333139590919 ], [ 517020.139190429996233, 7510529.950958830304444 ], [ 517549.060095640015788, 7510678.458123919554055 ], [ 517866.450773890013807, 7510783.959730369970202 ], [ 518141.521315880003385, 7510910.961119780316949 ], [ 518458.888367109990213, 7510995.468531150370836 ], [ 519199.428999839932658, 7511037.968745009973645 ], [ 519612.440949510026257, 7511174.980778340250254 ], [ 519955.938934519945178, 7511198.499291979707778 ], [ 520700.899943009950221, 7511385.498376620002091 ], [ 520993.898059519939125, 7511473.001950009725988 ], [ 521299.68208722001873, 7511585.508881360292435 ], [ 521898.73540557816159, 7511830.16974357701838 ], [ 521898.73540557816159, 7511830.16974357701838 ], [ 521962.327799500024412, 7511849.52925833966583 ], [ 522108.960515180020593, 7511925.032064230181277 ], [ 522459.529177899996284, 7512088.520967369899154 ], [ 522555.290484579978511, 7512171.029042379930615 ], [ 522695.671639500011224, 7512272.040571300312877 ], [ 523116.790019250009209, 7512556.040891540236771 ], [ 523397.980987849994563, 7512841.028172080405056 ], [ 523666.980231429974083, 7513234.038817330263555 ], [ 523930.951113260001875, 7513907.540365519933403 ], [ 524034.479650379973464, 7514276.041863550432026 ], [ 524208.542307230003644, 7514771.52988651022315 ], [ 524426.06841973005794, 7515044.040656699799001 ], [ 524713.438822360010818, 7515278.041626789607108 ], [ 524765.351799699943513, 7515500.540381940081716 ], [ 524696.669458879972808, 7515768.029474440030754 ], [ 524698.002097900025547, 7516048.040206580422819 ], [ 524794.56922211998608, 7516283.027406759560108 ], [ 524916.629481710027903, 7516549.539432030171156 ], [ 524994.87055044004228, 7516944.028645990416408 ], [ 525085.749328059959225, 7517319.029316320084035 ], [ 525227.687564849969931, 7517751.051117460243404 ], [ 525504.700332000036724, 7518468.57182256039232 ], [ 525722.161406980012543, 7518741.078860250301659 ], [ 525945.672333069960587, 7518931.100659869611263 ], [ 526022.688289919984527, 7519064.102008130401373 ], [ 526017.568704079953022, 7519325.110889060422778 ], [ 525935.481611039955169, 7519459.120913409627974 ], [ 525808.730688430019654, 7519542.599877079948783 ], [ 525351.481491480022669, 7519685.100868449546397 ], [ 525199.187788509996608, 7519762.588524759747088 ], [ 525129.969782790052705, 7519909.090361219830811 ], [ 525105.160121239954606, 7520030.097857830114663 ], [ 525099.700741240056232, 7520227.598221190273762 ], [ 525215.56044709996786, 7520507.118261069990695 ], [ 525489.819585519959219, 7520677.630986260250211 ], [ 525974.109962780028582, 7520865.669559930451214 ], [ 526178.051961730001494, 7520960.180783839896321 ], [ 526312.182531099999323, 7521074.180512679740787 ], [ 526401.691515060025267, 7521181.680516350083053 ], [ 526436.227119922172278, 7521273.574077860452235 ], [ 530080.028660500538535, 7521273.574077860452235 ], [ 530198.73958735994529, 7521243.73099188040942 ], [ 530605.669946389971301, 7521228.739805289544165 ], [ 530872.621390014886856, 7521273.574077860452235 ], [ 530992.855844534235075, 7521273.574077860452235 ], [ 531297.701123569975607, 7520983.249538940377533 ], [ 531475.820392590016127, 7520995.249874849803746 ], [ 531685.429601419949904, 7520949.248811120167375 ], [ 532015.559444969985634, 7520826.7419608598575 ], [ 532308.147656969958916, 7520831.239409450441599 ], [ 532499.439517520018853, 7520951.25150972045958 ], [ 532532.178689119988121, 7521142.239576890133321 ], [ 532504.71503138798289, 7521273.574077860452235 ], [ 534942.625705180340447, 7521273.574077860452235 ], [ 534681.910660160006955, 7521156.260567620396614 ], [ 534443.83951988001354, 7520918.249867100268602 ], [ 534232.281925669987686, 7520547.758248940110207 ], [ 534179.310949980048463, 7520336.249023750424385 ], [ 533967.78170361998491, 7520124.748354859650135 ], [ 533518.159608450019732, 7520071.751074260100722 ], [ 533094.969673049985431, 7519992.238394300453365 ], [ 532155.879878710024059, 7520065.750446840189397 ], [ 531917.638871380011551, 7520292.741055970080197 ], [ 531810.931236980017275, 7520234.75136689003557 ], [ 531184.701630669995211, 7520213.250957230105996 ], [ 530515.288809439982288, 7520299.242387680336833 ], [ 529586.688838250003755, 7520623.21959681995213 ], [ 528809.300388630013913, 7520796.221634940244257 ], [ 528606.400429080007598, 7520985.199372570030391 ], [ 528170.259027419961058, 7521093.710383520461619 ], [ 527556.788195970002562, 7520709.689603740349412 ], [ 526779.38138648995664, 7520428.659740010276437 ], [ 526433.861925230012275, 7520191.14070682041347 ], [ 526390.661484980024397, 7520040.141337719745934 ], [ 526498.578610370052047, 7519845.650696289725602 ], [ 526736.171334589947946, 7519608.140634800307453 ], [ 526973.669562230003066, 7519392.128941999748349 ], [ 527168.042084699962288, 7519111.639367979951203 ], [ 527168.028100849944167, 7518874.129576059989631 ], [ 526779.300390499993227, 7518247.606851640157402 ], [ 526541.700464530033059, 7517513.580407430417836 ], [ 526433.760071319993585, 7516757.578540240414441 ], [ 526563.319796859985217, 7516282.581881569698453 ], [ 526476.911097340052947, 7515634.589470960199833 ], [ 525958.598907200037502, 7514835.5597521699965 ], [ 525245.890789909986779, 7513907.069736359640956 ], [ 524684.430742830038071, 7513216.04936845973134 ], [ 524079.779780430020764, 7512503.560726470313966 ], [ 523431.912117369996849, 7511920.551063950173557 ], [ 523243.802212379989214, 7511810.813952400349081 ], [ 523243.704705209995154, 7511810.814099580049515 ], [ 522654.532024319982156, 7511467.028237969614565 ], [ 521963.520088610006496, 7511251.030114050023258 ], [ 521250.897257780015934, 7510927.007610100321472 ], [ 520343.940526639984455, 7510754.501726740039885 ], [ 519501.770507230015937, 7510646.489690399728715 ], [ 518681.190154069976415, 7510473.470780050382018 ], [ 517947.010351110016927, 7510300.959039909765124 ], [ 516564.999997559993062, 7509955.440505569800735 ], [ 515762.921122459985781, 7509734.929779940284789 ], [ 515687.31005864002509, 7509757.969303893856704 ], [ 515687.31005864002509, 7510208.102885807864368 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.14338", "objectid": "14339", "lithstrtno": "2258", "code": "A-HAm-cib", "unitname": "Marra Mamba Iron Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Chert banded iron-formation mudstone and siltstone; minor carbonate; metamorphosed", "parentcode": "A-HAL-xkt-ci", "parentname": "Hamersley Group lower", "rocktype1": "sedimentary other chemical or biochemical", "lithname1": "iron formation", "qualifier1": "banded", "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group lower", "formation": "Marra Mamba Iron Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2629", "maxuncerty": null, "min_age_ma": "2597", "minuncerty": "5", "max_age_da": "Inferred", "min_age_da": "Isotopic", "extract_da": "2016-06-30", "shape_leng": 3.2073941479000001, "shape_area": 0.010145258489 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 544281.873127667000517, 7521273.574077860452235 ], [ 543039.419224540004507, 7521209.209210650064051 ], [ 542420.362362808198668, 7521273.574077860452235 ], [ 544281.873127667000517, 7521273.574077860452235 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.14337", "objectid": "14338", "lithstrtno": "2257", "code": "A-HAd-kd", "unitname": "Wittenoom Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Thinly bedded dolomite and dolomitic shale with minor black chert shale banded iron formation and sandstone", "parentcode": "A-HAL-xkt-ci", "parentname": "Hamersley Group lower", "rocktype1": "sedimentary carbonate", "lithname1": "dolostone/dolomite", "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group lower", "formation": "Wittenoom Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2597", "maxuncerty": "5", "min_age_ma": "2504", "minuncerty": null, "max_age_da": "Isotopic", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 2.2261876858599998, "shape_area": 0.0140304625072 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 542420.362362808198668, 7521273.574077860452235 ], [ 543039.419224540004507, 7521209.209210650064051 ], [ 544281.873127667000517, 7521273.574077860452235 ], [ 548286.730018491391093, 7521273.574077860452235 ], [ 548620.001067279954441, 7520918.200960939750075 ], [ 549096.03939349995926, 7520442.179891030304134 ], [ 549677.920448170043528, 7520204.177992169745266 ], [ 550048.162290849955752, 7519860.179352750070393 ], [ 550471.340299690025859, 7519410.668283799663186 ], [ 550682.909945619991049, 7518934.651580410078168 ], [ 551000.289480659994297, 7518326.130060980096459 ], [ 551264.768027849961072, 7518008.639421570114791 ], [ 551502.840183029999025, 7517850.120681430213153 ], [ 552137.581058409996331, 7517321.118114409968257 ], [ 552190.439047339954413, 7517188.608529070392251 ], [ 552164.019822699949145, 7517056.618780449964106 ], [ 552111.14043827005662, 7516950.619430690072477 ], [ 552031.740366630023345, 7516659.61781414039433 ], [ 552005.320539579959586, 7516316.120233830064535 ], [ 552005.308401120011695, 7515972.120834840461612 ], [ 551952.427688780007884, 7515654.62000382039696 ], [ 551608.528330349945463, 7515258.118888939730823 ], [ 551106.047744889976457, 7514993.631505040451884 ], [ 550048.098786800052039, 7514861.130233380012214 ], [ 549439.771045750007033, 7514570.129413739778101 ], [ 549069.508477109950036, 7514358.640474690124393 ], [ 548725.718877919949591, 7514279.629916179925203 ], [ 548223.188856089953333, 7514147.138311300426722 ], [ 547799.999848159961402, 7513935.62943566031754 ], [ 547535.499783820006996, 7513671.140150490216911 ], [ 547085.848777150036767, 7513142.140599629841745 ], [ 546847.837919460027479, 7512824.640321739949286 ], [ 546821.429407270043157, 7512798.150753559544683 ], [ 546556.911903640022501, 7512613.13760878983885 ], [ 546345.340604510041885, 7512190.129451249726117 ], [ 546292.391366260009818, 7511846.137563469819725 ], [ 546266.225982900010422, 7511758.854636039584875 ], [ 546213.101779810036533, 7511581.639293549582362 ], [ 545684.079341580043547, 7510788.140244360081851 ], [ 545313.800301290000789, 7510444.152128339745104 ], [ 544864.169698999961838, 7510153.151318330317736 ], [ 544626.180307739996351, 7509862.650901610031724 ], [ 544599.691484899958596, 7509307.151234080083668 ], [ 544520.360227240016684, 7508619.149100380018353 ], [ 544255.819560579955578, 7507878.650570879690349 ], [ 543753.311143380007707, 7507006.14853013958782 ], [ 543197.859995450009592, 7506291.651044440455735 ], [ 542748.241729310015216, 7505604.149364749900997 ], [ 542034.149294179980643, 7504704.65143350046128 ], [ 541293.589129960048012, 7504202.150551839731634 ], [ 540447.261362720048055, 7503647.150411129929125 ], [ 539204.189948190003633, 7503038.640902689658105 ], [ 538490.040202290052548, 7502853.640004459768534 ], [ 537934.598100109957159, 7502959.149481950327754 ], [ 537458.561911060009152, 7503118.13959925994277 ], [ 536956.039038649993017, 7503170.63928843010217 ], [ 536770.921030709985644, 7502932.640545120462775 ], [ 536718.008638269966468, 7502615.629928699694574 ], [ 536718.007789180031978, 7502060.138529310002923 ], [ 536585.740454040002078, 7501557.629628020338714 ], [ 536215.441291820025072, 7501319.618713189847767 ], [ 535871.598377979942597, 7501240.119965040124953 ], [ 535289.749861310003325, 7501266.619812849909067 ], [ 534813.658578719943762, 7501213.618710099719465 ], [ 533649.940938669955358, 7501055.119656150229275 ], [ 532980.302307370002382, 7500984.598948219791055 ], [ 532914.749698439962231, 7501129.601234369911253 ], [ 532255.239534780033864, 7501090.091991020366549 ], [ 531190.530099679948762, 7501090.091032720170915 ], [ 530442.982213509967551, 7501135.069277220405638 ], [ 529763.349431850016117, 7501135.069384420290589 ], [ 529061.089658710057847, 7501044.56824946962297 ], [ 528449.42942168994341, 7500976.550271079875529 ], [ 528419.508611020050012, 7500966.560950050130486 ], [ 528302.37962347001303, 7501116.061090369708836 ], [ 528055.80054874997586, 7501423.059336570091546 ], [ 529283.510124549968168, 7501486.060903140343726 ], [ 529735.54628834000323, 7501486.244186529889703 ], [ 530418.709116179961711, 7501486.495882200077176 ], [ 531172.410778839956038, 7501486.738344410434365 ], [ 532463.803578209946863, 7501487.067533879540861 ], [ 532622.259100739960559, 7501487.100418940186501 ], [ 532540.009993170038797, 7501632.111001109704375 ], [ 532856.65218931005802, 7501611.11120583023876 ], [ 533444.018584429984912, 7501684.610329260118306 ], [ 534325.121031209942885, 7501880.119671490043402 ], [ 534985.921421359991655, 7502076.121785869821906 ], [ 535646.811027529998682, 7502516.630293989554048 ], [ 535891.528701080009341, 7502908.137486189603806 ], [ 536013.901978750014678, 7503250.640689079649746 ], [ 536258.679497829987668, 7503520.142049100250006 ], [ 536527.908533600042574, 7503593.64957720041275 ], [ 536992.93201675999444, 7503520.142260869964957 ], [ 537555.862850739969872, 7503544.648875479586422 ], [ 538020.880797310033813, 7503667.152258199639618 ], [ 538755.142619839985855, 7503960.650235869921744 ], [ 539244.629889119998552, 7504132.149919520132244 ], [ 540125.770195159944706, 7504572.649722670204937 ], [ 540762.078696239972487, 7504939.64010277017951 ], [ 541716.579055089969188, 7505698.161702239885926 ], [ 541936.889746180037037, 7506065.650917610153556 ], [ 542157.18836409994401, 7506530.64897022023797 ], [ 542426.430921099963598, 7507142.661000530235469 ], [ 542597.751156199956313, 7507729.650091419927776 ], [ 542622.220380789949559, 7508170.659347269684076 ], [ 542866.960801149951294, 7508635.647619180381298 ], [ 543136.210824489942752, 7508978.151689469814301 ], [ 543283.109859740012325, 7509198.147471319884062 ], [ 543356.489253900013864, 7509687.648783350363374 ], [ 543381.021468420047313, 7510324.151035180315375 ], [ 543478.910323719959706, 7510911.660685740411282 ], [ 543601.278376020025462, 7511278.650549460202456 ], [ 543772.59828351996839, 7511548.157806159928441 ], [ 544029.577797919977456, 7511765.412042209878564 ], [ 544090.778932159999385, 7511817.15087560005486 ], [ 544335.540762530057691, 7512062.148802960291505 ], [ 544482.410793130053207, 7512551.6588896503672 ], [ 544482.418259960017167, 7513016.647983860224485 ], [ 544678.24831814004574, 7513799.659713629633188 ], [ 544825.082816450041719, 7514215.658196600154042 ], [ 545314.569968260009773, 7514632.161047049798071 ], [ 545632.76747008995153, 7514803.15205886028707 ], [ 546146.721682289964519, 7514876.650525569915771 ], [ 546513.859153309953399, 7515023.638733309693635 ], [ 546758.599542230018415, 7515243.660391540266573 ], [ 546880.978811490000226, 7515611.148687190376222 ], [ 546954.42878852004651, 7515806.658421809785068 ], [ 547248.119517949991859, 7516051.66193072963506 ], [ 547615.228354310034774, 7516271.648910780437291 ], [ 547933.449674039962701, 7516369.641400409862399 ], [ 548447.359045919962227, 7516541.141613990068436 ], [ 548790.080467739957385, 7516712.149872760288417 ], [ 548887.949365769978613, 7517006.139925830066204 ], [ 548814.528343240031973, 7517299.638577819801867 ], [ 548643.208647969993763, 7517520.139687079936266 ], [ 548422.971490449970588, 7517764.649379810318351 ], [ 548276.089059549965896, 7518083.15027062036097 ], [ 548055.852417140034959, 7518401.159735480323434 ], [ 547541.840230589965358, 7518939.660958710126579 ], [ 547076.849915059981868, 7519282.180675569921732 ], [ 546464.969501200015657, 7519478.178228080272675 ], [ 545755.238412400009111, 7519649.69032904971391 ], [ 545094.439139469992369, 7519771.689673730172217 ], [ 544262.249843609984964, 7520065.68780876044184 ], [ 543577.010112980031408, 7520212.209388909861445 ], [ 542671.450893379980698, 7520383.709697290323675 ], [ 541937.188143379986286, 7520653.210939779877663 ], [ 541521.121391479973681, 7520848.708374029956758 ], [ 540982.640750179998577, 7521020.221449459902942 ], [ 540272.898704249993898, 7520922.218769470229745 ], [ 539807.878525439999066, 7520750.719968990422785 ], [ 539342.811559570021927, 7520555.229987599886954 ], [ 539000.201804729993455, 7520285.721641919575632 ], [ 538608.648913390003145, 7519894.229630409739912 ], [ 538265.961347240023315, 7519673.72992848046124 ], [ 537825.370399679988623, 7519576.228570929728448 ], [ 537384.898478670045733, 7519429.231762089766562 ], [ 536724.078674650052562, 7518988.738700640387833 ], [ 536112.210407849983312, 7518646.248493609949946 ], [ 535108.697880489984527, 7518450.237544589675963 ], [ 533909.450898190028965, 7518499.250098859891295 ], [ 533028.401630589971319, 7518401.250747869722545 ], [ 532392.009412940009497, 7518401.250288999639452 ], [ 531462.029136199969798, 7518205.26035728957504 ], [ 530752.209263560012914, 7518009.750843860208988 ], [ 530164.801248240051791, 7517789.222396439872682 ], [ 529773.12969517998863, 7517397.709674839861691 ], [ 529601.811084239976481, 7517030.700361669994891 ], [ 529675.219794600037858, 7516663.697559090331197 ], [ 529846.538256110041402, 7516247.207606200128794 ], [ 530091.311437780037522, 7515684.222140549682081 ], [ 530115.820970879984088, 7515146.220316509716213 ], [ 529748.660451899981126, 7514852.208768350072205 ], [ 529528.320054790005088, 7514632.188188039697707 ], [ 529552.831549320020713, 7514338.19016341958195 ], [ 529650.70078537997324, 7514044.698509619571269 ], [ 529552.809830010053702, 7513653.199009819887578 ], [ 529283.53027829003986, 7513310.179969239979982 ], [ 528965.390379579970613, 7513114.681486169807613 ], [ 528451.322689770022407, 7512992.157981620170176 ], [ 527766.012258989969268, 7512845.148149039596319 ], [ 526786.8993170800386, 7512576.111894340254366 ], [ 526174.970592719968408, 7512331.08860176987946 ], [ 525636.488515109987929, 7512135.577202550135553 ], [ 525112.657200939953327, 7511807.879730549640954 ], [ 525049.020320000010543, 7511768.067746119573712 ], [ 524461.650530240032822, 7511278.559725630097091 ], [ 523849.760689369984902, 7510813.54871303960681 ], [ 522846.268818399985321, 7510275.031419220380485 ], [ 521671.439029879984446, 7509957.018936470150948 ], [ 520790.33930395997595, 7509810.000191969797015 ], [ 519982.678381100005936, 7509614.489995859563351 ], [ 518912.777727360022254, 7509330.469264090061188 ], [ 518067.749226149986498, 7509452.469257179647684 ], [ 517746.860329139977694, 7509496.468574389815331 ], [ 517524.078368620015681, 7509517.960638030432165 ], [ 517412.839451649982948, 7509467.451953100040555 ], [ 516923.330806820013095, 7509295.960885399952531 ], [ 516262.539369589998387, 7509100.438068529590964 ], [ 515748.540348690003157, 7509100.438180999830365 ], [ 515687.31005864002509, 7509097.518641549162567 ], [ 515687.31005864002509, 7509757.969303893856704 ], [ 515762.921122459985781, 7509734.929779940284789 ], [ 516564.999997559993062, 7509955.440505569800735 ], [ 517947.010351110016927, 7510300.959039909765124 ], [ 518681.190154069976415, 7510473.470780050382018 ], [ 519501.770507230015937, 7510646.489690399728715 ], [ 520343.940526639984455, 7510754.501726740039885 ], [ 521250.897257780015934, 7510927.007610100321472 ], [ 521963.520088610006496, 7511251.030114050023258 ], [ 522654.532024319982156, 7511467.028237969614565 ], [ 523243.704705209995154, 7511810.814099580049515 ], [ 523243.802212379989214, 7511810.813952400349081 ], [ 523431.912117369996849, 7511920.551063950173557 ], [ 524079.779780430020764, 7512503.560726470313966 ], [ 524684.430742830038071, 7513216.04936845973134 ], [ 525245.890789909986779, 7513907.069736359640956 ], [ 525958.598907200037502, 7514835.5597521699965 ], [ 526476.911097340052947, 7515634.589470960199833 ], [ 526563.319796859985217, 7516282.581881569698453 ], [ 526433.760071319993585, 7516757.578540240414441 ], [ 526541.700464530033059, 7517513.580407430417836 ], [ 526779.300390499993227, 7518247.606851640157402 ], [ 527168.028100849944167, 7518874.129576059989631 ], [ 527168.042084699962288, 7519111.639367979951203 ], [ 526973.669562230003066, 7519392.128941999748349 ], [ 526736.171334589947946, 7519608.140634800307453 ], [ 526498.578610370052047, 7519845.650696289725602 ], [ 526390.661484980024397, 7520040.141337719745934 ], [ 526433.861925230012275, 7520191.14070682041347 ], [ 526779.38138648995664, 7520428.659740010276437 ], [ 527556.788195970002562, 7520709.689603740349412 ], [ 528170.259027419961058, 7521093.710383520461619 ], [ 528606.400429080007598, 7520985.199372570030391 ], [ 528809.300388630013913, 7520796.221634940244257 ], [ 529586.688838250003755, 7520623.21959681995213 ], [ 530515.288809439982288, 7520299.242387680336833 ], [ 531184.701630669995211, 7520213.250957230105996 ], [ 531810.931236980017275, 7520234.75136689003557 ], [ 531917.638871380011551, 7520292.741055970080197 ], [ 532155.879878710024059, 7520065.750446840189397 ], [ 533094.969673049985431, 7519992.238394300453365 ], [ 533518.159608450019732, 7520071.751074260100722 ], [ 533967.78170361998491, 7520124.748354859650135 ], [ 534179.310949980048463, 7520336.249023750424385 ], [ 534232.281925669987686, 7520547.758248940110207 ], [ 534443.83951988001354, 7520918.249867100268602 ], [ 534681.910660160006955, 7521156.260567620396614 ], [ 534942.625705180340447, 7521273.574077860452235 ], [ 542420.362362808198668, 7521273.574077860452235 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.14352", "objectid": "14353", "lithstrtno": "4143", "code": "A-FOu-bbo", "unitname": "Bunjinah Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Pillowed and massive basaltic flows; basaltic breccia and basaltic volcanic sandstone; minor chert; amygdaloidal basalt flows occur in upper parts of formation; metamorphosed", "parentcode": "A-FOS4-xbs-bbo", "parentname": "Fortescue Group sequence 4", "rocktype1": "igneous mafic volcanic", "lithname1": "basalt", "qualifier1": "pillowed", "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Fortescue Group", "subgroup": "Fortescue Group sequence 4", "formation": "Bunjinah Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "Large igneous provinces and dyke swarms; West Australian Craton", "ssuite_tec": "Fortescue Large Igneous Province", "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Fortescue Basin", "subbasin": "South Pilbara Sub-basin", "subbasin_e": null, "orogen": null, "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Edmundian Orogeny (1026 - 954 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); Pilbara Craton breakup (2775 - 2445 Ma)", "agefrom": "Neoarchean", "ageto": "Neoarchean", "max_age_ma": "2718", "maxuncerty": null, "min_age_ma": "2715", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 1.17951522395, "shape_area": 0.030201118051600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 519198.644056729972363, 7521273.574077860452235 ], [ 519259.250695589988027, 7521128.530878730118275 ], [ 519320.012013149971608, 7520759.712071959860623 ], [ 519545.337666210078169, 7519817.816332059912384 ], [ 519514.363417299988214, 7519528.12835447024554 ], [ 519366.991627420007717, 7519166.154731409624219 ], [ 519207.277663080021739, 7518718.593676960095763 ], [ 519182.539155819977168, 7518514.49831182975322 ], [ 519047.605427510046866, 7518297.369738539680839 ], [ 519041.232609779981431, 7518093.251300070434809 ], [ 518985.690145989996381, 7517724.575489370152354 ], [ 518936.513313480012584, 7517553.433111510239542 ], [ 518893.289090209989808, 7517244.004207690246403 ], [ 518954.139981639978942, 7516954.201637290418148 ], [ 519027.343064780056011, 7516756.569857959635556 ], [ 519100.495351070072502, 7516519.429266070015728 ], [ 519112.352786110073794, 7516209.932219609618187 ], [ 519041.141933470033109, 7515922.438162029720843 ], [ 519418.43464920000406, 7515485.763669109903276 ], [ 519392.477506569994148, 7515090.1774812201038 ], [ 519282.04083986999467, 7514866.434735249727964 ], [ 519238.956251360010356, 7514668.946241379715502 ], [ 519177.628758140024729, 7514563.666787220165133 ], [ 519018.356625669985078, 7514432.16913719009608 ], [ 519103.875308650021907, 7514306.953248229809105 ], [ 519198.755447090021335, 7514197.602240430191159 ], [ 519174.829437980020884, 7514092.451116800308228 ], [ 519123.1404266700265, 7513920.458620489574969 ], [ 519065.141182710009161, 7513761.960031550377607 ], [ 518968.77945902000647, 7513552.458231610246003 ], [ 518910.620095279999077, 7513355.46910130046308 ], [ 518871.588630190002732, 7513177.461551469750702 ], [ 518852.321420539985411, 7513132.95880111027509 ], [ 518681.600405959994532, 7513163.460244859568775 ], [ 517568.778656709997449, 7513362.440888900309801 ], [ 517536.821597650006879, 7513324.449564079754055 ], [ 517453.790812560007907, 7513254.941454670391977 ], [ 517211.341055419994518, 7513084.441398180089891 ], [ 516950.179108329990413, 7512996.938222900032997 ], [ 516581.109581539989449, 7512947.942037159577012 ], [ 516218.100934160000179, 7512841.928693260066211 ], [ 515874.111506199988071, 7512722.429059149697423 ], [ 515687.31005864002509, 7512669.795848976820707 ], [ 515687.31005864002509, 7521273.574077860452235 ], [ 519198.644056729972363, 7521273.574077860452235 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.6148", "objectid": "6148", "lithstrtno": "4111", "code": "P_-HAj-xci-od", "unitname": "Weeli Wolli Formation", "gswastatus": "Formal", "rank": "Formation", "descriptn": "Banded iron-formation (commonly jaspilitic) mudstone siltstone and numerous dolerite sills; metamorphosed", "parentcode": "P_-HAU-xci-f", "parentname": "Hamersley Group upper", "rocktype1": "sedimentary other chemical or biochemical", "lithname1": "iron formation", "qualifier1": null, "qualifier2": null, "mixedrock": "Mixed", "rocktype2": "igneous mafic intrusive", "lithname2": "dolerite", "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": "Mount Bruce Supergroup", "group_": "Hamersley Group", "subgroup": "Hamersley Group upper", "formation": "Weeli Wolli Formation", "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": null, "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": "Hamersley Basin", "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": null, "events": "Paterson Orogeny (635 - 540 Ma); Miles Orogeny (650 - 600 Ma); Edmundian Orogeny (1026 - 954 Ma); Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma); South Pilbara Subsidence (2690 - 2445 Ma)", "agefrom": "Paleoproterozoic", "ageto": "Paleoproterozoic", "max_age_ma": "2451", "maxuncerty": null, "min_age_ma": "2450", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 1.1135762550099999, "shape_area": 0.0039900960217600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 538523.479636730044149, 7511559.700316119939089 ], [ 539052.388189609977417, 7511268.680436610244215 ], [ 539422.657859849976376, 7510951.691127830184996 ], [ 539660.669795469962992, 7510607.68016923032701 ], [ 539898.727658509975299, 7510184.68239211011678 ], [ 540057.371062460006215, 7509681.668901289813221 ], [ 540295.36945720994845, 7509391.167218109592795 ], [ 540480.470579440006986, 7509232.170064670033753 ], [ 540612.738463919959031, 7509073.658652099780738 ], [ 540665.58149836002849, 7508571.170081409625709 ], [ 540348.211415769997984, 7507671.659639820456505 ], [ 539925.049874530057423, 7507090.157736930064857 ], [ 539607.670671500032768, 7506746.159959820099175 ], [ 539052.200798930018209, 7506296.660687520168722 ], [ 538205.909480990027077, 7505952.669931390322745 ], [ 537068.65092739998363, 7505741.16039321012795 ], [ 536169.390165189979598, 7505661.661419860087335 ], [ 535217.291988059994765, 7505503.150627369992435 ], [ 534635.430171989952214, 7505317.651213020086288 ], [ 534027.099943720037118, 7504974.140041249804199 ], [ 533603.881771669955924, 7504709.627261539921165 ], [ 533233.651434050058015, 7504312.631727330386639 ], [ 532466.618771139997989, 7503969.120871730148792 ], [ 531858.340914499945939, 7503651.619851970113814 ], [ 531329.338967559975572, 7503360.611643849872053 ], [ 531092.210039410041645, 7503242.110120669938624 ], [ 530852.970184960053302, 7503491.101557740010321 ], [ 530292.318035469972529, 7503316.099201279692352 ], [ 529603.48162614996545, 7503154.079038679599762 ], [ 529076.73118856002111, 7502911.078795489855111 ], [ 528266.309425930026919, 7502728.569669179618359 ], [ 527759.809933159966022, 7502688.05957665015012 ], [ 527233.139290379942395, 7502607.06084899045527 ], [ 527002.751236020005308, 7502588.051300699822605 ], [ 527190.810228800051846, 7502380.041910080239177 ], [ 526700.850970900035463, 7502355.539378190413117 ], [ 525246.218477030051872, 7502408.520923149771988 ], [ 524294.111731779994443, 7502249.520968340337276 ], [ 523447.779692990006879, 7502091.009804819710553 ], [ 522521.981803109985776, 7501847.499487180262804 ], [ 522422.251586830010638, 7501924.491564869880676 ], [ 521104.139196379983332, 7501751.480945750139654 ], [ 520737.772135290026199, 7501723.97868109960109 ], [ 520343.178845660004299, 7501712.978961739689112 ], [ 519636.90140195999993, 7501633.958211430348456 ], [ 519121.281781309982762, 7501534.949975430034101 ], [ 518389.210392989974935, 7501379.9494513804093 ], [ 517873.439548989990726, 7501235.941138340160251 ], [ 517978.502588119998109, 7501117.440985379740596 ], [ 517828.959920339984819, 7501072.440090700052679 ], [ 517608.669631719996687, 7501023.44241841044277 ], [ 517168.148241000017151, 7500949.939010259695351 ], [ 516703.129406480002217, 7500900.92979499977082 ], [ 516189.159643939987291, 7500778.418782180175185 ], [ 515687.31005864002509, 7500678.361180524341762 ], [ 515687.31005864002509, 7501381.228581719100475 ], [ 516208.029622350004502, 7501404.430479659698904 ], [ 516513.439839239930734, 7501427.929280590265989 ], [ 516806.139175439951941, 7501470.929028630256653 ], [ 517041.529127980000339, 7501482.438852850347757 ], [ 517493.280382250028197, 7501530.939766810275614 ], [ 517626.978287780017126, 7501568.438148479908705 ], [ 517439.452265209984034, 7501894.939140919595957 ], [ 518147.140985219972208, 7502100.460410409606993 ], [ 518734.541179510008078, 7502246.968182840384543 ], [ 519573.797612159978598, 7502354.695541289635003 ], [ 520967.450855029979721, 7502533.48075976036489 ], [ 521973.58024351997301, 7502730.490436179563403 ], [ 522979.729673549998552, 7502796.00996265001595 ], [ 524313.980666519957595, 7502993.020090309903026 ], [ 525298.209493739996105, 7503146.041082710027695 ], [ 526129.429774809977971, 7503146.04971828032285 ], [ 526610.599389689974487, 7503255.540216240100563 ], [ 526960.550516100018285, 7503255.548426319845021 ], [ 527507.377630549948663, 7503343.059446619823575 ], [ 528797.900004970026202, 7503627.080213760025799 ], [ 529213.502345059998333, 7503780.581910129636526 ], [ 529716.559640730032697, 7503911.601014990359545 ], [ 530330.938629699987359, 7504034.600131249986589 ], [ 530456.141345420037396, 7503904.60914792958647 ], [ 530728.50931001000572, 7504046.609459710307419 ], [ 531906.171165960025974, 7504513.618821060284972 ], [ 532495.011441659997217, 7504737.120717509649694 ], [ 533022.90101448004134, 7505082.130395379848778 ], [ 533489.917933249962516, 7505488.139462489634752 ], [ 534038.1795864100568, 7505813.147930650040507 ], [ 534931.557807549950667, 7506158.158888090401888 ], [ 535743.688247720012441, 7506361.159436600282788 ], [ 536616.771521440008655, 7506544.169201100245118 ], [ 537002.52044387999922, 7506686.161332639865577 ], [ 537428.930559089989401, 7507011.171658460050821 ], [ 537631.980831310036592, 7507214.168417110107839 ], [ 538180.211560850031674, 7507599.671520809642971 ], [ 538586.329662399948575, 7507965.169740119948983 ], [ 539012.7302670100471, 7508493.181885650381446 ], [ 539134.550768380053341, 7509041.669524259865284 ], [ 539114.237828589975834, 7509528.669906909577549 ], [ 538972.159902979969047, 7509914.689756290055811 ], [ 538626.999142840038985, 7510523.679197969846427 ], [ 538322.440249609993771, 7510706.688930760137737 ], [ 537266.720861639943905, 7511153.20205038972199 ], [ 536515.48107646999415, 7511295.209174829535186 ], [ 535845.449424559948966, 7511457.710090230219066 ], [ 534870.880958189954981, 7511559.220930890180171 ], [ 534079.009040210046805, 7511478.210979480296373 ], [ 533510.480061769951135, 7511234.208642659708858 ], [ 532292.230620560003445, 7510767.219354189932346 ], [ 531297.329562349943444, 7510503.211238949559629 ], [ 530282.090520340017974, 7510219.191589759662747 ], [ 529408.909576560021378, 7509934.658954329788685 ], [ 528759.181210299953818, 7509752.148616939783096 ], [ 527891.170337439980358, 7509549.630575990304351 ], [ 527150.572323399945162, 7509258.600825910456479 ], [ 526304.178405749960802, 7509047.079424640163779 ], [ 525537.161682610050775, 7508888.560437959618866 ], [ 524796.650109110050835, 7508809.060238439589739 ], [ 524135.411504069983494, 7508571.05088615976274 ], [ 523447.751102910027839, 7508491.531642080284655 ], [ 522495.619599480007309, 7508412.019790690392256 ], [ 522046.009716300060973, 7508306.518230189569294 ], [ 521252.569250860018656, 7508095.008492359891534 ], [ 520459.120535549998749, 7507962.499755850061774 ], [ 519692.141436650010291, 7507777.478591890074313 ], [ 518845.808005279977806, 7507697.980592619627714 ], [ 517884.809234520071186, 7507626.45950067974627 ], [ 517617.678937539982144, 7507621.458239920437336 ], [ 516974.989065799978562, 7507529.450941889546812 ], [ 516567.649635889974888, 7507461.461209960281849 ], [ 516077.559980659978464, 7507374.940313899889588 ], [ 515727.401673869986553, 7507294.44228694960475 ], [ 515687.31005864002509, 7507284.364434811286628 ], [ 515687.31005864002509, 7507785.320344283245504 ], [ 516143.467740970023442, 7507858.440086290240288 ], [ 516913.610774539993145, 7507994.460242169909179 ], [ 517735.199112029979005, 7508250.968857959844172 ], [ 518142.959838100010529, 7508401.480365029536188 ], [ 518760.529426419991069, 7508556.979971840046346 ], [ 519206.109573089983314, 7508643.988675179891288 ], [ 519619.891624330019113, 7508736.979432850144804 ], [ 520052.928003809996881, 7508862.000883810222149 ], [ 521090.551235229999293, 7509073.010523959994316 ], [ 522005.951244029973168, 7508998.029494729824364 ], [ 522324.340485139982775, 7509085.020956199616194 ], [ 522451.571022430027369, 7509097.030138160102069 ], [ 522591.621478160028346, 7509122.02742169983685 ], [ 524151.169281380018219, 7509438.051605530083179 ], [ 524456.689746230025776, 7509487.559559389948845 ], [ 525140.43911667005159, 7509496.570468929596245 ], [ 526119.051335679949261, 7509602.579176349565387 ], [ 527124.119997350033373, 7509920.100146099925041 ], [ 527864.742193619953468, 7510184.620799530297518 ], [ 528658.280241169966757, 7510422.639340680092573 ], [ 529451.790100479964167, 7510766.1697186101228 ], [ 530324.61938511999324, 7511057.199628870002925 ], [ 531118.128920490038581, 7511295.218129090033472 ], [ 532096.70017128996551, 7511533.220152160152793 ], [ 532641.346885110018775, 7511793.761994309723377 ], [ 532705.021947950008325, 7511824.22030740045011 ], [ 533233.978675110032782, 7511983.23097356967628 ], [ 533551.350649280007929, 7512221.220540439710021 ], [ 533789.409573909942992, 7512353.23117852024734 ], [ 534344.770069499965757, 7512432.717863479629159 ], [ 535296.879862120025791, 7512379.720972119830549 ], [ 536513.520092790015042, 7512168.211254799738526 ], [ 537492.028700380004011, 7511930.201284980401397 ], [ 537941.651521719992161, 7511797.699529309757054 ], [ 537981.213230650057085, 7511781.517565599642694 ], [ 538523.479636730044149, 7511559.700316119939089 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.16190", "objectid": "16192", "lithstrtno": "4464", "code": "A-s-PRK", "unitname": "Rocklea Inlier greenstones", "gswastatus": "Informal", "rank": "Group", "descriptn": "Sedimentary rock undivided; includes oligomicitic and polymictic conglomerate pebbly sandstone mudstone siltstone and chert; metamorphosed", "parentcode": "TOL", "parentname": "_Top Of Litho-Stratigraphic Order", "rocktype1": "sedimentary siliciclastic", "lithname1": null, "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": null, "group_": "Rocklea Inlier greenstones", "subgroup": null, "formation": null, "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": "Pilbara Craton", "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": null, "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": "Pilbara Craton Rocklea Inlier", "events": "Mangaroon Orogeny (1682 - 1619 Ma); Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma)", "agefrom": "Paleoarchean", "ageto": "Paleoarchean", "max_age_ma": "3530", "maxuncerty": null, "min_age_ma": "3225", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.43955438034200001, "shape_area": 0.0029221001595600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 529450.889285249984823, 7483263.000973359681666 ], [ 529712.271662750048563, 7483395.011301290243864 ], [ 530451.509875620016828, 7483716.010619269683957 ], [ 531609.821962340036407, 7483913.028245289810002 ], [ 532143.878973240032792, 7483885.039836630225182 ], [ 532620.120768659980968, 7483729.540241659618914 ], [ 533153.321361340000294, 7483529.539472719654441 ], [ 533705.727482449961826, 7483348.048920690082014 ], [ 534271.189145580050536, 7483237.040472649969161 ], [ 535307.411674660048448, 7483167.559465959668159 ], [ 535745.990270199952647, 7483114.058705699630082 ], [ 536609.530612439964898, 7482836.058942019939423 ], [ 537225.619498300016858, 7482679.579045910388231 ], [ 537816.838914479943924, 7482619.089825170114636 ], [ 539133.091830539982766, 7482586.607948769815266 ], [ 539857.761162020033225, 7482512.638187630102038 ], [ 540327.690057180006988, 7482376.638795359991491 ], [ 540816.150883599999361, 7482125.660042230039835 ], [ 541349.728197410004213, 7481989.161317829973996 ], [ 541902.139656650018878, 7481820.681552739813924 ], [ 542435.340712219942361, 7481607.680911930277944 ], [ 542961.651990619953722, 7481286.66906442027539 ], [ 543278.448427070048638, 7481036.680964759550989 ], [ 543714.721562610007823, 7480620.180760269984603 ], [ 544064.201096069999039, 7480214.180569579824805 ], [ 544368.639762139995582, 7479729.680836910381913 ], [ 545000.019705810002051, 7478579.670257880352437 ], [ 544323.518753150012344, 7479210.680796929635108 ], [ 543850.099438710021786, 7479563.177159620448947 ], [ 543539.54005779, 7479775.17871059011668 ], [ 543273.430744710029103, 7479986.681214369833469 ], [ 542810.168601599987596, 7480186.172313690185547 ], [ 542003.921304309973493, 7480483.660549759864807 ], [ 541528.288530569989234, 7480753.667894080281258 ], [ 540899.980495239957236, 7481030.660386419855058 ], [ 540092.788811390055344, 7481117.631719100289047 ], [ 539450.069282670039684, 7481044.61925155017525 ], [ 538902.020067770034075, 7480793.10108061041683 ], [ 538468.262211170047522, 7480515.588263570331037 ], [ 537775.93181324005127, 7480703.57045697979629 ], [ 536441.719193030032329, 7480978.031349030323327 ], [ 534592.610763909993693, 7481281.007791340351105 ], [ 533085.269960989942774, 7481251.001002860255539 ], [ 531488.108066829969175, 7481043.489093760028481 ], [ 529827.910515989991836, 7480963.489905229769647 ], [ 529856.887474340037443, 7481720.479547889903188 ], [ 526736.961849370039999, 7480922.959662619978189 ], [ 525590.138856749981642, 7480549.457734939642251 ], [ 525046.501200460013933, 7480304.959696309641004 ], [ 524662.731309870025143, 7480154.449138020165265 ], [ 524826.821140169980936, 7480442.957518120296299 ], [ 525063.879986720043235, 7480804.459229090251029 ], [ 525383.569695619982667, 7481165.460271639749408 ], [ 525837.131990249967203, 7481589.469329429790378 ], [ 526219.932036489946768, 7481860.981002789922059 ], [ 526647.460255819954909, 7482145.481460879556835 ], [ 527449.948290279950015, 7482483.479327520355582 ], [ 528058.949573489953764, 7482635.489615900442004 ], [ 528604.2699740199605, 7482816.493775309994817 ], [ 528762.380300409975462, 7482897.498404650017619 ], [ 528966.250386580009945, 7482979.001210840418935 ], [ 529208.522589650005102, 7483111.489456219598651 ], [ 529450.889285249984823, 7483263.000973359681666 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.16613", "objectid": "16615", "lithstrtno": "4468", "code": "A-b-PRK", "unitname": "Rocklea Inlier greenstones", "gswastatus": "Informal", "rank": "Group", "descriptn": "Basaltic and andesitic flows and associated volcaniclastic rocks; metamorphosed", "parentcode": "TOL", "parentname": "_Top Of Litho-Stratigraphic Order", "rocktype1": "igneous mafic volcanic", "lithname1": null, "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": null, "group_": "Rocklea Inlier greenstones", "subgroup": null, "formation": null, "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": "Pilbara Craton", "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": null, "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": "Pilbara Craton Rocklea Inlier", "events": "Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma)", "agefrom": "Paleoarchean", "ageto": "Paleoarchean", "max_age_ma": "3530", "maxuncerty": null, "min_age_ma": "3225", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.104657956473, "shape_area": 0.000399970249741 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 541976.461132270051166, 7477384.1186797702685 ], [ 541697.818109209998511, 7477640.132629239931703 ], [ 541616.161132990033366, 7477838.131628380157053 ], [ 541636.100918999989517, 7478022.14067148976028 ], [ 541687.399000389967114, 7478111.151426020078361 ], [ 541865.590316500049084, 7478135.640603840351105 ], [ 542081.720287809963338, 7478115.647714669816196 ], [ 542393.06988393003121, 7478075.650498890317976 ], [ 542729.74923455005046, 7477991.149885689839721 ], [ 542990.09090525994543, 7477900.648642280139029 ], [ 543307.510035800049081, 7477803.151486550457776 ], [ 543573.93015111994464, 7477661.651087479665875 ], [ 543776.55077919003088, 7477469.638466229662299 ], [ 543921.910125790047459, 7477284.139257409609854 ], [ 544003.990012840018608, 7477163.14045783970505 ], [ 543984.660283060045913, 7477112.140265529975295 ], [ 543971.598602070007473, 7477042.141102709807456 ], [ 543982.239278460037895, 7476596.631488529965281 ], [ 544019.370185459963977, 7476380.111608060076833 ], [ 544150.728781630052254, 7475933.609804259613156 ], [ 544257.600703369942494, 7475666.100282370112836 ], [ 544440.75061997002922, 7475397.621103939600289 ], [ 544699.739898180007003, 7475046.109928339719772 ], [ 544653.91856421995908, 7474766.098375639878213 ], [ 544653.680978709948249, 7474709.098554720170796 ], [ 544640.56158791994676, 7474632.590177119709551 ], [ 544614.657629659981467, 7474531.080400019884109 ], [ 544569.630512499948964, 7474416.591412509791553 ], [ 544486.539540939964354, 7474334.580349479801953 ], [ 544358.990066859987564, 7474258.580309939570725 ], [ 544212.599255779990926, 7474234.069832229986787 ], [ 544047.288378549972549, 7474254.069900260306895 ], [ 543913.939341529970989, 7474280.059067719615996 ], [ 543742.570966850034893, 7474351.060028309933841 ], [ 543539.781323360046372, 7474505.061267970129848 ], [ 543476.690170909976587, 7474607.058913320302963 ], [ 543401.182136880001053, 7474773.069725950248539 ], [ 543345.000719630043022, 7474996.081464770250022 ], [ 543321.48089941998478, 7475397.092186010442674 ], [ 543322.669578160042875, 7475645.588219179771841 ], [ 543336.01063446002081, 7475766.087322100065649 ], [ 543336.910838649957441, 7475963.601623520255089 ], [ 543318.81773221003823, 7476173.599816120229661 ], [ 543275.311478639952838, 7476384.108866070397198 ], [ 543186.939394179964438, 7476524.609273049980402 ], [ 542978.120983900036663, 7476742.119599130004644 ], [ 542769.040812000050209, 7476908.609167319722474 ], [ 541976.461132270051166, 7477384.1186797702685 ] ] ] ] } }, + { "type": "Feature", "properties": { "gml_id": "geol_500k.17012", "objectid": "17014", "lithstrtno": "4468", "code": "A-b-PRK", "unitname": "Rocklea Inlier greenstones", "gswastatus": "Informal", "rank": "Group", "descriptn": "Basaltic and andesitic flows and associated volcaniclastic rocks; metamorphosed", "parentcode": "TOL", "parentname": "_Top Of Litho-Stratigraphic Order", "rocktype1": "igneous mafic volcanic", "lithname1": null, "qualifier1": null, "qualifier2": null, "mixedrock": null, "rocktype2": null, "lithname2": null, "mixedqual1": null, "mixedqual2": null, "wastraunit": null, "supersuite": "0", "suite": null, "supergroup": null, "group_": "Rocklea Inlier greenstones", "subgroup": null, "formation": null, "member": null, "bed": null, "state": "Western Australia", "watectunit": "West Australian Craton", "ssuite_tec": null, "suite_tec": null, "craton": "Pilbara Craton", "superterra": null, "craton_ter": null, "domain_": null, "greenstone": null, "superbasin": null, "basin": null, "subbasin": null, "subbasin_e": null, "orogen": "Capricorn Orogen", "province": null, "prov_tzone": null, "tect_subdi": null, "orog_for": null, "orog_forsu": null, "in_outlier": "Pilbara Craton Rocklea Inlier", "events": "Capricorn Orogeny (1817 - 1772 Ma); Ophthalmian Orogeny (2215 - 2145 Ma)", "agefrom": "Paleoarchean", "ageto": "Paleoarchean", "max_age_ma": "3530", "maxuncerty": null, "min_age_ma": "3225", "minuncerty": null, "max_age_da": "Inferred", "min_age_da": "Inferred", "extract_da": "2016-06-30", "shape_leng": 0.085693325364200004, "shape_area": 0.00030709330269699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 534953.58931184001267, 7476969.910778369754553 ], [ 535099.608665390056558, 7476911.921056929975748 ], [ 535194.419056689948775, 7476790.412126430310309 ], [ 535212.887750589987263, 7476663.410822159610689 ], [ 535205.728069989942014, 7476491.398832309991121 ], [ 535211.111269089975394, 7476293.898190249688923 ], [ 535280.599936189944856, 7476198.388064320199192 ], [ 535369.670986799988896, 7476197.888359400443733 ], [ 535490.719155590049922, 7476241.400933040305972 ], [ 535611.560275529976934, 7476240.900449469685555 ], [ 535763.840431499993429, 7476182.881343989633024 ], [ 535903.080141130019911, 7476041.880046259611845 ], [ 535921.589666099986061, 7475920.879242169670761 ], [ 535869.529938000021502, 7475666.870821200311184 ], [ 535805.28640327998437, 7475539.868359600193799 ], [ 535607.230046520009637, 7475343.3599007204175 ], [ 535358.739262609975412, 7475236.848466210067272 ], [ 535122.788080579950474, 7475116.851750509813428 ], [ 534924.689859559992328, 7474895.340122370049357 ], [ 534559.289050610037521, 7474298.81947829015553 ], [ 534405.599816540023312, 7474076.811073710210621 ], [ 534309.929303199984133, 7474007.319938800297678 ], [ 534239.739184070029296, 7473969.820194629952312 ], [ 534169.689554270007648, 7473944.81766203045845 ], [ 534042.55063718999736, 7473964.319312159903347 ], [ 533909.500624060048722, 7474060.820207010023296 ], [ 533839.941206270013936, 7474137.30896526016295 ], [ 533606.567680730018765, 7474539.840133409947157 ], [ 533569.060644509969279, 7474679.82876287959516 ], [ 533589.118865060037933, 7474883.337138920091093 ], [ 533698.498536749975756, 7475150.349448580294847 ], [ 533851.938362259999849, 7475327.350165169686079 ], [ 534069.050725679961033, 7475510.870088989846408 ], [ 534336.971588350017555, 7475687.870841540396214 ], [ 534515.532393840025179, 7475794.878760449588299 ], [ 534650.109833410009742, 7476004.382077129557729 ], [ 534637.920230860006995, 7476118.879857339896262 ], [ 534587.301779170054942, 7476163.879301480017602 ], [ 534231.747922249953263, 7476286.391005779616535 ], [ 534124.298060990055092, 7476427.40031720045954 ], [ 534137.609933770028874, 7476547.907458799891174 ], [ 534272.04126189998351, 7476738.401521010324359 ], [ 534457.180887729977258, 7476889.919906149618328 ], [ 534711.979972340050153, 7476971.410600939765573 ], [ 534953.58931184001267, 7476969.910778369754553 ] ] ] ] } } + ] + } + \ No newline at end of file diff --git a/map2loop/_datasets/geodata_files/hamersley/structures.geojson b/map2loop/_datasets/geodata_files/hamersley/structures.geojson new file mode 100644 index 00000000..b72bf378 --- /dev/null +++ b/map2loop/_datasets/geodata_files/hamersley/structures.geojson @@ -0,0 +1,125 @@ +{ +"type": "FeatureCollection", +"name": "structures", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::28350" } }, +"features": [ +{ "type": "Feature", "properties": { "dip": 40, "feature": "Bed", "structypei": "BEIN", "azimuth2": 385.0, "index_righ": 44, "gml_id": "geol_500k.7875", "objectid": "7876", "x": 544642.2938, "y": 7487591.038, "strike": 295 }, "geometry": { "type": "Point", "coordinates": [ 544642.293820059974678, 7487591.03977592010051 ] } }, +{ "type": "Feature", "properties": { "dip": 60, "feature": "Bed", "structypei": "BEIN", "azimuth2": 365.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 542483.2258, "y": 7481908.326, "strike": 275 }, "geometry": { "type": "Point", "coordinates": [ 542483.225818059989251, 7481908.327186710201204 ] } }, +{ "type": "Feature", "properties": { "dip": 35, "feature": "Bed", "structypei": "BEIN", "azimuth2": 435.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 545142.1496, "y": 7476403.279, "strike": 345 }, "geometry": { "type": "Point", "coordinates": [ 545142.149675859953277, 7476403.279564829543233 ] } }, +{ "type": "Feature", "properties": { "dip": 45, "feature": "Bed", "structypei": "BEIN", "azimuth2": 180.0, "index_righ": 59, "gml_id": "geol_500k.16613", "objectid": "16615", "x": 544589.04650000017, "y": 7474660.258, "strike": 90 }, "geometry": { "type": "Point", "coordinates": [ 544589.046589800040238, 7474660.258522219955921 ] } }, +{ "type": "Feature", "properties": { "dip": 65, "feature": "Bed", "structypei": "BEIN", "azimuth2": 385.0, "index_righ": 58, "gml_id": "geol_500k.16190", "objectid": "16192", "x": 542937.7522, "y": 7480363.89, "strike": 295 }, "geometry": { "type": "Point", "coordinates": [ 542937.752261140034534, 7480363.891120349988341 ] } }, +{ "type": "Feature", "properties": { "dip": 60, "feature": "Bed", "structypei": "BEIN", "azimuth2": 370.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 530515.1527, "y": 7485813.617, "strike": 280 }, "geometry": { "type": "Point", "coordinates": [ 530515.152796459966339, 7485813.618083230219781 ] } }, +{ "type": "Feature", "properties": { "dip": 40, "feature": "Bed", "structypei": "BEIN", "azimuth2": 360.0, "index_righ": 11, "gml_id": "geol_500k.14339", "objectid": "14340", "x": 535257.6115, "y": 7499029.614, "strike": 270 }, "geometry": { "type": "Point", "coordinates": [ 535257.61161618004553, 7499029.614669750444591 ] } }, +{ "type": "Feature", "properties": { "dip": 33, "feature": "Bed", "structypei": "BEIN", "azimuth2": 380.0, "index_righ": 18, "gml_id": "geol_500k.7579", "objectid": "7580", "x": 529653.2847, "y": 7489335.508, "strike": 290 }, "geometry": { "type": "Point", "coordinates": [ 529653.284794109989889, 7489335.509747129864991 ] } }, +{ "type": "Feature", "properties": { "dip": 58, "feature": "Bed", "structypei": "BEIN", "azimuth2": 368.0, "index_righ": 58, "gml_id": "geol_500k.16190", "objectid": "16192", "x": 534215.359, "y": 7482401.794, "strike": 278 }, "geometry": { "type": "Point", "coordinates": [ 534215.359097130014561, 7482401.795668199658394 ] } }, +{ "type": "Feature", "properties": { "dip": 62, "feature": "Bed", "structypei": "BEIN", "azimuth2": 378.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 534647.383, "y": 7483231.064, "strike": 288 }, "geometry": { "type": "Point", "coordinates": [ 534647.38303052005358, 7483231.064701600000262 ] } }, +{ "type": "Feature", "properties": { "dip": 60, "feature": "Bed", "structypei": "BEIN", "azimuth2": 388.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 542798.4486, "y": 7481931.798, "strike": 298 }, "geometry": { "type": "Point", "coordinates": [ 542798.44862517004367, 7481931.799839390441775 ] } }, +{ "type": "Feature", "properties": { "dip": 18, "feature": "Bed", "structypei": "BEIN", "azimuth2": 245.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 521454.1924, "y": 7476047.703, "strike": 155 }, "geometry": { "type": "Point", "coordinates": [ 521454.192474320007022, 7476047.70487102959305 ] } }, +{ "type": "Feature", "properties": { "dip": 55, "feature": "Bed", "structypei": "BEIN", "azimuth2": 365.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 530225.4499, "y": 7485223.064, "strike": 275 }, "geometry": { "type": "Point", "coordinates": [ 530225.449946569977328, 7485223.064154690131545 ] } }, +{ "type": "Feature", "properties": { "dip": 30, "feature": "Bed", "structypei": "BEIN", "azimuth2": 335.0, "index_righ": 58, "gml_id": "geol_500k.16190", "objectid": "16192", "x": 529573.7825, "y": 7483273.831, "strike": 245 }, "geometry": { "type": "Point", "coordinates": [ 529573.782564210006967, 7483273.83183818962425 ] } }, +{ "type": "Feature", "properties": { "dip": 70, "feature": "Bed", "structypei": "BEIN", "azimuth2": 400.0, "index_righ": 19, "gml_id": "geol_500k.9861", "objectid": "9862", "x": 531138.1801, "y": 7486699.055, "strike": 310 }, "geometry": { "type": "Point", "coordinates": [ 531138.18012836005073, 7486699.05610470008105 ] } }, +{ "type": "Feature", "properties": { "dip": 50, "feature": "Bed", "structypei": "BEIN", "azimuth2": 190.0, "index_righ": 22, "gml_id": "geol_500k.14368", "objectid": "14369", "x": 548279.3206, "y": 7493304.279, "strike": 100 }, "geometry": { "type": "Point", "coordinates": [ 548279.320612050010823, 7493304.279292579740286 ] } }, +{ "type": "Feature", "properties": { "dip": 55, "feature": "Bed", "structypei": "BEIN", "azimuth2": 190.0, "index_righ": 22, "gml_id": "geol_500k.14368", "objectid": "14369", "x": 548279.3206, "y": 7493304.279, "strike": 100 }, "geometry": { "type": "Point", "coordinates": [ 548279.320612050010823, 7493304.279292579740286 ] } }, +{ "type": "Feature", "properties": { "dip": 28, "feature": "Bed", "structypei": "BEIN", "azimuth2": 150.0, "index_righ": 17, "gml_id": "geol_500k.14310", "objectid": "14311", "x": 541013.1603, "y": 7493387.439, "strike": 60 }, "geometry": { "type": "Point", "coordinates": [ 541013.160391859943047, 7493387.439301080070436 ] } }, +{ "type": "Feature", "properties": { "dip": 30, "feature": "Bed", "structypei": "BEIN", "azimuth2": 420.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 523931.7411, "y": 7473700.519, "strike": 330 }, "geometry": { "type": "Point", "coordinates": [ 523931.741164629987907, 7473700.519519000314176 ] } }, +{ "type": "Feature", "properties": { "dip": 29, "feature": "Bed", "structypei": "BEIN", "azimuth2": 235.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 523931.7411, "y": 7473700.519, "strike": 145 }, "geometry": { "type": "Point", "coordinates": [ 523931.741164629987907, 7473700.519519000314176 ] } }, +{ "type": "Feature", "properties": { "dip": 28, "feature": "Bed", "structypei": "BEIN", "azimuth2": 110.0, "index_righ": 17, "gml_id": "geol_500k.14310", "objectid": "14311", "x": 536742.2321, "y": 7490698.338, "strike": 20 }, "geometry": { "type": "Point", "coordinates": [ 536742.232167589943856, 7490698.339416770264506 ] } }, +{ "type": "Feature", "properties": { "dip": 50, "feature": "Bed", "structypei": "BEIN", "azimuth2": 190.0, "index_righ": 22, "gml_id": "geol_500k.14368", "objectid": "14369", "x": 548249.1557, "y": 7493512.489, "strike": 100 }, "geometry": { "type": "Point", "coordinates": [ 548249.155882610008121, 7493512.489554589614272 ] } }, +{ "type": "Feature", "properties": { "dip": 55, "feature": "Bed", "structypei": "BEIN", "azimuth2": 190.0, "index_righ": 22, "gml_id": "geol_500k.14368", "objectid": "14369", "x": 548249.1557, "y": 7493512.489, "strike": 100 }, "geometry": { "type": "Point", "coordinates": [ 548249.155882610008121, 7493512.489554589614272 ] } }, +{ "type": "Feature", "properties": { "dip": 63, "feature": "Bed", "structypei": "BEIN", "azimuth2": 355.0, "index_righ": 43, "gml_id": "geol_500k.15988", "objectid": "15990", "x": 523989.5436, "y": 7500823.547, "strike": 265 }, "geometry": { "type": "Point", "coordinates": [ 523989.543662509997375, 7500823.547114609740674 ] } }, +{ "type": "Feature", "properties": { "dip": 25, "feature": "Bed", "structypei": "BEIN", "azimuth2": 105.0, "index_righ": 28, "gml_id": "geol_500k.16191", "objectid": "16193", "x": 544579.1636, "y": 7477239.626, "strike": 15 }, "geometry": { "type": "Point", "coordinates": [ 544579.163606690010056, 7477239.626580419950187 ] } }, +{ "type": "Feature", "properties": { "dip": 21, "feature": "Bed", "structypei": "BEIN", "azimuth2": 435.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 544816.7652, "y": 7476376.565, "strike": 345 }, "geometry": { "type": "Point", "coordinates": [ 544816.765222960035317, 7476376.566478800028563 ] } }, +{ "type": "Feature", "properties": { "dip": 28, "feature": "Bed", "structypei": "BEIN", "azimuth2": 110.0, "index_righ": 22, "gml_id": "geol_500k.14368", "objectid": "14369", "x": 537199.0956, "y": 7490607.57, "strike": 20 }, "geometry": { "type": "Point", "coordinates": [ 537199.095638660015538, 7490607.570995840243995 ] } }, +{ "type": "Feature", "properties": { "dip": 25, "feature": "Bed", "structypei": "BEIN", "azimuth2": 385.0, "index_righ": 18, "gml_id": "geol_500k.7579", "objectid": "7580", "x": 532678.4775, "y": 7488131.6, "strike": 295 }, "geometry": { "type": "Point", "coordinates": [ 532678.477559659979306, 7488131.601253040134907 ] } }, +{ "type": "Feature", "properties": { "dip": 15, "feature": "Bed", "structypei": "BEIN", "azimuth2": 330.0, "index_righ": 11, "gml_id": "geol_500k.14339", "objectid": "14340", "x": 543234.9773, "y": 7505326.767, "strike": 240 }, "geometry": { "type": "Point", "coordinates": [ 543234.977398650022224, 7505326.767153630033135 ] } }, +{ "type": "Feature", "properties": { "dip": 15, "feature": "Bed", "structypei": "BEIN", "azimuth2": 330.0, "index_righ": 11, "gml_id": "geol_500k.14339", "objectid": "14340", "x": 543754.1806, "y": 7504599.126, "strike": 240 }, "geometry": { "type": "Point", "coordinates": [ 543754.180680289980955, 7504599.126015749759972 ] } }, +{ "type": "Feature", "properties": { "dip": 55, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 368.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 530221.478, "y": 7485474.506, "strike": 278 }, "geometry": { "type": "Point", "coordinates": [ 530221.478091840050183, 7485474.506277250126004 ] } }, +{ "type": "Feature", "properties": { "dip": 40, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 370.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 532604.3699, "y": 7483996.514, "strike": 280 }, "geometry": { "type": "Point", "coordinates": [ 532604.369975229958072, 7483996.514512909576297 ] } }, +{ "type": "Feature", "properties": { "dip": 0, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 368.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 535197.3841, "y": 7517478.457, "strike": 278 }, "geometry": { "type": "Point", "coordinates": [ 535197.384140150039457, 7517478.458130169659853 ] } }, +{ "type": "Feature", "properties": { "dip": 30, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 93.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 522143.0475, "y": 7478175.841, "strike": 3 }, "geometry": { "type": "Point", "coordinates": [ 522143.047553320007864, 7478175.841140150092542 ] } }, +{ "type": "Feature", "properties": { "dip": 0, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 165.0, "index_righ": 17, "gml_id": "geol_500k.14310", "objectid": "14311", "x": 520512.9127, "y": 7497506.014, "strike": 75 }, "geometry": { "type": "Point", "coordinates": [ 520512.912720219988842, 7497506.014648189768195 ] } }, +{ "type": "Feature", "properties": { "dip": 29, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 163.0, "index_righ": 43, "gml_id": "geol_500k.15988", "objectid": "15990", "x": 522441.0406, "y": 7500496.571, "strike": 73 }, "geometry": { "type": "Point", "coordinates": [ 522441.040684339997824, 7500496.572535590268672 ] } }, +{ "type": "Feature", "properties": { "dip": 52, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 365.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 521969.8614, "y": 7509447.167, "strike": 275 }, "geometry": { "type": "Point", "coordinates": [ 521969.861481649975758, 7509447.168316629715264 ] } }, +{ "type": "Feature", "properties": { "dip": 0, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 95.0, "index_righ": 13, "gml_id": "geol_500k.14339", "objectid": "14340", "x": 520381.3069, "y": 7518189.622, "strike": 5 }, "geometry": { "type": "Point", "coordinates": [ 520381.306953309976961, 7518189.623318890109658 ] } }, +{ "type": "Feature", "properties": { "dip": 24, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 391.0, "index_righ": 32, "gml_id": "geol_500k.5501", "objectid": "5501", "x": 530017.1547, "y": 7517395.423, "strike": 301 }, "geometry": { "type": "Point", "coordinates": [ 530017.154735979973339, 7517395.423351770266891 ] } }, +{ "type": "Feature", "properties": { "dip": 0, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 370.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 531529.0496, "y": 7516327.456, "strike": 280 }, "geometry": { "type": "Point", "coordinates": [ 531529.049603780033067, 7516327.456395669840276 ] } }, +{ "type": "Feature", "properties": { "dip": 25, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 169.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 536743.7518, "y": 7516699.943, "strike": 79 }, "geometry": { "type": "Point", "coordinates": [ 536743.751895789988339, 7516699.943257340230048 ] } }, +{ "type": "Feature", "properties": { "dip": 54, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 381.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 536864.3112, "y": 7516486.44, "strike": 291 }, "geometry": { "type": "Point", "coordinates": [ 536864.311214599991217, 7516486.440060649998486 ] } }, +{ "type": "Feature", "properties": { "dip": 19, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 393.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 537236.751, "y": 7516781.94, "strike": 303 }, "geometry": { "type": "Point", "coordinates": [ 537236.751033399952576, 7516781.940984790213406 ] } }, +{ "type": "Feature", "properties": { "dip": 0, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 378.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 538184.3602, "y": 7515938.424, "strike": 288 }, "geometry": { "type": "Point", "coordinates": [ 538184.360327770002186, 7515938.425187329761684 ] } }, +{ "type": "Feature", "properties": { "dip": 0, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 408.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 541284.76, "y": 7518655.434, "strike": 318 }, "geometry": { "type": "Point", "coordinates": [ 541284.760004039970227, 7518655.435611880384386 ] } }, +{ "type": "Feature", "properties": { "dip": 0, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 397.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 542473.3504, "y": 7515998.898, "strike": 307 }, "geometry": { "type": "Point", "coordinates": [ 542473.350490109995008, 7515998.898037529550493 ] } }, +{ "type": "Feature", "properties": { "dip": 0, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 373.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 541120.3912, "y": 7514974.394, "strike": 283 }, "geometry": { "type": "Point", "coordinates": [ 541120.391238030046225, 7514974.394599010236561 ] } }, +{ "type": "Feature", "properties": { "dip": 0, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 391.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 543245.6967, "y": 7514289.872, "strike": 301 }, "geometry": { "type": "Point", "coordinates": [ 543245.696730609983206, 7514289.87276969011873 ] } }, +{ "type": "Feature", "properties": { "dip": 0, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 373.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 542385.7143, "y": 7515423.89, "strike": 283 }, "geometry": { "type": "Point", "coordinates": [ 542385.714369760011323, 7515423.891766839660704 ] } }, +{ "type": "Feature", "properties": { "dip": 0, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 379.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 540085.0803, "y": 7514695.398, "strike": 289 }, "geometry": { "type": "Point", "coordinates": [ 540085.080335729988292, 7514695.398229789920151 ] } }, +{ "type": "Feature", "properties": { "dip": 0, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 391.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 537926.9066, "y": 7514695.411, "strike": 301 }, "geometry": { "type": "Point", "coordinates": [ 537926.906666080001742, 7514695.412678790278733 ] } }, +{ "type": "Feature", "properties": { "dip": 0, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 410.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 530521.0956, "y": 7513906.411, "strike": 320 }, "geometry": { "type": "Point", "coordinates": [ 530521.095733140013181, 7513906.411135549657047 ] } }, +{ "type": "Feature", "properties": { "dip": 0, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 363.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 529732.1882, "y": 7512580.873, "strike": 273 }, "geometry": { "type": "Point", "coordinates": [ 529732.188222049968317, 7512580.874912950210273 ] } }, +{ "type": "Feature", "properties": { "dip": 32, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 383.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 535856.3302, "y": 7512629.9, "strike": 293 }, "geometry": { "type": "Point", "coordinates": [ 535856.330261689960025, 7512629.901913509704173 ] } }, +{ "type": "Feature", "properties": { "dip": 9, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 371.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 538825.1668, "y": 7511863.372, "strike": 281 }, "geometry": { "type": "Point", "coordinates": [ 538825.166878859978169, 7511863.373655679635704 ] } }, +{ "type": "Feature", "properties": { "dip": 26, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 137.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 541065.4097, "y": 7507289.308, "strike": 47 }, "geometry": { "type": "Point", "coordinates": [ 541065.409717830014415, 7507289.308750770054758 ] } }, +{ "type": "Feature", "properties": { "dip": 41, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 110.0, "index_righ": 11, "gml_id": "geol_500k.14339", "objectid": "14340", "x": 528702.0935, "y": 7500732.15, "strike": 20 }, "geometry": { "type": "Point", "coordinates": [ 528702.093518220004626, 7500732.150204709731042 ] } }, +{ "type": "Feature", "properties": { "dip": 40, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 175.0, "index_righ": 11, "gml_id": "geol_500k.14339", "objectid": "14340", "x": 535346.6091, "y": 7499105.696, "strike": 85 }, "geometry": { "type": "Point", "coordinates": [ 535346.60929794004187, 7499105.696668179705739 ] } }, +{ "type": "Feature", "properties": { "dip": 35, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 374.0, "index_righ": 19, "gml_id": "geol_500k.9861", "objectid": "9862", "x": 542840.1319, "y": 7483390.162, "strike": 284 }, "geometry": { "type": "Point", "coordinates": [ 542840.131905840011314, 7483390.163239589892328 ] } }, +{ "type": "Feature", "properties": { "dip": 20, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 151.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 525820.946, "y": 7481790.422, "strike": 61 }, "geometry": { "type": "Point", "coordinates": [ 525820.946054399944842, 7481790.422112179920077 ] } }, +{ "type": "Feature", "properties": { "dip": 35, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 436.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 545223.0165, "y": 7475727.052, "strike": 346 }, "geometry": { "type": "Point", "coordinates": [ 545223.016550080035813, 7475727.052647089585662 ] } }, +{ "type": "Feature", "properties": { "dip": 10, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 435.0, "index_righ": 36, "gml_id": "geol_500k.16936", "objectid": "16938", "x": 549386.0474, "y": 7474527.116, "strike": 345 }, "geometry": { "type": "Point", "coordinates": [ 549386.047439330024645, 7474527.117315949872136 ] } }, +{ "type": "Feature", "properties": { "dip": 0, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 440.0, "index_righ": 17, "gml_id": "geol_500k.14310", "objectid": "14311", "x": 554781.5243, "y": 7475058.762, "strike": 350 }, "geometry": { "type": "Point", "coordinates": [ 554781.524392939987592, 7475058.762736690230668 ] } }, +{ "type": "Feature", "properties": { "dip": 0, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 434.0, "index_righ": 22, "gml_id": "geol_500k.14368", "objectid": "14369", "x": 559486.8888, "y": 7475661.292, "strike": 344 }, "geometry": { "type": "Point", "coordinates": [ 559486.888806340051815, 7475661.292937439866364 ] } }, +{ "type": "Feature", "properties": { "dip": 25, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 409.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 547742.6758, "y": 7479703.669, "strike": 319 }, "geometry": { "type": "Point", "coordinates": [ 547742.675885259988718, 7479703.670715750195086 ] } }, +{ "type": "Feature", "properties": { "dip": 15, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 428.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 545836.4934, "y": 7478148.117, "strike": 338 }, "geometry": { "type": "Point", "coordinates": [ 545836.493430939968675, 7478148.118434090167284 ] } }, +{ "type": "Feature", "properties": { "dip": 46, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 390.0, "index_righ": 18, "gml_id": "geol_500k.7579", "objectid": "7580", "x": 550629.4503, "y": 7482157.733, "strike": 300 }, "geometry": { "type": "Point", "coordinates": [ 550629.450332490028813, 7482157.733772730454803 ] } }, +{ "type": "Feature", "properties": { "dip": 40, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 390.0, "index_righ": 22, "gml_id": "geol_500k.14368", "objectid": "14369", "x": 553784.6169, "y": 7482787.758, "strike": 300 }, "geometry": { "type": "Point", "coordinates": [ 553784.616916410042904, 7482787.759406059980392 ] } }, +{ "type": "Feature", "properties": { "dip": 50, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 382.0, "index_righ": 49, "gml_id": "geol_500k.4685", "objectid": "4685", "x": 555570.309, "y": 7486441.294, "strike": 292 }, "geometry": { "type": "Point", "coordinates": [ 555570.309094520052895, 7486441.295805470086634 ] } }, +{ "type": "Feature", "properties": { "dip": 70, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 384.0, "index_righ": 47, "gml_id": "geol_500k.4686", "objectid": "4686", "x": 554912.9939, "y": 7485625.285, "strike": 294 }, "geometry": { "type": "Point", "coordinates": [ 554912.994029060006142, 7485625.285620509646833 ] } }, +{ "type": "Feature", "properties": { "dip": 50, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 379.0, "index_righ": 17, "gml_id": "geol_500k.14310", "objectid": "14311", "x": 544406.7446, "y": 7485143.196, "strike": 289 }, "geometry": { "type": "Point", "coordinates": [ 544406.744695800007321, 7485143.197792230173945 ] } }, +{ "type": "Feature", "properties": { "dip": 48, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 168.0, "index_righ": 47, "gml_id": "geol_500k.4686", "objectid": "4686", "x": 559180.06240000017, "y": 7491409.858, "strike": 78 }, "geometry": { "type": "Point", "coordinates": [ 559180.062480399967171, 7491409.858080410398543 ] } }, +{ "type": "Feature", "properties": { "dip": 35, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 168.0, "index_righ": 22, "gml_id": "geol_500k.14368", "objectid": "14369", "x": 554304.9334, "y": 7496947.325, "strike": 78 }, "geometry": { "type": "Point", "coordinates": [ 554304.933485990040936, 7496947.325983230024576 ] } }, +{ "type": "Feature", "properties": { "dip": 15, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 362.0, "index_righ": 22, "gml_id": "geol_500k.14368", "objectid": "14369", "x": 545557.0328, "y": 7494696.218, "strike": 272 }, "geometry": { "type": "Point", "coordinates": [ 545557.032882109982893, 7494696.218082490377128 ] } }, +{ "type": "Feature", "properties": { "dip": 10, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 366.0, "index_righ": 50, "gml_id": "geol_500k.8420", "objectid": "8421", "x": 560867.2052, "y": 7497862.36, "strike": 276 }, "geometry": { "type": "Point", "coordinates": [ 560867.205221259966493, 7497862.36187853012234 ] } }, +{ "type": "Feature", "properties": { "dip": 0, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 148.0, "index_righ": 17, "gml_id": "geol_500k.14310", "objectid": "14311", "x": 553905.1204, "y": 7505481.849, "strike": 58 }, "geometry": { "type": "Point", "coordinates": [ 553905.120414, 7505481.8503198903054 ] } }, +{ "type": "Feature", "properties": { "dip": 11, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 430.0, "index_righ": 17, "gml_id": "geol_500k.14310", "objectid": "14311", "x": 562663.94480000017, "y": 7506741.508, "strike": 340 }, "geometry": { "type": "Point", "coordinates": [ 562663.944806399988011, 7506741.509795550256968 ] } }, +{ "type": "Feature", "properties": { "dip": 35, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 440.0, "index_righ": 32, "gml_id": "geol_500k.5501", "objectid": "5501", "x": 544921.8294, "y": 7514333.361, "strike": 350 }, "geometry": { "type": "Point", "coordinates": [ 544921.829412610037252, 7514333.362524409778416 ] } }, +{ "type": "Feature", "properties": { "dip": 33, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 400.0, "index_righ": 32, "gml_id": "geol_500k.5501", "objectid": "5501", "x": 544708.1991, "y": 7514108.86, "strike": 310 }, "geometry": { "type": "Point", "coordinates": [ 544708.199188990052789, 7514108.861192910000682 ] } }, +{ "type": "Feature", "properties": { "dip": 28, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 127.0, "index_righ": 32, "gml_id": "geol_500k.5501", "objectid": "5501", "x": 547332.066, "y": 7516113.867, "strike": 37 }, "geometry": { "type": "Point", "coordinates": [ 547332.066010780050419, 7516113.868296990171075 ] } }, +{ "type": "Feature", "properties": { "dip": 34, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 365.0, "index_righ": 55, "gml_id": "geol_500k.14337", "objectid": "14338", "x": 547704.52560000017, "y": 7513884.341, "strike": 275 }, "geometry": { "type": "Point", "coordinates": [ 547704.525679329992272, 7513884.341709859669209 ] } }, +{ "type": "Feature", "properties": { "dip": 15, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 150.0, "index_righ": 10, "gml_id": "geol_500k.14339", "objectid": "14340", "x": 554929.6113, "y": 7515160.855, "strike": 60 }, "geometry": { "type": "Point", "coordinates": [ 554929.611344089964405, 7515160.856294459663332 ] } }, +{ "type": "Feature", "properties": { "dip": 25, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 172.0, "index_righ": 32, "gml_id": "geol_500k.5501", "objectid": "5501", "x": 548756.2865, "y": 7517165.367, "strike": 82 }, "geometry": { "type": "Point", "coordinates": [ 548756.286561049986631, 7517165.368296819739044 ] } }, +{ "type": "Feature", "properties": { "dip": 0, "feature": "Bedding, showing strike and dip", "structypei": null, "azimuth2": 162.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 544752.081, "y": 7517757.405, "strike": 72 }, "geometry": { "type": "Point", "coordinates": [ 544752.081064200028777, 7517757.405165899544954 ] } }, +{ "type": "Feature", "properties": { "dip": 28, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 390.0, "index_righ": 49, "gml_id": "geol_500k.4685", "objectid": "4685", "x": 552049.0524, "y": 7487780.785, "strike": 300 }, "geometry": { "type": "Point", "coordinates": [ 552049.052401999942958, 7487780.785698380321264 ] } }, +{ "type": "Feature", "properties": { "dip": 34, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 184.0, "index_righ": 52, "gml_id": "geol_500k.14338", "objectid": "14339", "x": 547640.63840000017, "y": 7513734.467, "strike": 94 }, "geometry": { "type": "Point", "coordinates": [ 547640.638480219990015, 7513734.467745999805629 ] } }, +{ "type": "Feature", "properties": { "dip": 9, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 191.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 538617.6198, "y": 7511806.723, "strike": 101 }, "geometry": { "type": "Point", "coordinates": [ 538617.619843840016983, 7511806.723498820327222 ] } }, +{ "type": "Feature", "properties": { "dip": 63, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 370.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 538806.0275, "y": 7483993.093, "strike": 280 }, "geometry": { "type": "Point", "coordinates": [ 538806.027565150056034, 7483993.093063940294087 ] } }, +{ "type": "Feature", "properties": { "dip": 25, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 174.0, "index_righ": 32, "gml_id": "geol_500k.5501", "objectid": "5501", "x": 548578.0466, "y": 7517242.932, "strike": 84 }, "geometry": { "type": "Point", "coordinates": [ 548578.046648949966766, 7517242.932752680033445 ] } }, +{ "type": "Feature", "properties": { "dip": 11, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 250.0, "index_righ": 17, "gml_id": "geol_500k.14310", "objectid": "14311", "x": 562613.5943, "y": 7506579.002, "strike": 160 }, "geometry": { "type": "Point", "coordinates": [ 562613.594478350016288, 7506579.00298373028636 ] } }, +{ "type": "Feature", "properties": { "dip": 32, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 201.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 535859.02690000017, "y": 7512398.304, "strike": 111 }, "geometry": { "type": "Point", "coordinates": [ 535859.026927149971016, 7512398.305493519641459 ] } }, +{ "type": "Feature", "properties": { "dip": 60, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 365.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 542344.8415, "y": 7481763.356, "strike": 275 }, "geometry": { "type": "Point", "coordinates": [ 542344.841554780025035, 7481763.357858150266111 ] } }, +{ "type": "Feature", "properties": { "dip": 80, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 390.0, "index_righ": 49, "gml_id": "geol_500k.4685", "objectid": "4685", "x": 552049.0524, "y": 7487780.785, "strike": 300 }, "geometry": { "type": "Point", "coordinates": [ 552049.052401999942958, 7487780.785698380321264 ] } }, +{ "type": "Feature", "properties": { "dip": 35, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 435.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 545003.7412, "y": 7476258.347, "strike": 345 }, "geometry": { "type": "Point", "coordinates": [ 545003.741205579950474, 7476258.347584360279143 ] } }, +{ "type": "Feature", "properties": { "dip": 28, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 305.0, "index_righ": 55, "gml_id": "geol_500k.14337", "objectid": "14338", "x": 547242.81740000017, "y": 7516046.248, "strike": 215 }, "geometry": { "type": "Point", "coordinates": [ 547242.817401160020381, 7516046.249239830300212 ] } }, +{ "type": "Feature", "properties": { "dip": 28, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 390.0, "index_righ": 49, "gml_id": "geol_500k.4685", "objectid": "4685", "x": 552075.5921, "y": 7487793.536, "strike": 300 }, "geometry": { "type": "Point", "coordinates": [ 552075.592163110035472, 7487793.536227280274034 ] } }, +{ "type": "Feature", "properties": { "dip": 62, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 378.0, "index_righ": 58, "gml_id": "geol_500k.16190", "objectid": "16192", "x": 534509.0571, "y": 7483086.092, "strike": 288 }, "geometry": { "type": "Point", "coordinates": [ 534509.057129219989292, 7483086.092498210258782 ] } }, +{ "type": "Feature", "properties": { "dip": 25, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 348.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 536729.5649, "y": 7516597.336, "strike": 258 }, "geometry": { "type": "Point", "coordinates": [ 536729.564979600021616, 7516597.336132359690964 ] } }, +{ "type": "Feature", "properties": { "dip": 15, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 360.0, "index_righ": 22, "gml_id": "geol_500k.14368", "objectid": "14369", "x": 546137.8575, "y": 7494606.699, "strike": 270 }, "geometry": { "type": "Point", "coordinates": [ 546137.857560900039971, 7494606.699120569974184 ] } }, +{ "type": "Feature", "properties": { "dip": 28, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 338.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 540038.912, "y": 7506751.828, "strike": 248 }, "geometry": { "type": "Point", "coordinates": [ 540038.912072750041261, 7506751.82918475009501 ] } }, +{ "type": "Feature", "properties": { "dip": 24, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 211.0, "index_righ": 32, "gml_id": "geol_500k.5501", "objectid": "5501", "x": 529955.1185, "y": 7517212.373, "strike": 121 }, "geometry": { "type": "Point", "coordinates": [ 529955.118584670010023, 7517212.374486490152776 ] } }, +{ "type": "Feature", "properties": { "dip": 19, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 388.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 537101.1025, "y": 7516513.646, "strike": 298 }, "geometry": { "type": "Point", "coordinates": [ 537101.102592629962601, 7516513.647987429983914 ] } }, +{ "type": "Feature", "properties": { "dip": 80, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 390.0, "index_righ": 49, "gml_id": "geol_500k.4685", "objectid": "4685", "x": 552075.5921, "y": 7487793.536, "strike": 300 }, "geometry": { "type": "Point", "coordinates": [ 552075.592163110035472, 7487793.536227280274034 ] } }, +{ "type": "Feature", "properties": { "dip": 52, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 181.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 521796.7218, "y": 7509376.561, "strike": 91 }, "geometry": { "type": "Point", "coordinates": [ 521796.721859230019618, 7509376.56236276961863 ] } }, +{ "type": "Feature", "properties": { "dip": 64, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 420.0, "index_righ": 44, "gml_id": "geol_500k.7875", "objectid": "7876", "x": 553087.8922, "y": 7484583.491, "strike": 330 }, "geometry": { "type": "Point", "coordinates": [ 553087.892269309959374, 7484583.492152259685099 ] } }, +{ "type": "Feature", "properties": { "dip": 33, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 219.0, "index_righ": 32, "gml_id": "geol_500k.5501", "objectid": "5501", "x": 544671.5774, "y": 7513917.04, "strike": 129 }, "geometry": { "type": "Point", "coordinates": [ 544671.577467399998568, 7513917.040575330145657 ] } }, +{ "type": "Feature", "properties": { "dip": 60, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 385.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 539933.7822, "y": 7483374.355, "strike": 295 }, "geometry": { "type": "Point", "coordinates": [ 539933.782225199975073, 7483374.356403660029173 ] } }, +{ "type": "Feature", "properties": { "dip": 60, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 171.0, "index_righ": 57, "gml_id": "geol_500k.6148", "objectid": "6148", "x": 521993.3993, "y": 7508834.989, "strike": 81 }, "geometry": { "type": "Point", "coordinates": [ 521993.399334150017239, 7508834.989267899654806 ] } }, +{ "type": "Feature", "properties": { "dip": 60, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 388.0, "index_righ": 31, "gml_id": "geol_500k.16188", "objectid": "16190", "x": 542660.062, "y": 7481786.83, "strike": 298 }, "geometry": { "type": "Point", "coordinates": [ 542660.062078319955617, 7481786.830071079544723 ] } }, +{ "type": "Feature", "properties": { "dip": 35, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 442.0, "index_righ": 32, "gml_id": "geol_500k.5501", "objectid": "5501", "x": 544608.898, "y": 7514084.372, "strike": 352 }, "geometry": { "type": "Point", "coordinates": [ 544608.898035160033032, 7514084.372596840374172 ] } }, +{ "type": "Feature", "properties": { "dip": 64, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 240.0, "index_righ": 44, "gml_id": "geol_500k.7875", "objectid": "7876", "x": 553113.2509, "y": 7484612.184, "strike": 150 }, "geometry": { "type": "Point", "coordinates": [ 553113.250977969961241, 7484612.185831510461867 ] } }, +{ "type": "Feature", "properties": { "dip": 26, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 405.0, "index_righ": 32, "gml_id": "geol_500k.5501", "objectid": "5501", "x": 544512.13, "y": 7514096.827, "strike": 315 }, "geometry": { "type": "Point", "coordinates": [ 544512.13000452995766, 7514096.828844400122762 ] } }, +{ "type": "Feature", "properties": { "dip": 24, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 230.0, "index_righ": 32, "gml_id": "geol_500k.5501", "objectid": "5501", "x": 529219.0531, "y": 7512991.483, "strike": 140 }, "geometry": { "type": "Point", "coordinates": [ 529219.053161659976467, 7512991.483141110278666 ] } }, +{ "type": "Feature", "properties": { "dip": 58, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 368.0, "index_righ": 58, "gml_id": "geol_500k.16190", "objectid": "16192", "x": 534077.0355, "y": 7482256.828, "strike": 278 }, "geometry": { "type": "Point", "coordinates": [ 534077.035659849992953, 7482256.829784540459514 ] } }, +{ "type": "Feature", "properties": { "dip": 54, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 200.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 536789.5709, "y": 7516217.953, "strike": 110 }, "geometry": { "type": "Point", "coordinates": [ 536789.57090088003315, 7516217.954258319921792 ] } }, +{ "type": "Feature", "properties": { "dip": 10, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 190.0, "index_righ": 50, "gml_id": "geol_500k.8420", "objectid": "8421", "x": 560770.7347, "y": 7497966.202, "strike": 100 }, "geometry": { "type": "Point", "coordinates": [ 560770.734732890035957, 7497966.203075700439513 ] } }, +{ "type": "Feature", "properties": { "dip": 24, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 181.0, "index_righ": 25, "gml_id": "geol_500k.14340", "objectid": "14341", "x": 537020.134, "y": 7516172.571, "strike": 91 }, "geometry": { "type": "Point", "coordinates": [ 537020.134009359986521, 7516172.571558499708772 ] } }, +{ "type": "Feature", "properties": { "dip": 50, "feature": "Bedding, showing strike and dip", "structypei": "BEIN", "azimuth2": 185.0, "index_righ": 49, "gml_id": "geol_500k.4685", "objectid": "4685", "x": 559881.968, "y": 7490671.207, "strike": 95 }, "geometry": { "type": "Point", "coordinates": [ 559881.968048759968951, 7490671.208677380345762 ] } } +] +} diff --git a/map2loop/_datasets/geodata_files/load_map2loop_data.py b/map2loop/_datasets/geodata_files/load_map2loop_data.py new file mode 100644 index 00000000..d625af9b --- /dev/null +++ b/map2loop/_datasets/geodata_files/load_map2loop_data.py @@ -0,0 +1,45 @@ +import geopandas +from importlib.resources import files +from osgeo import gdal +gdal.UseExceptions() + +def load_hamersley_geology(): + """ + Loads Hamersley geology data from a shapefile + + Args: + path (str): + The path to the shapefile + + Returns: + geopandas.GeoDataFrame: The geology data + """ + stream = files("map2loop._datasets.geodata_files.hamersley").joinpath("geology.geojson") + return geopandas.read_file(stream) + + +def load_hamersley_structure(): + """ + Loads Hamersley structure data from a shapefile + + Args: + path (str): + The path to the shapefile + + Returns: + geopandas.GeoDataFrame: The structure data + """ + + path = files("map2loop._datasets.geodata_files.hamersley").joinpath("structure.geojson") + return geopandas.read_file(path) + + +def load_hamersley_dtm(): + """ + Load DTM data from a raster file + + Returns: + gdal.Dataset: The DTM data + """ + path = files("map2loop._datasets.geodata_files.hamersley").joinpath("dtm_rp.tif") + return gdal.Open(path) diff --git a/map2loop/config.py b/map2loop/config.py index 92bd7725..48d017d3 100644 --- a/map2loop/config.py +++ b/map2loop/config.py @@ -1,5 +1,6 @@ +import urllib.error import beartype -import hjson +import json import urllib import time import pathlib @@ -9,6 +10,7 @@ logger = getLogger(__name__) + class Config: """ A data structure containing column name mappings for files and keywords @@ -50,7 +52,7 @@ def __init__(self): "intrusive_text": "intrusive", "volcanic_text": "volcanic", "objectid_column": "ID", - "ignore_codes": ["cover"], + "ignore_lithology_codes": ["cover"], } self.fault_config = { "structtype_column": "FEATURE", @@ -64,6 +66,8 @@ def __init__(self): "dipestimate_text": "'NORTH_EAST','NORTH',