You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

  1. Parameters

    CREATE TABLE public.parameters
    (
        gid int DEFAULT nextval('geoindex_gid_seq'::regclass) PRIMARY KEY NOT NULL,
        name varchar(50) NOT NULL,
        title varchar(100),
        unit varchar(20),
        categories varchar(200),
        detail_view varchar(100),
        search_view boolean DEFAULT true ,
        explore_view boolean DEFAULT true ,
        scale_names varchar(250),
        scale_colors varchar(100)
    );
    CREATE UNIQUE INDEX parameters_gid_uindex ON public.parameters (gid);
    CREATE UNIQUE INDEX parameters_name_uindex ON public.parameters (name);  


    Sample For GLM (Not complete)


    gidnameNameunitcategoriesdetailViewsearchViewexploreViewscale_namesscale_colors
    8018546turbidity-glendaTurbityNTUnutrientstime, stacked_lineTRUETRUE

    8018542chlorophyll-a-glendaChlorophyll aug/LnutrientstimeTRUETRUE

    8018544silica-glendaSilicamg/LnutrientstimeTRUETRUE

    8018545total-phosphorus-glendaTotal Phosphorusug/LnutrientstimeTRUETRUE

    8018541alkalinity-glendaAlkalinitymg/Lnutrients, contaminantstimeTRUETRUE

    8018543nitrogen-glendaNitrite-Nitratemg/LnutrientstimeTRUETRUE

    8018547biomassZooplankton Biomassug/m^3biologystacked_barTRUETRUECalanoids, Cyclopoids, Limnocalanus, Daphnids Cladocerans, Predatory Cladocerans, Non-Daphnid Cladocerans#00FFFF, #FFFF00, #0000FF, #FF3939, #660000, #660066
    8018548densityZooplankton Density#/m^3biologystacked_barTRUETRUECalanoids, Cyclopoids, Limnocalanus, Daphnids Cladocerans, Predatory Cladocerans, Non-Daphnid Cladocerans#00FFFF, #FFFF00, #0000FF, #FF3939, #660000, #660066


    /api/parameters

    /api/parameters
    {"id": 8018543,"name": "nitrogen-glenda","title": "Nitrite-Nitrate","unit": "mg/L","categories": ["nutrients"],"detail_view": ["time\r"],"search_view": true,"explore_view": true,"scale_names": [],"scale_colors": []},{"id": 8018548,"name": "density","title": "Zooplankton Density","unit": "#/m^3","categories": ["biology"],"detail_view": ["stacked_bar"],"search_view": true,"explore_view": true,"scale_names": ["Calanoids","Cyclopoids","Limnocalanus","Daphnids Cladocerans","Predatory Cladocerans","Non-Daphnid Cladocerans"],"scale_colors": ["#00FFFF","#FFFF00","#0000FF","#FF3939","#660000","#660066"]},
  2.  Sources
  • No labels