Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- Upgrade babel packages to latest versions (7.28.0/7.29.0).
- Upgrade webpack to version 5.105.4.
- Upgrade eslint to v10 and migrate to eslint flat config.
- Update `csv-geo-au` support to include the Australian Mesh Blocks 2021.

#### 8.12.2 - 2026-03-27

Expand Down
1 change: 1 addition & 0 deletions doc/active_region_mapping_table.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
| description | column_reference | aliases | current_status |
| :------------------------------------------------------------------------------------------------------- | :--------------- | :----------------------------------------------------------------------------------------------------------------- | :--------------------------------------- |
| States and Territories 2021 | STATE_CODE_2021 | ['ste_code_2021', 'ste_code', 'ste'] | |
| Mesh Blocks 2021 | MB_CODE21 | ['mb_code_2021', 'mb_code21', 'mb_code', 'mb'] | |
| Indigenous Locations 2021 | ILO_CODE21 | ['iloc_code_2021', 'iloc_code', 'iloc'] | |
| Indigenous Locations 2021 | ILO_NAME21 | ['iloc_name_2021', 'iloc_name'] | |
| Indigenous Areas 2021 | IAR_CODE21 | ['iare_code_2021', 'iare_code', 'iare'] | |
Expand Down
2 changes: 1 addition & 1 deletion test/ModelMixins/TableMixinSpec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ import regionIdsLgaName from "../../wwwroot/data/regionids/region_map-FID_LGA_20
import regionIdsLgaCode from "../../wwwroot/data/regionids/region_map-FID_LGA_2015_AUST_LGA_CODE15.json";
import regionIdsLgaNameStates from "../../wwwroot/data/regionids/region_map-FID_LGA_2011_AUST_STE_NAME11.json";

const NUMBER_OF_REGION_MAPPING_TYPES = 154;
const NUMBER_OF_REGION_MAPPING_TYPES = 155;

describe("TableMixin", function () {
let item: CsvCatalogItem;
Expand Down
15 changes: 15 additions & 0 deletions wwwroot/data/regionMapping.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
{
"comments": "Matching takes place in the order defined in this file. Place code matches before name matches, and smaller regions before larger ones.",
"regionWmsMap": {
"MB_2021": {
"layerName": "MB_2021",
"server": "https://tiles.terria.io/MB_2021/{z}/{x}/{y}.pbf",
"serverType": "MVT",
"serverMaxNativeZoom": 12,
"serverMinZoom": 0,
"serverMaxZoom": 28,
"regionIdsFile": "https://tiles.terria.io/region-mapping/regionids/region_map-MB_2021.json",
"uniqueIdProp": "FID",
"regionProp": "MB_CODE21",
"nameProp": "MB_CODE21",
"aliases": ["mb_code_2021", "mb_code21", "mb_code", "mb"],
"description": "Mesh Blocks 2021",
"bbox": [96.81, -43.74, 168, -9.14]
},
"STE_2021": {
"layerName": "STE_2021",
"server": "https://tiles.terria.io/STE_2021/{z}/{x}/{y}.pbf",
Expand Down
Loading