Ejemplo n.º 1
0
def extract_catchments_as_geojson(tree):
    geojson_features = wfs_extract_features_as_geojson(
        tree, ns['x'], "AHGFCatchment", catchment_features_geojson_converter)
    return geojson_features
Ejemplo n.º 2
0
def extract_rrcc_as_geojson(tree):
    geojson_features = wfs_extract_features_as_geojson(
        tree, ns['x'], "RRContractedCatchmentLookup",
        rrcc_features_geojson_converter)
    return geojson_features
Ejemplo n.º 3
0
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
Ejemplo n.º 4
0
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