예제 #1
0
    def plot_ts():
        df = measures.sample_df

        if measures.color_check.value == True:
            color_marks = list(measures.sample_df['color'].values)
        else:
            color_marks = list(measures.point_color)

        band = measures.band_list[measures.band_index1]

        plots.add_plot_ts(df, measures.lc2, band, color_marks)

        plots.add_plot_doy(df, measures.lc8, band, color_marks)

        if measures.pyccd_flag:
            measures.do_pyccd(0)
예제 #2
0
    def plot_ts(plot, plottype):
        df = measures.sample_df

        if measures.color_check.value == True:
            color_marks = list(measures.sample_df['color'].values)
        else:
            color_marks = None

        band = measures.band_list[measures.band_index1]

        if plottype == 'ts':
            plots.add_plot_ts(df, plot, band=band, color_marks=color_marks)
        else:
            plots.add_plot_doy(df, plot, band=band, color_marks=color_marks)

        if measures.pyccd_flag:
            measures.do_pyccd(0)
예제 #3
0
    def plot_ts(plot, plottype):
        df = TSTools.click_df

        if TSTools.color_check.value is True:
            color_marks = list(df['color'].values)
        else:
            color_marks = None

        band = TSTools.band_list[TSTools.band_index2]

        if plottype == 'ts':
            plots.add_plot_ts(df, plot, band=band, color_marks=color_marks)
        else:
            plots.add_plot_doy(df, plot, band=band, color_marks=color_marks)

        if TSTools.pyccd_flag2:
            TSTools.do_pyccd2(0)