def extract_catchments_as_geojson(tree): geojson_features = wfs_extract_features_as_geojson( tree, ns['x'], "AHGFCatchment", catchment_features_geojson_converter) return geojson_features
def extract_rrcc_as_geojson(tree): geojson_features = wfs_extract_features_as_geojson( tree, ns['x'], "RRContractedCatchmentLookup", rrcc_features_geojson_converter) return geojson_features
def extract_drainage_divisions_as_geojson(tree): geojson_features = wfs_extract_features_as_geojson( tree, ns['x'], "AWRADrainageDivision", drainage_division_features_geojson_converter) return geojson_features
def extract_river_regions_as_geojson(tree): geojson_features = wfs_extract_features_as_geojson(tree, ns['x'], "RiverRegion", river_region_features_geojson_converter) return geojson_features