diff --git a/README.md b/README.md index 2d808bc..2acf694 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,12 @@ collected by the NEON AOP. This code was created as part of an effort to generat A full description of the effort can be found at: -> K. Dana Chadwick, Philip Brodrick, Kathleen Grant, Tristan Goulden, Amanda Henderson, Nicola Falco, Haruko Wainwright, Kenneth H. Williams, Markus Bill, Ian Breckheimer, Eoin L. Brodie, Heidi Steltzer, C. F. Rick Williams, Benjamin Blonder, Jiancong Chen, Baptiste Dafflon, Joan Damerow, Matt Hancher, Aizah Khurram, Jack Lamb, Corey Lawrence, Maeve McCormick. John Musinsky, Samuel Pierce, Alexander Polussa, Maceo Hastings Porro, Andea Scott, Hans Wu Singh, Patrick O. Sorensen, Charuleka Varadharajan, Bizuayehu Whitney, Katharine Maher. Integrating airborne remote sensing and field campaigns for ecology and Earth system science. In Review, 2020. +> K. Dana Chadwick, Philip Brodrick, Kathleen Grant, Tristan Goulden, Amanda Henderson, Nicola Falco, Haruko Wainwright, Kenneth H. Williams, Markus Bill, Ian Breckheimer, Eoin L. Brodie, Heidi Steltzer, C. F. Rick Williams, Benjamin Blonder, Jiancong Chen, Baptiste Dafflon, Joan Damerow, Matt Hancher, Aizah Khurram, Jack Lamb, Corey Lawrence, Maeve McCormick. John Musinsky, Samuel Pierce, Alexander Polussa, Maceo Hastings Porro, Andea Scott, Hans Wu Singh, Patrick O. Sorensen, Charuleka Varadharajan, Bizuayehu Whitney, Katharine Maher. Integrating airborne remote sensing and field campaigns for ecology and Earth system science. Methods in Ecology and Evolution, 2020. and use of this code should cite that manuscript. ### Visualization code in GEE for all products in this project can be found here: -https://code.earthengine.google.com/5c96bbc96ffd50e3c8b1433b34a0bb86 +https://code.earthengine.google.com/?scriptPath=users%2Fpgbrodrick%2Feast_river%3Aneon_aop_collection_visuals
diff --git a/apply_cover_model.py b/apply_cover_model.py index cc4dd96..c0c41a7 100644 --- a/apply_cover_model.py +++ b/apply_cover_model.py @@ -2,82 +2,108 @@ import gdal import os import argparse -import keras +from tensorflow import keras from tqdm import tqdm -from sklearn.externals import joblib - +#from sklearn.externals import joblib +import joblib +#check order of bn & standarization import warnings warnings.filterwarnings('ignore') -parser = argparse.ArgumentParser(description='Apply chem equation to BIL') -parser.add_argument('refl_dat_f') -parser.add_argument('output_name') -parser.add_argument('-model_f', default='trained_models/conifer_nn_set_29.h5') -parser.add_argument('-scaler', default='trained_models/nn_conifer_scaler') -parser.add_argument('-bn', default=True, type=bool) -args = parser.parse_args() - -if (os.path.isfile(args.output_name)): - print('output file: {} found. terminating'.format(args.output_name)) - quit() - -# make sure these match the settings file corresponding to the coefficient file - -# open up chemical equation data -model = keras.models.load_model(args.model_f) - -# open up raster sets -dataset = gdal.Open(args.refl_dat_f, gdal.GA_ReadOnly) -data_trans = dataset.GetGeoTransform() - -max_y = dataset.RasterYSize -max_x = dataset.RasterXSize - - -# create blank output file -driver = gdal.GetDriverByName('GTiff') -driver.Register() - - -outDataset = driver.Create(args.output_name, - max_x, - max_y, - 1, - gdal.GDT_Float32, - options=['COMPRESS=DEFLATE', 'TILED=YES']) - -outDataset.SetProjection(dataset.GetProjection()) -outDataset.SetGeoTransform(dataset.GetGeoTransform()) - -full_bad_bands = np.zeros(426).astype(bool) -full_bad_bands[:8] = True -full_bad_bands[192:205] = True -full_bad_bands[284:327] = True -full_bad_bands[417:] = True - -bad_bands = np.zeros(142).astype(bool) -bad_bands[:2] = True -bad_bands[64:68] = True -bad_bands[95:109] = True -bad_bands[139:] = True -output_predictions = np.zeros((max_y, max_x)) - - -if args.scaler is not None: - scaler = joblib.load(args.scaler) - -# loop through lines [y] -for l in tqdm(range(0, max_y), ncols=80): - dat = np.squeeze(dataset.ReadAsArray(0, l, max_x, 1)).astype(np.float32) - dat = dat[np.logical_not(full_bad_bands), ...] - dat = np.transpose(dat) - if (np.nansum(dat) > 0): - if (args.bn): - dat = dat / np.sqrt(np.nanmean(np.power(dat, 2), axis=1))[:, np.newaxis] - - dat = scaler.transform(dat) - output_predictions[l, :] = model.predict(dat)[:, 0] - -outDataset.GetRasterBand(1).WriteArray(output_predictions, 0, 0) -del outDataset +def main(): + parser = argparse.ArgumentParser(description='Apply chem equation to BIL') + parser.add_argument('refl_dat_f') + parser.add_argument('output_name') + parser.add_argument('-model_f', default='trained_models/cover_model_nl_2_dr_0.4_nn_550_it_49.h5') + parser.add_argument('-scaler', default=None) + parser.add_argument('-bn', default=1, type=int, choices=[0, 1]) + parser.add_argument('-argmax', default=1, type=int, choices=[0, 1]) + args = parser.parse_args() + + args.bn = args.bn == 1 + args.argmax = args.argmax == 1 + + if os.path.isfile(args.output_name): + print('output file: {} found. terminating'.format(args.output_name)) + quit() + + apply_model(args.model_f, args.refl_dat_f, args.output_name, args.bn, args.scaler, args.argmax) + + +def apply_model(model_file: str, refl_dat_f: str, output_name: str, bn: bool = True, scaler: str = None, argmax: bool = True): + # open up chemical equation data + model = keras.models.load_model(model_file) + + # open up raster sets + dataset = gdal.Open(refl_dat_f, gdal.GA_ReadOnly) + data_trans = dataset.GetGeoTransform() + + max_y = dataset.RasterYSize + max_x = dataset.RasterXSize + + + # create blank output file + driver = gdal.GetDriverByName('GTiff') + driver.Register() + + + full_bad_bands = np.zeros(426).astype(bool) + full_bad_bands[:8] = True + full_bad_bands[192:205] = True + full_bad_bands[284:327] = True + full_bad_bands[417:] = True + + bad_bands = np.zeros(142).astype(bool) + bad_bands[:2] = True + bad_bands[64:68] = True + bad_bands[95:109] = True + bad_bands[139:] = True + + + if scaler is not None: + scaler = joblib.load(scaler) + + n_bands = 1 + if argmax is False: + dat_bands = np.squeeze(dataset.ReadAsArray(0, 0, 5, 1)).astype(np.float32) + dat_bands = dat_bands[np.logical_not(full_bad_bands), ...] + dat_bands = np.transpose(dat_bands) + pred_shape = model.predict(dat_bands) + n_bands = len(pred_shape[-1]) + + output_predictions = np.zeros((max_y, max_x, n_bands)) + outDataset = driver.Create(output_name, + max_x, + max_y, + n_bands, + gdal.GDT_Float32, + options=['COMPRESS=DEFLATE', 'TILED=YES']) + + outDataset.SetProjection(dataset.GetProjection()) + outDataset.SetGeoTransform(dataset.GetGeoTransform()) + + # loop through lines [y] + #for l in tqdm(range(0, max_y), ncols=80): + for l in tqdm(range(0, 200), ncols=80): + dat = np.squeeze(dataset.ReadAsArray(0, l, max_x, 1)).astype(np.float32) + dat = dat[np.logical_not(full_bad_bands), ...] + dat = np.transpose(dat) + if np.nansum(dat) > 0: + if bn: + dat = dat / np.sqrt(np.nanmean(np.power(dat, 2), axis=1))[:, np.newaxis] + + if scaler is not None: + dat = scaler.transform(dat) + + if argmax is True: + output_predictions[l, :, 0] = np.argmax(model.predict(dat), axis=-1) + else: + output_predictions[l, ...] = model.predict(dat) + + for _band in range(n_bands): + outDataset.GetRasterBand(_band + 1).WriteArray(output_predictions[...,_band], 0, 0) + del outDataset + +if __name__ == "__main__": + main() diff --git a/cover_class_spec_plotting.py b/cover_class_spec_plotting.py new file mode 100644 index 0000000..0900611 --- /dev/null +++ b/cover_class_spec_plotting.py @@ -0,0 +1,101 @@ + +import pandas as pd +import numpy as np +import matplotlib.pyplot as plt +import os +import warnings +warnings.filterwarnings('ignore') + + +plt.rcParams.update({'font.size': 20}) +plt.rcParams['font.family'] = "serif" +plt.rcParams['font.serif'] = "Times New Roman" +plt.rcParams['axes.grid'] = True +plt.rcParams['axes.axisbelow'] = True +plt.rcParams['axes.labelpad'] = 6 + + +def main(): + file_path = '~/Google Drive File Stream/My Drive/CB_share/NEON/cover_classification/extraction_output/cover_extraction_20201021.csv' + wavelengths_file = 'raster_data/neon_wavelengths.txt' + spectra, cover_types, wv = spec_cleaning(file_path, wavelengths_file, 'refl_B_') + plot_avg_spectra(spectra, cover_types, wv) + + +def find_nearest(array_like, v): + index = np.argmin(np.abs(np.array(array_like) - v)) + return index + +def spec_cleaning(file_path, wavelengths_file, band_preface): + extract = pd.read_csv(file_path) + headerSpec = list(extract) # Reflectance bands start at 18 (17 in zero base) + + # defining wavelengths + wv = np.genfromtxt(wavelengths_file) + bad_bands = [] + good_band_ranges = [] + + bad_band_ranges = [[0, 425], [1345, 1410], [1805, 2020], [2470, 2700]] + for _bbr in range(len(bad_band_ranges)): + bad_band_ranges[_bbr] = [find_nearest(wv, x) for x in bad_band_ranges[_bbr]] + if (_bbr > 0): + good_band_ranges.append([bad_band_ranges[_bbr-1][1], bad_band_ranges[_bbr][0]]) + + for n in range(bad_band_ranges[_bbr][0], bad_band_ranges[_bbr][1]): + bad_bands.append(n) + bad_bands.append(len(wv)-1) + + good_bands = np.array([x for x in range(0, 426) if x not in bad_bands]) + + # first column of reflectance data + rfdat = list(extract).index(band_preface + '1') + + all_band_indices = (np.array(good_bands)+rfdat).tolist() + all_band_indices.extend((np.array(bad_bands)+rfdat).tolist()) + all_band_indices = np.sort(all_band_indices) + + spectra = np.array(extract[np.array(headerSpec)[all_band_indices]]) + spectra[:, bad_bands] = np.nan + + cover_types = extract['covertype'] + + return spectra, cover_types, wv + + +def plot_avg_spectra(spectra, cover_types, wv, brightness_normalize=False): + + c_types = cover_types.unique() + + color_sets = ['navy', 'tan', 'forestgreen', 'royalblue', 'gray', 'darkorange', 'black', 'brown', 'purple'] + + # Plot the difference between needles and noneedles in reflectance data + figure_export_settings = {'dpi': 200, 'bbox_inches': 'tight'} + + fig = plt.figure(figsize=(8, 5), constrained_layout=True) + for _c, cover in enumerate(c_types): + c_spectra = spectra[cover_types == cover] + print(color_sets[_c]) + if brightness_normalize: + scale_factor = 1. + else: + scale_factor = 100. + plt.plot(wv, np.nanmean(c_spectra, axis=0) / scale_factor, c=color_sets[_c], linewidth=2) + plt.fill_between(wv, np.nanmean(c_spectra, axis=0) / scale_factor - np.nanstd(c_spectra, axis=0) / scale_factor, + np.nanmean( + c_spectra, axis=0) / scale_factor + np.nanstd(c_spectra, axis=0) / scale_factor, alpha=.15, + facecolor=color_sets[_c]) + + plt.legend(c_types, prop={'size':10}) + plt.ylabel('Reflectance (%)') + if brightness_normalize: + plt.ylabel('Brightness Norm. Reflectance') + else: + plt.ylabel('Reflectance (%)') + plt.xlabel('Wavelength (nm)') + + plt.savefig(os.path.join('figs', 'class_spectra.png'), **figure_export_settings) + del fig + + +if __name__ == "__main__": + main() diff --git a/cover_model.py b/cover_model.py index 93230a8..bc35a45 100644 --- a/cover_model.py +++ b/cover_model.py @@ -2,40 +2,109 @@ import numpy as np import pandas as pd -import keras +from tensorflow import keras import matplotlib as mpl import matplotlib.pyplot as plt +import matplotlib.gridspec as gridspec +import os from tqdm import tqdm -from sklearn.externals import joblib +import joblib +#from sklearn.externals import joblib from sklearn import preprocessing from sklearn.metrics import confusion_matrix -from keras.layers import BatchNormalization, Conv2D, Dense, Flatten, MaxPooling2D, Concatenate, SeparableConv2D, Dropout +from tensorflow.keras.layers import BatchNormalization, Conv2D, Dense, Flatten, MaxPooling2D, Concatenate, SeparableConv2D, Dropout +from itertools import product +import gdal +from apply_cover_model import apply_model +import warnings +warnings.filterwarnings('ignore') - -#mpl.use('Agg') +mpl.use('Agg') def main(): + file_path = '~/Google Drive File Stream/My Drive/CB_share/NEON/cover_classification/extraction_output_20201106/cover_extraction.csv' + #file_path = 'data/cover_extraction_20201021.csv' + layers_range = [2] + node_range = [250] + dropout_range = [0.4] + epochs_per_save = 20 + iterations = 1 + run_name = 'data_splits_9' # with scaling, weighting, and shade masking + run_name = 'data_splits_10' # with scaling, weighting and no shade masking + run_name = 'data_splits_11' # with scaling, weighting and inverted shade masking + run_name = 'data_splits_12' # with scaling, weighting and shade masking, without bn + run_name = 'data_splits_13' # with scaling, weighting, shade masking, no batch normalization, with bn + run_name = 'data_splits_14' # with scaling, weighting, no shade masking, no batch normalization, with bn, change sigmoid to linear + run_name = 'data_splits_8' + run_name = 'data_splits_9' + data_munge_dir = 'munged/' + run_name + '.npz' + output_filename = 'output/' + run_name + '.npz' + + + scaling=True + brightness_norm=True + + # only reimport and munge data if this has not already been done, otherwise import data to save compute time + if os.path.isfile(data_munge_dir): + npzf = np.load(data_munge_dir, allow_pickle=True) + refl = npzf['refl'] + Y = npzf['Y'] + test = npzf['test'] + train = npzf['train'] + weights = npzf['weights'] + covertype = npzf['covertype'] + y_labels = npzf['y_labels'].tolist() + else: + refl, Y, test, train, weights, covertype, y_labels = manage_datasets(file_path, run_name, shade_mask=False, + category=None, scaling=scaling, + brightness_norm=brightness_norm) + + np.savez(data_munge_dir, refl=refl, Y=Y, test=test, train=train, weights=weights, covertype=covertype, y_labels=y_labels) + + # Run + preds, dim_names = nn_scenario_test(output_filename, refl, Y, weights, test, train, y_labels, covertype, run_name, + n_epochs=epochs_per_save, its=iterations, layers_range=layers_range, + node_range=node_range, dropout_range=dropout_range, classes=Y.shape[1], + output_activation='sigmoid') + + ##plotting_model_fits(Y, test, covertype, layers_range, node_range, dropout_range, y_labels) + # for cover in y_labels: + # plotting_model_fits_singleclass(output_filename, test, covertype, layers_range, node_range, dropout_range, + # matchcover=cover, classlabels=y_labels) + + plot_confusion_matrix(output_filename, train, np.argmax(Y,axis=1), layers_range, node_range, dropout_range, y_labels) + + scaling_file=None + if scaling: + scaling_file='output/trained_models/nn_cover_scaler_' + run_name + '.pkl' + if os.path.isfile(scaling_file) is False: + raise AttributeError(f'cant find scaling file: {scaling_file}') + + model_file = f'output/trained_models/cover_model{run_name}_nl_{layers_range[0]}_dr_{dropout_range[0]}_nn_{node_range[0]}_it_{iterations-1}.h5' + if os.path.isfile(model_file) is False: + raise AttributeError(f'cant find model file: {model_file}') + + apply_model(model_file,'data_subset/refl_subset','data_subset/test_out.tif',bn=brightness_norm, scaler=scaling_file, argmax=True) + + + + + + +def manage_datasets(import_data, run_name, category='aspen', weighting=False, scaling=False, wtrl_include=False, + tch_include=False, shade_mask=True, brightness_norm=True): - layers_range=[2, 4] - node_range = [5, 10] - dropout_range = [0, 4] - refl, Y, test, train, weights = manage_datasets('~/Google Drive File Stream/My Drive/CB_share/NEON/cover_classification/extraction_output/cover_extraction.csv') - #preds, dim_names = nn_scenario_test(refl, Y, weights, test, train, n_epochs=2, its=10, layers_range=layers_range, - # node_range=node_range, dropout_range=dropout_range) - plotting_model_fits(Y, layers_range, node_range, dropout_range) - - -def manage_datasets(import_data, category='aspen', weighting=False): # Import extraction csv data_set = pd.read_csv(import_data) # extract x y coordinates for each pixel xy = np.array(data_set[['X_UTM', 'Y_UTM']]) - #shade = np.array(data_set['ered_B_1']).flatten() - #tch = np.array(data_set['_tch_B_1']).flatten() + shade = np.array(data_set['hade_B_1']).flatten() + tch = np.array(data_set['h_me_B_1']).flatten() + wtrl = np.array(data_set['wtrl_B_1']).flatten() # extract reflectance data from csv refl = np.array(data_set)[:, -427:-1].astype(np.float32) @@ -44,10 +113,6 @@ def manage_datasets(import_data, category='aspen', weighting=False): covertype = np.array(data_set[['covertype']]).flatten() print(np.unique(covertype)) - # Identifying aspen in boolian vector format - aspen = np.zeros(len(xy)).astype(bool) - aspen[covertype == category] = True - # Managing bad bands bad_bands_refl = np.zeros(426).astype(bool) bad_bands_refl[:8] = True @@ -57,22 +122,44 @@ def manage_datasets(import_data, category='aspen', weighting=False): refl[:, bad_bands_refl] = np.nan refl = refl[:, np.all(np.isnan(refl) == False, axis=0)] + # indexing good pixels for inclusion good_data = np.ones(len(xy)).astype(bool) - #good_data[shade == 0] = False + if shade_mask: + good_data[shade == 0] = False good_data = good_data.flatten() + # if there are any nans in the entire row, remove that pixel + good_data[np.any(np.isnan(refl), axis=1)] = False + good_data[np.all(refl == 0, axis=1)] = False + # Keep only data from good pixels refl = refl[good_data, ...] - aspen = aspen[good_data, ...] + covertype = covertype[good_data, ...] xy = xy[good_data, :] + tch = tch[good_data] + wtrl = wtrl[good_data] + tch = tch.reshape((-1,1)) + wtrl = wtrl.reshape((-1,1)) + + if category is not None: + Y = np.zeros((len(covertype),2)).astype(bool) + Y[:,1] = covertype == category + Y[:,0] = covertype != category + y_labels = ['not ' + category, category] + else: + # If None, one-hot-encode + unique_categories = np.unique(covertype) + Y = np.zeros((len(covertype), len(unique_categories))).astype(bool) + for _cat, cat in enumerate(unique_categories): + Y[:,_cat] = covertype == cat + y_labels = list(unique_categories) - Y = (aspen == True).reshape(-1, 1) np.random.seed(13) perm = np.random.permutation(Y.shape[0]) train = np.zeros(perm.shape).astype(bool) - n_xstep = 100 - n_ystep = 100 + n_xstep = 1000 + n_ystep = 1000 x_space = np.linspace(np.min(xy[:, 0]), np.max(xy[:, 0]), n_xstep) y_space = np.linspace(np.min(xy[:, 1]), np.max(xy[:, 1]), n_ystep) grids = np.zeros((len(y_space), len(x_space))).flatten() @@ -90,54 +177,59 @@ def manage_datasets(import_data, category='aspen', weighting=False): print('Fraction Training Data: {}'.format((np.sum(train) / float(len(train))))) print('Fraction Testing Data: {}'.format((np.sum(test) / float(len(train))))) - #initialize weights vector and set to one for use in case where weighting == False - weights = np.zeros(Y.shape[0]) - weights[:] = 1 - - # If weighting is needed or desired, adapt code here - if weighting == True: - weights = np.zeros(Y.shape[0]) - needles_w = float(len(Y[train]))/float(np.sum(Y == 1))**0.8 - noneedles_w = float(len(Y[train]))/float(np.sum(Y == 0))**0.8 - print('needles_weight: {}'.format(needles_w/(needles_w+noneedles_w))) - print('noneedles_weight: {}'.format(noneedles_w/(needles_w+noneedles_w))) - weights[Y.flatten() == 1] = needles_w / (needles_w+noneedles_w) * 100 - weights[Y.flatten() == 0] = noneedles_w / (needles_w+noneedles_w) * 100 + for cover in np.unique(covertype): + fraction = 100*np.sum(covertype[train] == cover) / len(covertype[train]) + print(f'% Training data is {cover}: {fraction}') + for cover in np.unique(covertype): + fraction = 100*np.sum(covertype[test] == cover) / len(covertype[test]) + print(f'% Testing data is {cover}: {fraction}') + + # initialize weights vector and set to one for use in case where weighting == False + weights = np.ones(Y.shape[0]) + if weighting: + standardized_count = len(covertype[train]) / float(len(y_labels)) + for _cover, cover in enumerate(y_labels): + w = standardized_count / np.sum(covertype[train] == cover) + weights[cover == covertype] = w + print(f'cover: {cover}, weight: {w}') # brightness normalize - brightness = np.sqrt(np.mean(np.power(refl, 2), axis=-1)) - refl = refl / brightness[:, np.newaxis] + if brightness_norm: + brightness = np.sqrt(np.mean(np.power(refl, 2), axis=-1)) + refl = refl / brightness[:, np.newaxis] + if wtrl_include: + refl = np.append(refl, wtrl, axis=-1) + if tch_include: + refl = np.append(refl, tch, axis=-1) # Scale brightness normalized reflectance data and save scaling information - scaler = preprocessing.StandardScaler() - scaler.fit(refl[train, :]) - refl = scaler.transform(refl) - joblib.dump(scaler, 'output/trained_models/nn_aspen_scaler') + if scaling: + scaler = preprocessing.StandardScaler() + scaler.fit(refl[train, :]) + refl = scaler.transform(refl) + joblib.dump(scaler, 'output/trained_models/nn_cover_scaler_' + run_name + '.pkl') # Return outputs of function - return refl, Y, test, train, weights - - - - # Create NN model structure, and compile. Ultimate structure desided after pretty - # extensive (heuristically guided) testing + return refl, Y, test, train, weights, covertype, y_labels +# Create NN model structure, and compile. Ultimate structure desided after pretty +# extensive (heuristically guided) testing def nn_model(refl, num_layers, num_nodes, classes, dropout, loss_function, output_activation): inlayer = keras.layers.Input(shape=(refl.shape[1],)) output_layer = inlayer - # defining internal layer structure + # defining internal layer structure for n in range(num_layers): output_layer = Dense(units=num_nodes)(output_layer) # Activation: makes it non-linear, remove line for nested linear models. many options here. output_layer = keras.layers.LeakyReLU(alpha=0.3)(output_layer) - #Regularization term: Removes nodes that are underutilized - more likely to need adjustment than leaky + # Regularization term: Removes nodes that are underutilized - more likely to need adjustment than leaky output_layer = Dropout(dropout)(output_layer) - #Normalization: amplifys signal by normalizing finite differences to look larger. consider turning this off + # Normalization: amplifys signal by normalizing finite differences to look larger. consider turning this off output_layer = BatchNormalization()(output_layer) # Activation for output layer defined here: sigmoid forces the results to look more binary. Could also be linear. @@ -146,18 +238,19 @@ def nn_model(refl, num_layers, num_nodes, classes, dropout, loss_function, outpu # Initializing the model structure model = keras.models.Model(inputs=[inlayer], outputs=[output_layer]) - # Optimization function and loss functions defined here - leave as is for now - model.compile(loss=loss_function, optimizer='adam') # change loss function to categorical_crossentropy + # Optimization function and loss functions defined here - leave as is for now + optimizer=keras.optimizers.Adam(learning_rate=0.001) + model.compile(loss=loss_function, optimizer=optimizer) # change loss function to categorical_crossentropy return model -def nn_scenario_test(refl, Y, weights, test, train, layers_range=[4], node_range=[400], classes=2, dropout_range=[0.4], - loss_function='binary_crossentropy', output_activation='sigmoid', n_epochs=5, its=20): - # reformat Y data for crossentropy loss function - cY = np.hstack([Y, 1-Y]) +def nn_scenario_test(output_filename, refl, Y, weights, test, train, y_labels, covertype, run_name, + layers_range=[4], node_range=[400], classes=2, dropout_range=[0.4], + loss_function='categorical_crossentropy', output_activation='sigmoid', n_epochs=5, its=20): predictions = np.zeros((len(layers_range), len(dropout_range), len(node_range), len(range(its)), len(Y))).astype(np.float32) + predictions[...] = np.nan dim_names = ['layers', 'dropout', 'node', 'iteration'] # Run through and train model in 5 epoch steps - basically instituting a manual stopping criteria @@ -173,28 +266,297 @@ def nn_scenario_test(refl, Y, weights, test, train, layers_range=[4], node_range print('layers {}, nodes {}, dropout {}, iteration {}'.format(nl, nn, dr, _i)) # weights - this is to even out the importance of small classes - # needs to be updated for categorical rather than binary - model.fit(refl[train, ...], cY[train, ...], epochs=n_epochs, sample_weight=weights[train], - validation_data=(refl[test, ...], cY[test, ...], weights[test]), + model.fit(refl[train, ...], Y[train, ...], epochs=n_epochs, sample_weight=weights[train], + validation_data=(refl[test, ...], Y[test, ...], weights[test]), batch_size=1000) # can be adjusted if getting memory errors pred = model.predict(refl) - pred = 1 - np.argmax(pred, axis=1) + pred = np.argmax(pred, axis=1) predictions[_nl, _dr, _nn, _i, :] = pred - out_name = 'output/test_output.npz' - np.savez(out_name, predictions=predictions, dim_names=dim_names) + np.savez(output_filename, predictions=predictions, dim_names=dim_names) + model.save(f'output/trained_models/cover_model{run_name}_nl_{nl}_dr_{dr}_nn_{nn}_it_{_i}.h5') + + for cover in y_labels: + plotting_model_fits_singleclass(output_filename, test, covertype, layers_range, node_range, dropout_range, + matchcover=cover, classlabels=y_labels) return predictions, dim_names -def plotting_model_fits(layers_range, node_range, dropout_range): - npzf = np.load('output/test_output.npz') +def plotting_model_fits(output_filename, to_plot, covertype, layers_range, node_range, dropout_range, y_labels): + npzf = np.load(output_filename) predictions = npzf['predictions'] dim_names = npzf['dim_names'] - print(dim_names) - these_are_my_predictions = predictions[:, :, node_range.index(10), :] - print(these_are_my_predictions.shape) + # Predictions has dimensions: layers, dropout, nodes, iterations, predictions + + # To limit the predictions to only those that we want to plot (probably the test set) based on the 'to_plot' variable, + # we can take a slice in the samples dimension, as: + predictions = predictions[..., to_plot] # this is the same as predictions[:,:,:,:,to_plot] + + # Do the same thing for the Y (truth) and for the covertype + covertype = covertype[to_plot] + + # Now let's calculate the true positives, false_positives, etc. + # This is how you'd do it for Y + #true_positives = np.sum(np.logical_and(predictions == Y, Y == 1), axis=-1) + #false_positives = np.sum(np.logical_and(predictions != Y, predictions == 1), axis=-1) + #true_negatives = np.sum(np.logical_and(predictions == Y, Y == 0), axis=-1) + #false_negatives = np.sum(np.logical_and(predictions != Y, predictions == 0), axis=-1) + + # But to be interesting, let's do it for the covertype + #un_covertype = np.unique(covertype) + for _c, cover in enumerate(y_labels): + # defining the index where covertype is one of the unique covers + cover_Y = covertype == cover + + # all these are being done over the entire 5-D array and result in 4-D arrays for each + + # defining where cover is equal to this class and where this class is predicted as aspen. + true_positives = np.nansum(np.logical_and(predictions == cover_Y, cover_Y == _c), axis=-1) + + # prediction is aspen, actual is not this cover type - only useful for aspen + false_positives = np.nansum(np.logical_and(predictions != cover_Y, predictions == 1), axis=-1) + + # prediction is not aspen, cover is this cover type + true_negatives = np.nansum(np.logical_and(predictions == cover_Y, cover_Y == 0), axis=-1) + + # prediction is not aspen, actual is not this cover type - only meaningful for aspen now + false_negatives = np.nansum(np.logical_and(predictions != cover_Y, predictions == 0), axis=-1) + # Dimensions of the above sums are: layers, dropout, nodes, iterations + + # And some bulk numbers about the particular cover type + num_cover = np.nansum(cover_Y) + num_not_cover = np.nansum(np.logical_not(cover_Y)) + + # Now lets make some aggregate plots + axis_names = ['Layers','Dropout','Nodes'] + axis_legends = [layers_range, node_range, dropout_range] + gs = gridspec.GridSpec(ncols=len(axis_names), nrows=2, wspace=0.1, hspace=0.4) + fig = plt.figure(figsize=(4*len(axis_names)*1.1, 4)) + + for _ax, axname in enumerate(axis_names): + + + sumaxis = [0,1,2] + sumaxis.pop(_ax) + # Do layers TPR (axis 0) + ax = fig.add_subplot(gs[0,_ax]) + # averaged across two of the axes - tuple is required instead of list for denoting multiple axes to sum over + mean_slice = np.nanmean(true_positives / num_cover, axis=tuple(sumaxis)) + # transpose to allow different treatments to be in second axis and iterations in first for plotting + # this is because we want the iterations on the x axis + plt.plot(np.transpose(mean_slice)) + plt.xlabel('Iteration') + plt.ylabel('True Positive Rate') + plt.title(axname) + plt.legend(axis_legends[_ax]) + + # Do layers FPP (False positives / # true elements) + ax = fig.add_subplot(gs[1,_ax]) + plt.plot(np.transpose(np.nanmean(false_positives / num_cover, axis=tuple(sumaxis)))) + plt.xlabel('Iteration') + plt.ylabel('False Positive Rate Prime') + plt.title(axname) + plt.legend(axis_legends[_ax]) + + baseout = os.path.splitext(os.path.basename(output_filename))[0] + plt.savefig(f'figs/{baseout}_{cover}.png', dpi=200, bbox_inches='tight') + + +def plotting_model_fits_singleclass(output_filename, to_plot, covertype, layers_range, node_range, dropout_range, matchcover, classlabels): + npzf = np.load(output_filename) + predictions = npzf['predictions'] + dim_names = npzf['dim_names'] + + # Predictions has dimensions: layers, dropout, nodes, iterations, predictions + + # To limit the predictions to only those that we want to plot (probably the test set) based on the 'to_plot' variable, + # we can take a slice in the samples dimension, as: + predictions = predictions[..., to_plot] # this is the same as predictions[:,:,:,:,to_plot] + + # Do the same thing for the Y (truth) and for the covertype + covertype = covertype[to_plot] + + # But to be interesting, let's do it for the covertype + + # Now lets make some aggregate plots + axis_names = ['Layers', 'Dropout', 'Nodes'] + axis_legends = [layers_range, dropout_range, node_range] + fig = plt.figure(figsize=(4 * len(axis_names)*1.2, 4 * (len(classlabels)+1))) + gs = gridspec.GridSpec(ncols=len(axis_names), nrows=len(classlabels)+1, wspace=0.1, hspace=0.4) + # defining where cover is equal to this class and where this class is predicted as aspen. + true_positives = np.nansum(np.logical_and(predictions == classlabels.index(matchcover), covertype == matchcover), axis=-1) + + # falsely predicted 0 when this class was matchcover + false_negatives = np.nansum(np.logical_and(predictions != classlabels.index(matchcover), covertype == matchcover), axis=-1) + + + for _cover, cover in enumerate(classlabels): + + # prediction is of class matchcover, actual is of multiple classes. + false_positives = np.nansum(np.logical_and(covertype == cover, predictions == classlabels.index(matchcover)), axis=-1) + + # And some bulk numbers about the particular cover type + num_cover = np.nansum(covertype == matchcover) + num_not_cover = np.nansum(covertype != matchcover) + + for _ax, axname in enumerate(axis_names): + sumaxis = [0,1,2] + sumaxis.pop(_ax) + + if cover == matchcover: + # Do TPR + ax = fig.add_subplot(gs[0, _ax]) + # averaged across two of the axes - tuple is required instead of list for denoting multiple axes to sum over + mean_slice = np.nanmean(true_positives / num_cover, axis=tuple(sumaxis)) + # transpose to allow different treatments to be in second axis and iterations in first for plotting + # this is because we want the iterations on the x axis + plt.plot(np.transpose(mean_slice)) + plt.xlabel('Iteration') + if _ax == 0: + plt.ylabel('True Positive Rate') + plt.title(axname) + plt.legend(axis_legends[_ax]) + plt.ylim([-0.05, 1.05]) + + # Do false negatives + ax = fig.add_subplot(gs[1, _ax]) + # averaged across two of the axes - tuple is required instead of list for denoting multiple axes to sum over + mean_slice = np.nanmean(false_negatives / num_cover, axis=tuple(sumaxis)) + + # transpose to allow different treatments to be in second axis and iterations in first for plotting + # this is because we want the iterations on the x axis + plt.plot(np.transpose(mean_slice)) + plt.xlabel('Iteration') + if _ax == 0: + plt.ylabel('False negative rate') + plt.title(axname) + plt.legend(axis_legends[_ax]) + plt.ylim([-0.05, 1.05]) + + else: + # Do per-class false positives + offset = 0 + if classlabels.index(matchcover) < _cover: + offset = -1 + ax = fig.add_subplot(gs[2 + _cover + offset,_ax]) + plt.plot(np.transpose(np.nanmean(false_positives / num_cover, axis=tuple(sumaxis)))) + plt.xlabel('Iteration') + if _ax == 0: + plt.ylabel(f'Predicted {cover} but actually {matchcover}\n relative to true {matchcover}') + plt.title(axname) + plt.legend(axis_legends[_ax]) + plt.ylim([-0.05, 1.05]) + + baseout = os.path.splitext(os.path.basename(output_filename))[0] + plotname = f'figs/multiclass/{baseout}_{matchcover}_class_breakout.png' + print(f'Saving {plotname}') + plt.savefig(plotname, dpi=200, bbox_inches='tight') + plt.clf() + del fig + + +def add_cm_plot(cm, ax, display_labels=None, cmap='viridis', include_values=True, values_format=None, xticks_rotation='vertical'): + # Borrowed in large part from https://github.com/scikit-learn/scikit-learn/blob/0fb307bf3/sklearn/metrics/_plot/confusion_matrix.py#L135 + n_classes = cm.shape[0] + im_ = ax.imshow(cm, interpolation='nearest', cmap=cmap) + text_ = None + cmap_min, cmap_max = im_.cmap(0), im_.cmap(256) + + if include_values: + text_ = np.empty_like(cm, dtype=object) + + # print text with appropriate color depending on background + thresh = (cm.max() + cm.min()) / 2.0 + + for i, j in product(range(n_classes), range(n_classes)): + color = cmap_max if cm[i, j] < thresh else cmap_min + + if values_format is None: + text_cm = format(cm[i, j], '.2g') + if cm.dtype.kind != 'f': + text_d = format(cm[i, j], 'd') + if len(text_d) < len(text_cm): + text_cm = text_d + else: + text_cm = format(cm[i, j], values_format) + + text_[i, j] = ax.text( + j, i, text_cm, + ha="center", va="center", + color=color) + + if display_labels is None: + display_labels = np.arange(n_classes) + else: + display_labels = display_labels + + plt.colorbar(im_, ax=ax) + ax.set(xticks=np.arange(n_classes), + yticks=np.arange(n_classes), + xticklabels=display_labels, + yticklabels=display_labels, + ylabel="True label", + xlabel="Predicted label") + + ax.set_ylim((n_classes - 0.5, -0.5)) + plt.setp(ax.get_xticklabels(), rotation=xticks_rotation) + + +def plot_confusion_matrix(output_filename, train, covertype, layers_range, node_range, dropout_range, classlabels): + npzf = np.load(output_filename) + predictions = npzf['predictions'] + dim_names = npzf['dim_names'] + + + for _nl, nl in enumerate(layers_range): + + for _dr, dr in enumerate(dropout_range): + + for _nn, nn in enumerate(node_range): + fig = plt.figure(figsize=(13,4)) + gs = gridspec.GridSpec(ncols=2, nrows=1, wspace=0.1, hspace=0.6) + baseout = os.path.splitext(os.path.basename(output_filename))[0] + + ax = fig.add_subplot(gs[0,0]) + + pred = predictions[_nl, _dr, _nn, -1, :] + cm = confusion_matrix(covertype[train], pred[train]) + + add_cm_plot(cm, ax, classlabels) + plt.title('Train') + np.savetxt(f'figs/cm/{baseout}_nl_{nl}_dr_{dr}_nn_{nn}_class_breakout_train.csv',cm,delimiter=',') + + + + ax = fig.add_subplot(gs[0,1]) + + cm = confusion_matrix(covertype[np.logical_not(train)], pred[np.logical_not(train)]) + + add_cm_plot(cm, ax, classlabels) + plt.title('Test') + + np.savetxt(f'figs/cm/{baseout}_nl_{nl}_dr_{dr}_nn_{nn}_class_breakout_test.csv',cm,delimiter=',') + + plotname = f'figs/cm/{baseout}_nl_{nl}_dr_{dr}_nn_{nn}_class_breakout.png' + print(f'Saving {plotname}') + plt.savefig(plotname, dpi=200, bbox_inches='tight') + + + plt.clf() + del fig + + + + + + +# true_positives = predictions[...,to_plot] - Y[np.newaxis,np.newaxis, np.newaxis, to_plot] + + +# print(these_are_my_predictions.shape) diff --git a/vector_data/aspen/CRBU2018_AOP_aspen_additional.geojson b/vector_data/aspen/CRBU2018_AOP_aspen_additional.geojson index 9e143f6..6c3b44e 100644 --- a/vector_data/aspen/CRBU2018_AOP_aspen_additional.geojson +++ b/vector_data/aspen/CRBU2018_AOP_aspen_additional.geojson @@ -3,34 +3,152 @@ "name": "CRBU2018_AOP_aspen_additional", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::32613" } }, "features": [ -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324766.141046695469413, 4308690.95684609003365 ], [ 324843.186887803371064, 4308698.906020172871649 ], [ 324852.970486674224958, 4308629.809353147633374 ], [ 324776.536120495758951, 4308629.809353147633374 ], [ 324766.141046695469413, 4308690.95684609003365 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325507.75947355752578, 4308436.98140187561512 ], [ 325546.094525039836299, 4308449.087207606993616 ], [ 325565.598323162470479, 4308406.04434278421104 ], [ 325527.599544061522465, 4308392.929719909094274 ], [ 325507.75947355752578, 4308436.98140187561512 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325965.579380236275028, 4308582.414270833134651 ], [ 325978.842982945148833, 4308576.925883505493402 ], [ 325964.207283404306509, 4308555.429699804633856 ], [ 325949.571583863464184, 4308565.491743239574134 ], [ 325965.579380236275028, 4308582.414270833134651 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 326026.866372063406743, 4308647.360187545418739 ], [ 326045.618362100096419, 4308634.553950447589159 ], [ 326041.044705993612297, 4308627.236100677400827 ], [ 326023.207447178196162, 4308637.755509722046554 ], [ 326026.866372063406743, 4308647.360187545418739 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325990.734488822054118, 4308662.453252697363496 ], [ 326002.168629088322632, 4308667.026908803731203 ], [ 326012.688038133259397, 4308655.592768537811935 ], [ 325999.881801035022363, 4308651.019112430512905 ], [ 325990.734488822054118, 4308662.453252697363496 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325992.10658565396443, 4308593.848411099985242 ], [ 326002.168629088322632, 4308595.220507931895554 ], [ 326002.625994698959403, 4308581.042174001224339 ], [ 325992.10658565396443, 4308579.670077169314027 ], [ 325992.10658565396443, 4308593.848411099985242 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328161.293947085971013, 4309397.892947756685317 ], [ 328203.85718228504993, 4309398.360675616189837 ], [ 328195.438080817111768, 4309362.813358306884766 ], [ 328159.423035648593213, 4309364.684269743971527 ], [ 328161.293947085971013, 4309397.892947756685317 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327773.836716985679232, 4309550.068993180058897 ], [ 327796.014818870811723, 4309548.719021760858595 ], [ 327793.507729092496447, 4309534.062189211137593 ], [ 327774.993835344910622, 4309539.076368767768145 ], [ 327773.836716985679232, 4309550.068993180058897 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327803.150382085994352, 4309551.226111539639533 ], [ 327817.421508516476024, 4309550.84040541946888 ], [ 327818.000067696091719, 4309541.004899366758764 ], [ 327805.271765744604636, 4309541.583458545617759 ], [ 327803.150382085994352, 4309551.226111539639533 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327757.251353836792987, 4309572.054242005571723 ], [ 327787.9149903562502, 4309574.94703790359199 ], [ 327792.929169912880752, 4309558.168821695260704 ], [ 327764.96547623159131, 4309554.504613557830453 ], [ 327757.251353836792987, 4309572.054242005571723 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327739.563559635542333, 4309478.083849005401134 ], [ 327776.701237008266617, 4309479.379349378868937 ], [ 327776.269403550482821, 4309451.742008078843355 ], [ 327740.427226551168133, 4309451.310174620710313 ], [ 327739.563559635542333, 4309478.083849005401134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327874.342674199840985, 4309265.355111845768988 ], [ 327927.67275068332674, 4309263.537041055969894 ], [ 327893.735429284744896, 4309222.933460097759962 ], [ 327851.313777536503039, 4309234.447908429428935 ], [ 327874.342674199840985, 4309265.355111845768988 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327990.69920470926445, 4309190.814209488220513 ], [ 328021.000384529470466, 4309194.450351065956056 ], [ 328029.484714879130479, 4309166.573265631683171 ], [ 327992.517275498481467, 4309158.088935282081366 ], [ 327990.69920470926445, 4309190.814209488220513 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328961.874596486857627, 4309890.001770307309926 ], [ 328991.506459971889853, 4309879.465996623039246 ], [ 328973.727341880905442, 4309842.590788731351495 ], [ 328948.704879382450599, 4309851.151104848831892 ], [ 328961.874596486857627, 4309890.001770307309926 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 329826.931181891821325, 4310865.39382481854409 ], [ 329876.547132232168224, 4310887.495475424453616 ], [ 329904.512486060324591, 4310809.012063068337739 ], [ 329872.93869948014617, 4310795.931494342163205 ], [ 329826.931181891821325, 4310865.39382481854409 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330479.257912007975392, 4311405.904012678191066 ], [ 330500.69785985595081, 4311418.767981386743486 ], [ 330516.896931563329417, 4311387.799167828634381 ], [ 330499.268529999419115, 4311380.176075261086226 ], [ 330479.257912007975392, 4311405.904012678191066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330368.650504180637654, 4312484.077839573845267 ], [ 330385.172159723588265, 4312486.507494800724089 ], [ 330388.087745995842852, 4312457.837563123553991 ], [ 330370.108297316764947, 4312459.781287305057049 ], [ 330368.650504180637654, 4312484.077839573845267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324823.043078119691927, 4308665.297453124076128 ], [ 324842.587555832462385, 4308668.539866980165243 ], [ 324843.700281958910637, 4308633.523941624909639 ], [ 324825.819826449791435, 4308634.984617187641561 ], [ 324823.043078119691927, 4308665.297453124076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325543.656478898599744, 4308415.551766534335911 ], [ 325558.235028366616461, 4308418.656457624398172 ], [ 325562.014652302779723, 4308406.237693263217807 ], [ 325542.306613207154442, 4308401.783136481419206 ], [ 325543.656478898599744, 4308415.551766534335911 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325965.579380236275028, 4308582.414270833134651 ], [ 325974.495735590811819, 4308577.697665299288929 ], [ 325967.587807380303275, 4308560.259019770659506 ], [ 325952.95210783946095, 4308570.321063205599785 ], [ 325965.579380236275028, 4308582.414270833134651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 326025.659042071958538, 4308644.221129567362368 ], [ 326044.411032108648214, 4308631.414892469532788 ], [ 326041.044705993612297, 4308627.236100677400827 ], [ 326023.207447178196162, 4308637.755509722046554 ], [ 326025.659042071958538, 4308644.221129567362368 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 326014.893324255477637, 4308622.35105062648654 ], [ 326016.874408369127195, 4308628.994721008464694 ], [ 326023.946043779142201, 4308620.942849811166525 ], [ 326021.934328329400159, 4308617.522933547385037 ], [ 326014.893324255477637, 4308622.35105062648654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325993.677524816244841, 4308594.848441547714174 ], [ 326000.221899963740725, 4308594.622773439623415 ], [ 326000.673236180853564, 4308581.98535936139524 ], [ 325994.128861033299472, 4308581.98535936139524 ], [ 325993.677524816244841, 4308594.848441547714174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328172.31508169247536, 4309382.605567496269941 ], [ 328190.347404380328953, 4309383.251055591739714 ], [ 328186.905589508882258, 4309362.280077600851655 ], [ 328175.421456851589028, 4309363.973228801973164 ], [ 328172.31508169247536, 4309382.605567496269941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": null }, +{ "type": "Feature", "properties": { "id": null }, "geometry": null }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327772.282269645191263, 4309564.279776220209897 ], [ 327787.315416736761108, 4309564.408264656551182 ], [ 327787.829370483465027, 4309556.570470019243658 ], [ 327772.410758081881795, 4309556.185004709288478 ], [ 327772.282269645191263, 4309564.279776220209897 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": null }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327901.204159137269016, 4309260.025452135130763 ], [ 327921.502599990053568, 4309257.50110590737313 ], [ 327903.542003150796518, 4309231.674102022312582 ], [ 327887.981836339982692, 4309237.858890643343329 ], [ 327901.204159137269016, 4309260.025452135130763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327993.628114578430541, 4309182.949985557235777 ], [ 328015.423969712748658, 4309193.594472948461771 ], [ 328017.958371472544968, 4309174.839899925515056 ], [ 327995.655635986244306, 4309165.209173238836229 ], [ 327993.628114578430541, 4309182.949985557235777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328961.874596486857627, 4309890.001770307309926 ], [ 328982.139645787479822, 4309883.361588085070252 ], [ 328973.085748596640769, 4309871.289725163951516 ], [ 328958.666578996926546, 4309878.666974728927016 ], [ 328961.874596486857627, 4309890.001770307309926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 329861.454134377243463, 4310876.806314654648304 ], [ 329872.414685521565843, 4310877.991239103488624 ], [ 329904.512486060324591, 4310809.012063068337739 ], [ 329890.484783354157116, 4310805.414616661146283 ], [ 329861.454134377243463, 4310876.806314654648304 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330479.257912007975392, 4311405.904012678191066 ], [ 330497.118844859011006, 4311417.449396913871169 ], [ 330513.317916566389613, 4311386.480583355762064 ], [ 330499.268529999419115, 4311380.176075261086226 ], [ 330479.257912007975392, 4311405.904012678191066 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": null }, { "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330406.067194674920756, 4312429.167631446383893 ], [ 330422.102919172437396, 4312428.195769355632365 ], [ 330424.046643353998661, 4312403.899217085912824 ], [ 330414.328022446366958, 4312393.694665133021772 ], [ 330400.236022130353376, 4312392.722803042270243 ], [ 330406.067194674920756, 4312429.167631446383893 ] ] ] ] } }, { "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330461.463333848281763, 4312442.773700716905296 ], [ 330491.105127616494428, 4312433.055079809390008 ], [ 330478.956851481983904, 4312417.019355311989784 ], [ 330460.977402802905999, 4312421.878665765747428 ], [ 330461.463333848281763, 4312442.773700716905296 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 331344.297750625002664, 4312565.303806745447218 ], [ 331402.999346788914409, 4312583.36583633441478 ], [ 331417.110307405237108, 4312548.935092430561781 ], [ 331364.053095487877727, 4312529.179747567512095 ], [ 331344.297750625002664, 4312565.303806745447218 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 331309.302568296552636, 4312611.023319141939282 ], [ 331356.715395967359655, 4312612.152195991948247 ], [ 331359.537588090635836, 4312583.36583633441478 ], [ 331314.946952543046791, 4312575.463698389008641 ], [ 331309.302568296552636, 4312611.023319141939282 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 332256.385699909878895, 4312853.116426321677864 ], [ 332320.323574584326707, 4312856.132363806478679 ], [ 332322.133137075114064, 4312824.766613965854049 ], [ 332269.655824842280708, 4312820.544301487505436 ], [ 332256.385699909878895, 4312853.116426321677864 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 331357.781718444952276, 4312548.601098723709583 ], [ 331401.902863325958606, 4312566.67482072301209 ], [ 331404.02918356115697, 4312550.195838900282979 ], [ 331365.755419327062555, 4312534.248437135480344 ], [ 331357.781718444952276, 4312548.601098723709583 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 331305.155292623094283, 4312626.743367368355393 ], [ 331332.797455681080464, 4312626.743367368355393 ], [ 331335.455355975078419, 4312616.643346250988543 ], [ 331312.06583338760538, 4312610.264385545626283 ], [ 331305.155292623094283, 4312626.743367368355393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 332281.64665679843165, 4312854.419741536490619 ], [ 332306.580175958690234, 4312854.481112649664283 ], [ 332304.018726186593994, 4312831.369730651378632 ], [ 332279.612832308572251, 4312831.369730651378632 ], [ 332281.64665679843165, 4312854.419741536490619 ] ] ] ] } }, { "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 326129.772368261299562, 4312950.036472087725997 ], [ 326147.842757442209404, 4312952.516721582971513 ], [ 326148.551400155178271, 4312936.926581897772849 ], [ 326131.189653687237296, 4312935.50929647218436 ], [ 326129.772368261299562, 4312950.036472087725997 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328154.635785001621116, 4314563.128474237397313 ], [ 328179.418739819957409, 4314578.148446855135262 ], [ 328199.195037099241745, 4314560.374812590889633 ], [ 328164.649100079725031, 4314542.350845450535417 ], [ 328154.635785001621116, 4314563.128474237397313 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328171.957662902073935, 4314571.275960970669985 ], [ 328182.516757222358137, 4314572.494318007491529 ], [ 328183.328995246964041, 4314554.218962453305721 ], [ 328176.83109104988398, 4314554.625081465579569 ], [ 328171.957662902073935, 4314571.275960970669985 ] ] ] ] } }, { "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 331820.709859439171851, 4304028.562977111898363 ], [ 331910.35640372306807, 4304029.342512279748917 ], [ 331908.407565803849138, 4303966.589931280352175 ], [ 331824.217767693742644, 4303964.641093361191452 ], [ 331820.709859439171851, 4304028.562977111898363 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320858.204940037801862, 4302962.27229514438659 ], [ 320886.886523893044796, 4302964.345662652514875 ], [ 320886.195401390490588, 4302937.046323802322149 ], [ 320859.241623791633174, 4302936.009640048258007 ], [ 320858.204940037801862, 4302962.27229514438659 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321143.401640400232282, 4303575.121143761090934 ], [ 321183.922036106523592, 4303549.406277255155146 ], [ 321164.830695821845438, 4303530.314936970360577 ], [ 321145.34973634761991, 4303551.35437320265919 ], [ 321143.401640400232282, 4303575.121143761090934 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325424.566646355786361, 4318816.26026270352304 ], [ 325437.785269376938231, 4318817.277079859748483 ], [ 325439.141025584249292, 4318798.635432008653879 ], [ 325424.566646355786361, 4318796.262858645990491 ], [ 325424.566646355786361, 4318816.26026270352304 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325427.617097822192591, 4318854.899314612150192 ], [ 325441.852537998813204, 4318854.899314612150192 ], [ 325439.479964636033401, 4318836.935544865205884 ], [ 325428.294975925877225, 4318836.257666761055589 ], [ 325427.617097822192591, 4318854.899314612150192 ] ] ] ] } } +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320861.435019747004844, 4302962.582466474734247 ], [ 320880.329299988807179, 4302962.988795082084835 ], [ 320876.469178218976595, 4302937.186928515322506 ], [ 320859.241623791633174, 4302936.009640048258007 ], [ 320861.435019747004844, 4302962.582466474734247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321187.167031260032672, 4303561.339123426936567 ], [ 321197.19558968837373, 4303553.357209576293826 ], [ 321175.808153856487479, 4303548.956923735328019 ], [ 321175.296492712222971, 4303561.953116800636053 ], [ 321187.167031260032672, 4303561.339123426936567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325424.566646355786361, 4318816.26026270352304 ], [ 325437.785269376938231, 4318817.277079859748483 ], [ 325438.889722239633556, 4318806.327637311071157 ], [ 325424.585832390876021, 4318805.621272379532456 ], [ 325424.566646355786361, 4318816.26026270352304 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325427.617097822192591, 4318854.899314612150192 ], [ 325441.852537998813204, 4318854.899314612150192 ], [ 325439.479964636033401, 4318836.935544865205884 ], [ 325428.294975925877225, 4318836.257666761055589 ], [ 325427.617097822192591, 4318854.899314612150192 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330455.868134668155108, 4312354.135471254587173 ], [ 330465.127525004267227, 4312354.529487865045667 ], [ 330463.354450259066653, 4312333.055582617409527 ], [ 330455.474118058104068, 4312334.040624141693115 ], [ 330455.868134668155108, 4312354.135471254587173 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": null }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 332352.013601458806079, 4311697.366252344101667 ], [ 332361.898498271417338, 4311698.960590539500117 ], [ 332362.836056354921311, 4311687.996523165144026 ], [ 332347.549454511143267, 4311687.481355531141162 ], [ 332352.013601458806079, 4311697.366252344101667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 332336.070219502900727, 4311749.979412798769772 ], [ 332356.158880767296068, 4311749.341677520424128 ], [ 332356.158880767296068, 4311738.819045429117978 ], [ 332338.940028254932258, 4311738.500177790410817 ], [ 332336.070219502900727, 4311749.979412798769772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 322530.805309894727543, 4311640.448357965797186 ], [ 322534.494800590327941, 4311640.448357965797186 ], [ 322534.561882239300758, 4311638.033418601378798 ], [ 322531.073636490793433, 4311638.301745197735727 ], [ 322530.805309894727543, 4311640.448357965797186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 322593.148077517456841, 4311614.134890032932162 ], [ 322596.736104041279759, 4311614.267779903486371 ], [ 322596.736104041279759, 4311610.679753379896283 ], [ 322593.280967388709541, 4311610.413973637856543 ], [ 322593.148077517456841, 4311614.134890032932162 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 322520.097660255793016, 4311838.022015855647624 ], [ 322522.529798008443322, 4311838.022015855647624 ], [ 322522.608254064980429, 4311835.746790216304362 ], [ 322519.78383602964459, 4311835.982158386148512 ], [ 322520.097660255793016, 4311838.022015855647624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 322566.309415244089905, 4311835.558899767696857 ], [ 322570.484326603182126, 4311835.558899767696857 ], [ 322570.484326603182126, 4311831.62957142945379 ], [ 322565.941040712408721, 4311831.752362940460443 ], [ 322566.309415244089905, 4311835.558899767696857 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 322432.045308823580854, 4312019.004304113797843 ], [ 322439.146786262223031, 4312019.004304113797843 ], [ 322439.146786262223031, 4312013.364895559847355 ], [ 322432.045308823580854, 4312013.782629527151585 ], [ 322432.045308823580854, 4312019.004304113797843 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 322199.247399372165091, 4312232.35948396474123 ], [ 322202.013560926308855, 4312232.35948396474123 ], [ 322202.013560926308855, 4312229.372029486112297 ], [ 322199.136752910038922, 4312229.482675948180258 ], [ 322199.247399372165091, 4312232.35948396474123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 322148.869807834853418, 4311889.938457231037319 ], [ 322150.914323002449237, 4311889.980182030238211 ], [ 322150.99777260114206, 4311887.977391662076116 ], [ 322148.869807834853418, 4311887.977391662076116 ], [ 322148.869807834853418, 4311889.938457231037319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 322024.937761867360678, 4312305.026303650811315 ], [ 322027.024863143917173, 4312305.026303650811315 ], [ 322027.270404470560607, 4312302.079807731322944 ], [ 322024.692220540717244, 4312302.079807731322944 ], [ 322024.937761867360678, 4312305.026303650811315 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 322071.872002990392502, 4312403.141764683648944 ], [ 322076.922442541399505, 4312403.029532694257796 ], [ 322076.922442541399505, 4312398.203557122498751 ], [ 322072.433162940491457, 4312398.54025309253484 ], [ 322071.872002990392502, 4312403.141764683648944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 322253.771978578297421, 4311655.128471204079688 ], [ 322257.374958804808557, 4311655.060490445233881 ], [ 322257.374958804808557, 4311652.069337049499154 ], [ 322254.179863132245373, 4311652.205298567190766 ], [ 322253.771978578297421, 4311655.128471204079688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320898.512660414038692, 4313089.888944456353784 ], [ 320900.807007262366824, 4313089.68036747071892 ], [ 320900.807007262366824, 4313087.490309115499258 ], [ 320898.616948907147162, 4313087.594597607851028 ], [ 320898.512660414038692, 4313089.888944456353784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320046.755356516630854, 4314076.709863063879311 ], [ 320049.558074813627172, 4314076.885032957419753 ], [ 320049.558074813627172, 4314073.731974873691797 ], [ 320046.930526410171296, 4314073.731974873691797 ], [ 320046.755356516630854, 4314076.709863063879311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320138.018871061969548, 4314078.111222212202847 ], [ 320141.522268933185842, 4314077.235372744500637 ], [ 320141.347099039587192, 4314075.834013596177101 ], [ 320138.544380742649082, 4314075.834013596177101 ], [ 320138.018871061969548, 4314078.111222212202847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320820.311634919315111, 4314079.843996346928179 ], [ 320823.637441789032891, 4314079.843996346928179 ], [ 320823.864201348333154, 4314076.66936251707375 ], [ 320820.084875360014848, 4314077.274054675363004 ], [ 320820.311634919315111, 4314079.843996346928179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320748.701820504735224, 4313957.833973796106875 ], [ 320752.81977840064792, 4313957.833973796106875 ], [ 320753.146600455860607, 4313954.827210888266563 ], [ 320748.440362860565074, 4313954.892575299367309 ], [ 320748.701820504735224, 4313957.833973796106875 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320673.978167675435543, 4313941.99462787155062 ], [ 320676.938843723968603, 4313942.024408689700067 ], [ 320676.887481330952141, 4313940.021275361068547 ], [ 320673.942482325772289, 4313939.960562942549586 ], [ 320673.978167675435543, 4313941.99462787155062 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 319767.770579717296641, 4303181.920679493807256 ], [ 319777.272870059416164, 4303181.920679493807256 ], [ 319776.609919570444617, 4303174.186257122084498 ], [ 319767.991563213639893, 4303174.628224114887416 ], [ 319767.770579717296641, 4303181.920679493807256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 319564.061937722144648, 4302942.952188299037516 ], [ 319571.226215406728443, 4302943.021075583994389 ], [ 319571.157328121305909, 4302936.683445325121284 ], [ 319564.061937722144648, 4302936.821219895966351 ], [ 319564.061937722144648, 4302942.952188299037516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321506.836887293378823, 4303815.790469789877534 ], [ 321512.76919245661702, 4303815.95757697802037 ], [ 321512.351424487365875, 4303808.521307124756277 ], [ 321506.669780105701648, 4303809.022628688253462 ], [ 321506.836887293378823, 4303815.790469789877534 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321922.085980650910642, 4303841.725033857859671 ], [ 321925.856632381503005, 4303841.725033857859671 ], [ 321926.082871485326905, 4303838.029795161448419 ], [ 321922.161393685499206, 4303838.256034265272319 ], [ 321922.085980650910642, 4303841.725033857859671 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321946.191305484855548, 4303912.866857940331101 ], [ 321950.675920355308335, 4303913.005557369440794 ], [ 321950.814619784301613, 4303910.046636218205094 ], [ 321948.96529406454647, 4303910.000403075478971 ], [ 321948.133097490645014, 4303910.000403075478971 ], [ 321948.086864347627852, 4303910.971299078315496 ], [ 321946.145072341896594, 4303910.971299078315496 ], [ 321946.191305484855548, 4303912.866857940331101 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321999.226308774028439, 4303912.494753221049905 ], [ 322004.589550177101046, 4303912.40962240472436 ], [ 322004.759811808937229, 4303908.578735688701272 ], [ 321999.651962853677105, 4303908.74899732042104 ], [ 321999.226308774028439, 4303912.494753221049905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 322021.739301707129925, 4304016.876557938754559 ], [ 322028.423710936272983, 4304016.982659672386944 ], [ 322028.423710936272983, 4304011.677572982385755 ], [ 322021.845403440878727, 4304011.78367471601814 ], [ 322021.739301707129925, 4304016.876557938754559 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 322047.826206773228478, 4303908.888153680600226 ], [ 322050.939767006435432, 4303909.187534471973777 ], [ 322050.939767006435432, 4303906.792488139122725 ], [ 322047.945959089905955, 4303906.912240455858409 ], [ 322047.826206773228478, 4303908.888153680600226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 322136.064740567584522, 4303955.058991187252104 ], [ 322138.902579657908063, 4303955.058991187252104 ], [ 322138.8434580101748, 4303952.930611870251596 ], [ 322136.005618919851258, 4303952.930611870251596 ], [ 322136.064740567584522, 4303955.058991187252104 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321960.863133881532121, 4304173.832535874098539 ], [ 321968.504366697161458, 4304173.688361669890583 ], [ 321968.360192493128125, 4304167.633045098744333 ], [ 321960.574785473407246, 4304167.200522487051785 ], [ 321960.863133881532121, 4304173.832535874098539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 322029.057532406179234, 4304243.18032803107053 ], [ 322034.24780375265982, 4304243.324502235278487 ], [ 322034.536152160784695, 4304238.278405092656612 ], [ 322029.201706610212568, 4304237.990056684240699 ], [ 322029.057532406179234, 4304243.18032803107053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321832.094332538312301, 4304157.843885431066155 ], [ 321834.983393672853708, 4304157.934168591164052 ], [ 321835.073676833300851, 4304153.961709531024098 ], [ 321832.274898859206587, 4304153.871426370926201 ], [ 321832.094332538312301, 4304157.843885431066155 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": null }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321645.965409256168641, 4304121.90716589614749 ], [ 321648.798409793467727, 4304121.956867659464478 ], [ 321648.897813321091235, 4304120.068200634792447 ], [ 321646.064812783792149, 4304120.068200634792447 ], [ 321645.965409256168641, 4304121.90716589614749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 322174.435492611373775, 4304460.306827012449503 ], [ 322182.353058302949648, 4304460.398891729302704 ], [ 322182.445123020326719, 4304453.586102645844221 ], [ 322175.448204502172302, 4304453.586102645844221 ], [ 322174.435492611373775, 4304460.306827012449503 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 322121.908561758697033, 4304487.986212100833654 ], [ 322117.933187153073959, 4304487.902520003728569 ], [ 322117.891341104637831, 4304483.090224428102374 ], [ 322122.075945952616166, 4304482.964686282910407 ], [ 322121.908561758697033, 4304487.986212100833654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324168.018490083282813, 4304922.962220497429371 ], [ 324171.956641777418554, 4304922.962220497429371 ], [ 324171.956641777418554, 4304919.784062989987433 ], [ 324167.811218941467814, 4304919.922243750654161 ], [ 324168.018490083282813, 4304922.962220497429371 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324473.053813816630282, 4304547.929754681885242 ], [ 324477.123223827627953, 4304548.04602353926748 ], [ 324476.774417255248409, 4304544.790495530702174 ], [ 324473.402620389009826, 4304545.02303324546665 ], [ 324473.053813816630282, 4304547.929754681885242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323816.808963629184291, 4305189.838078944012523 ], [ 323819.222176757466514, 4305189.838078944012523 ], [ 323819.222176757466514, 4305187.080121083185077 ], [ 323817.153708361787722, 4305187.080121083185077 ], [ 323816.808963629184291, 4305189.838078944012523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323913.537125881295651, 4305133.916846627369523 ], [ 323918.092482544423547, 4305134.106653154827654 ], [ 323918.187385808269028, 4305130.785038921050727 ], [ 323913.11006119416561, 4305131.022297080606222 ], [ 323913.537125881295651, 4305133.916846627369523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324565.369632552086841, 4308839.051317543722689 ], [ 324573.911165222176351, 4308839.178803106769919 ], [ 324573.911165222176351, 4308833.696923930197954 ], [ 324564.987175865389872, 4308833.696923930197954 ], [ 324565.369632552086841, 4308839.051317543722689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324773.778218686929904, 4308686.265155063942075 ], [ 324773.378664039657451, 4308670.68252382054925 ], [ 324792.557287108560558, 4308668.285195937380195 ], [ 324791.3586231667432, 4308685.266268446110189 ], [ 324773.778218686929904, 4308686.265155063942075 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324778.972429101413582, 4308699.450458424165845 ], [ 324793.955728373955935, 4308701.648008983582258 ], [ 324793.955728373955935, 4308694.056470685638487 ], [ 324780.770425014081411, 4308692.458252096548676 ], [ 324778.972429101413582, 4308699.450458424165845 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325038.414298350166064, 4308969.927920207381248 ], [ 325038.414298350166064, 4308962.256801206618547 ], [ 325047.941333237395156, 4308962.256801206618547 ], [ 325047.446422334120143, 4308969.309281578287482 ], [ 325038.414298350166064, 4308969.927920207381248 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325194.9329736000509, 4308940.718750483356416 ], [ 325201.888615945237689, 4308940.888400296680629 ], [ 325201.888615945237689, 4308935.968555710278451 ], [ 325194.9329736000509, 4308936.053380616940558 ], [ 325194.9329736000509, 4308940.718750483356416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325226.153340626216959, 4308968.044057440012693 ], [ 325232.575675758242141, 4308967.679669631645083 ], [ 325232.575675758242141, 4308963.762500685639679 ], [ 325226.062243674008641, 4308963.944694589823484 ], [ 325226.153340626216959, 4308968.044057440012693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325192.913768657832406, 4309037.742091259919107 ], [ 325199.955156571639236, 4309037.859447726048529 ], [ 325200.013834804238286, 4309032.754441488534212 ], [ 325192.679055727378, 4309032.871797953732312 ], [ 325192.913768657832406, 4309037.742091259919107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": null }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325196.429705638147425, 4309141.976680969819427 ], [ 325205.056728919735178, 4309141.766265768557787 ], [ 325204.846313717775047, 4309130.61426006257534 ], [ 325196.429705638147425, 4309130.61426006257534 ], [ 325196.429705638147425, 4309141.976680969819427 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325142.301244400325231, 4309191.363098656758666 ], [ 325147.659873046970461, 4309191.238479386083782 ], [ 325148.033730859518982, 4309185.879850739613175 ], [ 325142.301244400325231, 4309185.755231468006968 ], [ 325142.301244400325231, 4309191.363098656758666 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325321.502268883341458, 4308885.775687770918012 ], [ 325329.430411561508663, 4308886.049072001129389 ], [ 325329.020335216075182, 4308879.077774128876626 ], [ 325320.818808307638392, 4308877.984237208031118 ], [ 325321.502268883341458, 4308885.775687770918012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325174.877941050624941, 4309082.2217329852283 ], [ 325183.14152389584342, 4309081.895538926124573 ], [ 325183.250255249091424, 4309074.719269612804055 ], [ 325175.530329169996548, 4309075.262926379218698 ], [ 325174.877941050624941, 4309082.2217329852283 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327997.865353807108477, 4309463.053499663248658 ], [ 328000.127644569322001, 4309463.053499663248658 ], [ 328000.127644569322001, 4309459.933098612353206 ], [ 327998.177393912279513, 4309459.933098612353206 ], [ 327997.865353807108477, 4309463.053499663248658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328043.002635738579556, 4309496.060151969082654 ], [ 328047.986174925288651, 4309496.060151969082654 ], [ 328048.031071674718987, 4309490.80723228584975 ], [ 328043.137325986870565, 4309490.897025784477592 ], [ 328043.002635738579556, 4309496.060151969082654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328118.063819940085523, 4309509.791882972232997 ], [ 328121.910136561491527, 4309509.924514579586685 ], [ 328121.84382075764006, 4309507.935040465556085 ], [ 328118.063819940085523, 4309507.935040465556085 ], [ 328118.063819940085523, 4309509.791882972232997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328135.802951823861804, 4309569.352289101108909 ], [ 328141.649721084570047, 4309569.352289101108909 ], [ 328141.649721084570047, 4309563.102294374257326 ], [ 328136.407790023251437, 4309563.303907106630504 ], [ 328135.802951823861804, 4309569.352289101108909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328116.044903977250215, 4309590.320013346150517 ], [ 328124.311026035516988, 4309589.916787879541516 ], [ 328123.907800569257233, 4309582.658729487098753 ], [ 328115.238453044730704, 4309582.658729487098753 ], [ 328116.044903977250215, 4309590.320013346150517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328141.309164808888454, 4309606.765502988360822 ], [ 328147.762848232465331, 4309606.670595879666507 ], [ 328148.042263616807759, 4309604.163216467015445 ], [ 328141.398765974852722, 4309604.163216467015445 ], [ 328141.309164808888454, 4309606.765502988360822 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328236.646082704362925, 4309665.946960781700909 ], [ 328242.966337249672506, 4309666.048900371417403 ], [ 328242.966337249672506, 4309661.971316793933511 ], [ 328236.340263936086558, 4309661.869377204217017 ], [ 328236.646082704362925, 4309665.946960781700909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327966.58630437933607, 4309641.375215909443796 ], [ 327972.774870253633708, 4309641.375215909443796 ], [ 327972.774870253633708, 4309634.413079300895333 ], [ 327966.03375385486288, 4309634.5235894061625 ], [ 327966.58630437933607, 4309641.375215909443796 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327993.682833674771246, 4309689.966894737444818 ], [ 327998.110828170087188, 4309690.037180364131927 ], [ 327998.321685050788801, 4309684.695472719147801 ], [ 327994.174833063152619, 4309684.83604397252202 ], [ 327993.682833674771246, 4309689.966894737444818 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327667.293986366712488, 4309822.804016776382923 ], [ 327677.331880327255931, 4309822.993411001749337 ], [ 327677.142486101598479, 4309811.629757462069392 ], [ 327666.157621012709569, 4309811.819151687435806 ], [ 327667.293986366712488, 4309822.804016776382923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327842.326836582738906, 4309819.379266251809895 ], [ 327852.841311344411224, 4309819.557477688416839 ], [ 327852.841311344411224, 4309810.646905857138336 ], [ 327842.50504801934585, 4309810.290482982993126 ], [ 327842.326836582738906, 4309819.379266251809895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327758.816319725825451, 4309767.35589537769556 ], [ 327799.227352107758634, 4309768.972336673177779 ], [ 327799.429407269693911, 4309751.595592748373747 ], [ 327760.836871344887186, 4309749.777096291072667 ], [ 327758.816319725825451, 4309767.35589537769556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328124.789004152757116, 4309965.021842286922038 ], [ 328127.058950075472239, 4309965.021842286922038 ], [ 328127.010653353761882, 4309963.911017686128616 ], [ 328124.933894318062812, 4309964.20079801697284 ], [ 328124.789004152757116, 4309965.021842286922038 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328445.05382557871053, 4309703.698882673867047 ], [ 328451.91194424330024, 4309703.802793562412262 ], [ 328451.91194424330024, 4309696.009476898238063 ], [ 328445.05382557871053, 4309696.113387786783278 ], [ 328445.05382557871053, 4309703.698882673867047 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328496.190861075534485, 4309759.228571703657508 ], [ 328500.034506227471866, 4309759.228571703657508 ], [ 328500.034506227471866, 4309754.520106391981244 ], [ 328495.902587689168286, 4309754.520106391981244 ], [ 328496.190861075534485, 4309759.228571703657508 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328413.015422932221554, 4309794.061157298274338 ], [ 328420.156125683046412, 4309794.155113914050162 ], [ 328420.156125683046412, 4309788.235847160220146 ], [ 328413.57916262303479, 4309788.235847160220146 ], [ 328413.015422932221554, 4309794.061157298274338 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328517.987581640831195, 4309422.970788914710283 ], [ 328521.996137050795369, 4309422.912693908438087 ], [ 328521.938042044872418, 4309420.937463706359267 ], [ 328518.103771652677096, 4309420.995558712631464 ], [ 328517.987581640831195, 4309422.970788914710283 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328575.235835200815927, 4309441.249880696646869 ], [ 328583.58843070466537, 4309441.249880696646869 ], [ 328583.474011588201392, 4309435.872182221151888 ], [ 328575.579092550266068, 4309435.986601337790489 ], [ 328575.235835200815927, 4309441.249880696646869 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328477.327705485688057, 4309459.22937089111656 ], [ 328485.358977615949698, 4309459.22937089111656 ], [ 328485.358977615949698, 4309452.824685521423817 ], [ 328476.819397123006638, 4309453.536317229270935 ], [ 328477.327705485688057, 4309459.22937089111656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328557.72119388676947, 4309648.853026553057134 ], [ 328570.688452428788878, 4309648.24989824835211 ], [ 328570.839234504848719, 4309633.322472717612982 ], [ 328557.570411810709629, 4309633.925601022318006 ], [ 328557.72119388676947, 4309648.853026553057134 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328564.782422860618681, 4309387.625673105940223 ], [ 328574.025395945063792, 4309387.508673447184265 ], [ 328573.440397648548242, 4309381.892689800821245 ], [ 328569.228409913892392, 4309382.009689459577203 ], [ 328553.316456249565817, 4309366.916733410209417 ], [ 328545.711478395271115, 4309369.724725233390927 ], [ 328545.477479076711461, 4309379.084697977639735 ], [ 328564.782422860618681, 4309387.625673105940223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328618.332834883301985, 4309462.229473225772381 ], [ 328627.585814741963986, 4309461.989136086776853 ], [ 328625.663117628486361, 4309456.942056163214147 ], [ 328619.294183440040797, 4309456.581550454720855 ], [ 328618.332834883301985, 4309462.229473225772381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 329161.9762697830447, 4309487.045782130211592 ], [ 329176.039258729026187, 4309487.258857720531523 ], [ 329175.755157942243386, 4309479.375060887075961 ], [ 329162.828572143451311, 4309479.304035689681768 ], [ 329161.9762697830447, 4309487.045782130211592 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 329154.22161115828203, 4310337.068359656259418 ], [ 329167.598697652923875, 4310337.737213981337845 ], [ 329167.431484071770683, 4310322.019137349911034 ], [ 329153.218329671188258, 4310322.186350930482149 ], [ 329154.22161115828203, 4310337.068359656259418 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328798.256613059318624, 4310512.076837116852403 ], [ 328810.738205575209577, 4310511.954468563199043 ], [ 328810.738205575209577, 4310502.287352791056037 ], [ 328798.990824383799918, 4310502.409721344709396 ], [ 328798.256613059318624, 4310512.076837116852403 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 329150.361718622618355, 4310558.430529090575874 ], [ 329150.041278718505055, 4310551.94162103254348 ], [ 329158.212496273976285, 4310552.021731008775532 ], [ 329158.292606249975506, 4310558.110089186578989 ], [ 329150.361718622618355, 4310558.430529090575874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330489.117717911081854, 4312291.794690237380564 ], [ 330506.025341231608763, 4312299.309189490973949 ], [ 330502.89429987600306, 4312276.765691730193794 ], [ 330489.117717911081854, 4312291.794690237380564 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330129.627960742451251, 4312566.985614208504558 ], [ 330136.592241429840215, 4312577.780249273404479 ], [ 330148.257411581173074, 4312570.467754552140832 ], [ 330140.596702825045213, 4312560.543654572218657 ], [ 330129.627960742451251, 4312566.985614208504558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330727.454862189188134, 4312434.780794662423432 ], [ 330727.454862189188134, 4312426.640736709348857 ], [ 330737.541455740632955, 4312426.640736709348857 ], [ 330737.718413522234187, 4312436.196456915698946 ], [ 330727.454862189188134, 4312434.780794662423432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330312.035698043531738, 4313044.982531257905066 ], [ 330322.977784916467499, 4313044.982531257905066 ], [ 330322.77325992815895, 4313036.290219255723059 ], [ 330311.524385572876781, 4313036.08569426741451 ], [ 330312.035698043531738, 4313044.982531257905066 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330088.741235189198051, 4313188.208460479974747 ], [ 330098.972063540655654, 4313188.461073526181281 ], [ 330100.740354860667139, 4313180.756375631317496 ], [ 330088.867541712068487, 4313180.377456063404679 ], [ 330088.741235189198051, 4313188.208460479974747 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330366.000529360200744, 4313515.450813682749867 ], [ 330374.877877319289837, 4313515.363780858926475 ], [ 330374.877877319289837, 4313505.529071846045554 ], [ 330365.826463713892736, 4313505.616104668937624 ], [ 330366.000529360200744, 4313515.450813682749867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330162.424424639903009, 4313658.957265594042838 ], [ 330162.342063165968284, 4313654.180300108157098 ], [ 330170.331126134668011, 4313654.262661581858993 ], [ 330170.166403186856769, 4313658.874904120340943 ], [ 330162.424424639903009, 4313658.957265594042838 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328981.136495804297738, 4313152.824530130252242 ], [ 328985.837991138454527, 4313152.992440678179264 ], [ 328986.089856959937606, 4313151.061469379812479 ], [ 328980.884629982814658, 4313151.229379927739501 ], [ 328981.136495804297738, 4313152.824530130252242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328817.30512393132085, 4313312.259856026619673 ], [ 328822.161442160489969, 4313312.259856026619673 ], [ 328821.959095567639451, 4313306.594151426106691 ], [ 328818.721550081507303, 4313306.189458240754902 ], [ 328817.30512393132085, 4313312.259856026619673 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328771.96218727726955, 4312957.929033681750298 ], [ 328774.94575392792467, 4312957.979602607898414 ], [ 328774.895185001601931, 4312954.996035957708955 ], [ 328772.012756203592289, 4312954.945467031560838 ], [ 328771.96218727726955, 4312957.929033681750298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 329287.199152874061838, 4313565.862793896347284 ], [ 329290.897985253890511, 4313565.920588151551783 ], [ 329290.897985253890511, 4313562.857492587529123 ], [ 329286.910181594372261, 4313562.857492587529123 ], [ 329287.199152874061838, 4313565.862793896347284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 329691.724174723261967, 4313732.886623203754425 ], [ 329695.954723402741365, 4313732.644877565093338 ], [ 329696.075596222188324, 4313728.051710427738726 ], [ 329692.147229591209907, 4313728.051710427738726 ], [ 329691.724174723261967, 4313732.886623203754425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328313.975649420463014, 4313893.179168810136616 ], [ 328318.023927381611429, 4313892.958353648893535 ], [ 328318.023927381611429, 4313890.087756549008191 ], [ 328314.049254474288318, 4313890.014151494950056 ], [ 328313.975649420463014, 4313893.179168810136616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328198.710654121707194, 4314494.264716450124979 ], [ 328200.21581113251159, 4314488.860695055685937 ], [ 328205.98477822705172, 4314487.781258008442819 ], [ 328206.142911359784193, 4314493.948450184427202 ], [ 328198.710654121707194, 4314494.264716450124979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327891.086028732068371, 4314544.605254488065839 ], [ 327893.82086362404516, 4314544.605254488065839 ], [ 327895.05595034948783, 4314542.840844879858196 ], [ 327895.05595034948783, 4314541.076435272581875 ], [ 327890.909587771282531, 4314541.16465575248003 ], [ 327891.086028732068371, 4314544.605254488065839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327843.102999925788026, 4315087.122348380275071 ], [ 327849.676572003634647, 4315086.958009078167379 ], [ 327850.087420258496422, 4315080.877454906702042 ], [ 327843.020830274850596, 4315080.959624557755888 ], [ 327843.102999925788026, 4315087.122348380275071 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327766.097276242333464, 4315110.899457206949592 ], [ 327767.06274615379516, 4315110.899457206949592 ], [ 327767.098504298657645, 4315111.936443408951163 ], [ 327767.920941630611196, 4315111.936443408951163 ], [ 327768.063974210061133, 4315112.93767146486789 ], [ 327769.923397743143141, 4315112.93767146486789 ], [ 327769.959155888063833, 4315109.004275529645383 ], [ 327766.025759952608496, 4315109.040033673867583 ], [ 327766.097276242333464, 4315110.899457206949592 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 326069.217535654024687, 4317799.255561416037381 ], [ 326078.576972283248324, 4317799.459027430042624 ], [ 326078.373506269592326, 4317791.930784923955798 ], [ 326069.421001667680684, 4317792.337716951034963 ], [ 326069.217535654024687, 4317799.255561416037381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 331578.917933345539495, 4303819.046896398067474 ], [ 331592.471791740856133, 4303819.046896398067474 ], [ 331592.192330743011553, 4303808.427378479391336 ], [ 331580.594699332548771, 4303808.567108978517354 ], [ 331580.594699332548771, 4303808.567108978517354 ], [ 331578.917933345539495, 4303819.046896398067474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": null }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330530.919692651485093, 4304767.015195534564555 ], [ 330536.188158854725771, 4304767.095020780339837 ], [ 330536.347809345752466, 4304761.746729331091046 ], [ 330530.999517896969337, 4304761.826554576866329 ], [ 330530.919692651485093, 4304767.015195534564555 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330695.091654407908209, 4304586.079886702820659 ], [ 330742.227693206456024, 4304586.816387308761477 ], [ 330741.675317751767579, 4304546.677104270085692 ], [ 330698.405907135922462, 4304546.124728814698756 ], [ 330695.091654407908209, 4304586.079886702820659 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330964.983166542137042, 4304388.441519627347589 ], [ 330998.968109577021096, 4304388.441519627347589 ], [ 330999.72333053330658, 4304355.967018504627049 ], [ 330964.47968590457458, 4304357.225720098242164 ], [ 330964.983166542137042, 4304388.441519627347589 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 331007.947850368451327, 4304437.690695801749825 ], [ 331044.546635292121209, 4304437.690695801749825 ], [ 331051.481141909200232, 4304397.62465756945312 ], [ 331012.956105147488415, 4304397.62465756945312 ], [ 331007.947850368451327, 4304437.690695801749825 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 333350.603161881386768, 4303656.657607738859951 ], [ 333400.187043328187428, 4303658.283308769576252 ], [ 333401.270844015583862, 4303623.059786430560052 ], [ 333357.376916177396197, 4303623.059786430560052 ], [ 333357.376916177396197, 4303623.059786430560052 ], [ 333350.603161881386768, 4303656.657607738859951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325516.794151638110634, 4308430.130316002294421 ], [ 325525.838251771056093, 4308431.75015483237803 ], [ 325529.347902568930294, 4308423.515974113717675 ], [ 325523.273506957222708, 4308418.92643076274544 ], [ 325516.794151638110634, 4308430.130316002294421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325552.430605893256143, 4308427.025624911300838 ], [ 325560.124840334698092, 4308429.050423448905349 ], [ 325561.339719457027968, 4308421.896135284565389 ], [ 325554.590390999626834, 4308420.411283023655415 ], [ 325552.430605893256143, 4308427.025624911300838 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325547.8410625422257, 4308387.204587013460696 ], [ 325558.909961212368216, 4308387.744533289223909 ], [ 325557.965055228327401, 4308380.455258555710316 ], [ 325547.301116265589371, 4308382.885016799904406 ], [ 325547.8410625422257, 4308387.204587013460696 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325559.854867196409032, 4308397.868525975383818 ], [ 325565.794276238884777, 4308397.868525975383818 ], [ 325565.38931653148029, 4308386.799627305939794 ], [ 325558.370014935790095, 4308389.364372119307518 ], [ 325559.854867196409032, 4308397.868525975383818 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325563.76947770168772, 4308425.00082637462765 ], [ 325572.27363155799685, 4308425.67575922049582 ], [ 325572.948564403748605, 4308420.276296454481781 ], [ 325564.174437409150414, 4308421.491175577044487 ], [ 325563.76947770168772, 4308425.00082637462765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325444.595376650919206, 4308413.445161969400942 ], [ 325445.022152560646646, 4308403.629316044971347 ], [ 325459.105757582408842, 4308404.056091954931617 ], [ 325457.825429853168316, 4308416.859369247220457 ], [ 325444.595376650919206, 4308413.445161969400942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325411.172956121095922, 4308500.350407229736447 ], [ 325425.503908835235052, 4308500.531811694614589 ], [ 325425.685313299996778, 4308491.824397386983037 ], [ 325411.89857398008462, 4308492.005801851861179 ], [ 325411.172956121095922, 4308500.350407229736447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325452.17036515136715, 4308496.903722399845719 ], [ 325460.514970529242419, 4308497.447935793548822 ], [ 325460.877779458707664, 4308485.838050050660968 ], [ 325454.165814263455104, 4308482.935578615404665 ], [ 325452.17036515136715, 4308496.903722399845719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325391.722230875515379, 4308410.090048626065254 ], [ 325393.443489479133859, 4308401.483755608089268 ], [ 325402.541570669680368, 4308403.94269647076726 ], [ 325400.574417979863938, 4308415.007930350489914 ], [ 325391.722230875515379, 4308410.090048626065254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325685.58293764013797, 4308668.8064402686432 ], [ 325709.248613124073017, 4308676.497784801758826 ], [ 325717.827420487010386, 4308647.211511390283704 ], [ 325691.20353556756163, 4308640.99927157536149 ], [ 325685.58293764013797, 4308668.8064402686432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325679.846638567745686, 4308754.898698893375695 ], [ 325689.948240549885668, 4308756.123135497793555 ], [ 325691.172677153779659, 4308744.490987760946155 ], [ 325681.989402624545619, 4308743.266551156528294 ], [ 325679.846638567745686, 4308754.898698893375695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325852.380461703462061, 4308734.466090960428119 ], [ 325867.997905139287468, 4308735.130663021467626 ], [ 325868.330191169807222, 4308717.851789433509111 ], [ 325852.712747734040022, 4308717.851789433509111 ], [ 325852.380461703462061, 4308734.466090960428119 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 331321.634274446114432, 4312582.622222486883402 ], [ 331324.292174740170594, 4312598.038044192828238 ], [ 331339.176416386733763, 4312599.101204310543835 ], [ 331342.897476798389107, 4312581.559062370099127 ], [ 331328.013235151767731, 4312573.05378142837435 ], [ 331321.634274446114432, 4312582.622222486883402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 331608.155926142993849, 4312484.811491667293012 ], [ 331636.329669259721413, 4312486.406231842935085 ], [ 331634.734929083322641, 4312462.485129197128117 ], [ 331611.876986554649193, 4312466.206189608201385 ], [ 331608.155926142993849, 4312484.811491667293012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 331908.551082736346871, 4312599.970791822299361 ], [ 331920.585243880748749, 4312600.621287018992007 ], [ 331922.5367294716998, 4312578.50445032119751 ], [ 331904.973359152849298, 4312580.78118351008743 ], [ 331908.551082736346871, 4312599.970791822299361 ] ] ] ] } } ] } diff --git a/vector_data/conifer/CRBU2018_AOP_conifer_additional.geojson b/vector_data/conifer/CRBU2018_AOP_conifer_additional.geojson index 7d35e3f..6fa7f80 100644 --- a/vector_data/conifer/CRBU2018_AOP_conifer_additional.geojson +++ b/vector_data/conifer/CRBU2018_AOP_conifer_additional.geojson @@ -22,6 +22,48 @@ { "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327925.40168077632552, 4311233.331966180354357 ], [ 327932.109528564964421, 4311233.331966180354357 ], [ 327931.804626392724458, 4311227.081471649929881 ], [ 327929.670311187277548, 4311226.624118391424417 ], [ 327932.566881823237054, 4311218.391759742051363 ], [ 327927.993349240103271, 4311219.154015172272921 ], [ 327926.773740551318042, 4311226.624118391424417 ], [ 327925.249229690234642, 4311227.996178166940808 ], [ 327925.40168077632552, 4311233.331966180354357 ] ] ] ] } }, { "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327937.140414406429045, 4311228.910884683020413 ], [ 327941.409044817322865, 4311229.06333576887846 ], [ 327942.018849161744583, 4311224.642254272475839 ], [ 327947.049735003209207, 4311223.117743411101401 ], [ 327946.744832830969244, 4311219.458917344920337 ], [ 327938.360023095214274, 4311219.306466258130968 ], [ 327937.140414406429045, 4311228.910884683020413 ] ] ] ] } }, { "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327903.2962732911692, 4311258.029042129404843 ], [ 327912.900691715767607, 4311260.315808421000838 ], [ 327915.797262351785321, 4311253.760411717928946 ], [ 327912.748240629676729, 4311250.101585651747882 ], [ 327899.942349396878853, 4311250.711389996111393 ], [ 327903.2962732911692, 4311258.029042129404843 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328350.294892006262671, 4311210.73231736663729 ], [ 328355.01799633691553, 4311210.543393193744123 ], [ 328354.640147990430705, 4311206.009213035926223 ], [ 328350.294892006262671, 4311206.009213035926223 ], [ 328350.294892006262671, 4311210.73231736663729 ] ] ] ] } } +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328350.294892006262671, 4311210.73231736663729 ], [ 328355.01799633691553, 4311210.543393193744123 ], [ 328354.640147990430705, 4311206.009213035926223 ], [ 328350.294892006262671, 4311206.009213035926223 ], [ 328350.294892006262671, 4311210.73231736663729 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328355.899256021191832, 4310611.031399205327034 ], [ 328359.726846832549199, 4310611.031399205327034 ], [ 328359.90082823310513, 4310607.116817694157362 ], [ 328355.899256021191832, 4310607.203808394260705 ], [ 328355.899256021191832, 4310611.031399205327034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328349.287962801521644, 4310607.029826993122697 ], [ 328353.985460615484044, 4310607.029826993122697 ], [ 328353.985460615484044, 4310604.072143184952438 ], [ 328349.026990700745955, 4310603.985152484849095 ], [ 328349.287962801521644, 4310607.029826993122697 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328292.856304590823129, 4310581.194755639880896 ], [ 328298.063720701902639, 4310580.963314923457801 ], [ 328298.063720701902639, 4310577.838865256868303 ], [ 328293.087745306896977, 4310577.838865256868303 ], [ 328292.856304590823129, 4310581.194755639880896 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328307.15576777944807, 4310535.21015041321516 ], [ 328310.913942484301515, 4310535.21015041321516 ], [ 328310.913942484301515, 4310531.921747546643019 ], [ 328307.273210738960188, 4310532.15663346555084 ], [ 328307.15576777944807, 4310535.21015041321516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328303.749921953189187, 4310522.291424865834415 ], [ 328307.860425536578987, 4310522.173981905914843 ], [ 328307.860425536578987, 4310518.885579039342701 ], [ 328303.867364912701305, 4310519.00302199926227 ], [ 328303.867364912701305, 4310519.00302199926227 ], [ 328303.749921953189187, 4310522.291424865834415 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328308.68252625328023, 4310519.00302199926227 ], [ 328313.967459431965835, 4310519.00302199926227 ], [ 328313.967459431965835, 4310515.832062091678381 ], [ 328308.799969212792348, 4310515.949505051597953 ], [ 328308.68252625328023, 4310519.00302199926227 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328308.330197374685667, 4310511.839001468382776 ], [ 328312.910472796240356, 4310511.956444427371025 ], [ 328312.675586877157912, 4310507.728497884236276 ], [ 328308.565083293768112, 4310507.728497884236276 ], [ 328308.330197374685667, 4310511.839001468382776 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328484.37575866113184, 4310648.494806697592139 ], [ 328484.37575866113184, 4310644.02351182512939 ], [ 328488.584036188025493, 4310644.02351182512939 ], [ 328488.584036188025493, 4310648.75782404281199 ], [ 328484.37575866113184, 4310648.494806697592139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328468.068683244520798, 4310666.51149485912174 ], [ 328471.882434753293637, 4310667.037529550492764 ], [ 328471.882434753293637, 4310664.275847422890365 ], [ 328470.69885669881478, 4310664.14433875028044 ], [ 328470.69885669881478, 4310661.908691314049065 ], [ 328467.937174571852665, 4310661.908691314049065 ], [ 328468.068683244520798, 4310666.51149485912174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328447.158804282953497, 4310659.804552550427616 ], [ 328450.972555791668128, 4310659.804552550427616 ], [ 328450.972555791668128, 4310656.648344405926764 ], [ 328447.158804282953497, 4310657.174379096366465 ], [ 328447.158804282953497, 4310659.804552550427616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328434.139445684209932, 4310643.760494479909539 ], [ 328438.610740556498058, 4310643.760494479909539 ], [ 328438.873757901950739, 4310639.683725625276566 ], [ 328434.139445684209932, 4310639.55221695266664 ], [ 328434.139445684209932, 4310639.55221695266664 ], [ 328434.139445684209932, 4310643.760494479909539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328436.375093120383099, 4310623.639667554758489 ], [ 328440.451861974492203, 4310623.771176227368414 ], [ 328440.057335956371389, 4310619.562898700125515 ], [ 328436.638110465777572, 4310619.957424717955291 ], [ 328436.638110465777572, 4310619.957424717955291 ], [ 328436.375093120383099, 4310623.639667554758489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328469.120752626273315, 4310612.987465064041317 ], [ 328472.671486789535265, 4310612.987465064041317 ], [ 328472.671486789535265, 4310607.990135501138866 ], [ 328468.857735280820634, 4310607.858626828528941 ], [ 328469.120752626273315, 4310612.987465064041317 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328509.792735139431898, 4310550.317917024716735 ], [ 328513.145208246714901, 4310550.317917024716735 ], [ 328513.049423300777562, 4310546.869658971205354 ], [ 328510.080089977185708, 4310546.869658971205354 ], [ 328509.792735139431898, 4310550.317917024716735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328499.06482119607972, 4310545.911809512414038 ], [ 328503.854068492248189, 4310545.911809512414038 ], [ 328503.854068492248189, 4310542.846691242419183 ], [ 328499.06482119607972, 4310542.463551458902657 ], [ 328499.06482119607972, 4310545.911809512414038 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328596.620965331094339, 4310601.672763471491635 ], [ 328600.750686764076818, 4310601.672763471491635 ], [ 328600.750686764076818, 4310596.650129295885563 ], [ 328597.960334444534965, 4310596.873357481323183 ], [ 328598.183562630089, 4310598.101112502627075 ], [ 328596.9558076094836, 4310598.212726594880223 ], [ 328596.620965331094339, 4310601.672763471491635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328583.004046011599712, 4310610.936733172275126 ], [ 328588.138294279633556, 4310610.936733172275126 ], [ 328587.915066094079521, 4310606.025713089853525 ], [ 328583.004046011599712, 4310606.137327183037996 ], [ 328583.004046011599712, 4310606.137327183037996 ], [ 328583.004046011599712, 4310610.936733172275126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328604.892829737102147, 4310547.830583481118083 ], [ 328610.763052284484729, 4310547.830583481118083 ], [ 328611.023951064387802, 4310539.74272130522877 ], [ 328605.02327912702458, 4310539.873170695267618 ], [ 328604.892829737102147, 4310547.830583481118083 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328592.108789522724692, 4310562.310465765185654 ], [ 328598.239910850010347, 4310562.049566985107958 ], [ 328597.848562680184841, 4310554.613951758481562 ], [ 328591.978340132802259, 4310554.483502368442714 ], [ 328592.108789522724692, 4310562.310465765185654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328576.846210899471771, 4310540.394968254491687 ], [ 328582.716433446854353, 4310540.916765814647079 ], [ 328582.977332226757426, 4310535.046543266624212 ], [ 328576.063514559762552, 4310534.655195097438991 ], [ 328576.846210899471771, 4310540.394968254491687 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328570.584640182205476, 4310553.831255418248475 ], [ 328574.759020660363603, 4310553.831255418248475 ], [ 328574.889470050286036, 4310549.004627990536392 ], [ 328570.323741402302403, 4310549.004627990536392 ], [ 328570.584640182205476, 4310553.831255418248475 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328597.075506805733312, 4310672.929852671921253 ], [ 328600.763955721515231, 4310672.929852671921253 ], [ 328600.994483778777067, 4310665.860325583256781 ], [ 328596.844978748471476, 4310666.090853639878333 ], [ 328597.075506805733312, 4310672.929852671921253 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328602.300809436477721, 4310653.027597063221037 ], [ 328608.832437724864576, 4310653.104439749382436 ], [ 328608.986123096372467, 4310647.955979804508388 ], [ 328601.762910636258312, 4310648.18650786112994 ], [ 328602.300809436477721, 4310653.027597063221037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328573.25427422451321, 4310671.085628213360906 ], [ 328576.942723140295129, 4310671.008785528130829 ], [ 328576.942723140295129, 4310666.859280497767031 ], [ 328573.023746167251375, 4310667.012965869158506 ], [ 328573.25427422451321, 4310671.085628213360906 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328591.100319081102498, 4310638.955759279429913 ], [ 328594.949640432721935, 4310638.955759279429913 ], [ 328594.949640432721935, 4310634.917127041146159 ], [ 328590.847904566267971, 4310635.043334298767149 ], [ 328590.847904566267971, 4310635.043334298767149 ], [ 328591.100319081102498, 4310638.955759279429913 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328596.148609378316905, 4310642.994391516782343 ], [ 328599.997930729936343, 4310643.057495145127177 ], [ 328599.997930729936343, 4310638.892655650153756 ], [ 328595.959298492176458, 4310638.955759279429913 ], [ 328596.148609378316905, 4310642.994391516782343 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328565.8428448617924, 4310647.155846127308905 ], [ 328569.020732321077958, 4310647.000827226787806 ], [ 328569.098241771338508, 4310643.900449217297137 ], [ 328565.8428448617924, 4310643.900449217297137 ], [ 328565.8428448617924, 4310647.155846127308905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328578.70962263061665, 4310681.895912441425025 ], [ 328582.167740088421851, 4310681.895912441425025 ], [ 328581.96823331201449, 4310678.038781430572271 ], [ 328578.70962263061665, 4310678.105283689685166 ], [ 328578.70962263061665, 4310681.895912441425025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328507.973070182197262, 4310630.296126929111779 ], [ 328512.387705432542134, 4310630.296126929111779 ], [ 328512.23003988788696, 4310625.408495045267045 ], [ 328507.815404637542088, 4310625.408495045267045 ], [ 328507.973070182197262, 4310630.296126929111779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328516.802340682945214, 4310635.341424358077347 ], [ 328520.270982665359043, 4310635.341424358077347 ], [ 328520.270982665359043, 4310631.08445465285331 ], [ 328517.275337316910736, 4310631.08445465285331 ], [ 328516.802340682945214, 4310635.341424358077347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328527.681263264210429, 4310618.628876624628901 ], [ 328532.568895148520824, 4310618.628876624628901 ], [ 328532.568895148520824, 4310613.268248106352985 ], [ 328528.154259898175951, 4310613.42591365147382 ], [ 328527.681263264210429, 4310618.628876624628901 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328399.019248020194937, 4310466.23300607316196 ], [ 328403.154120761144441, 4310466.23300607316196 ], [ 328403.154120761144441, 4310461.003608194179833 ], [ 328398.532792403595522, 4310461.003608194179833 ], [ 328399.019248020194937, 4310466.23300607316196 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328405.708012748218607, 4310457.476804974488914 ], [ 328410.086113297496922, 4310457.476804974488914 ], [ 328409.964499393361621, 4310451.882565383799374 ], [ 328405.951240556547418, 4310451.882565383799374 ], [ 328405.708012748218607, 4310457.476804974488914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328568.779475165181793, 4310514.382163112983108 ], [ 328574.224260970193427, 4310514.382163112983108 ], [ 328574.224260970193427, 4310508.937377308495343 ], [ 328569.142460885515902, 4310508.937377308495343 ], [ 328568.779475165181793, 4310514.382163112983108 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328561.156775038223714, 4310505.670505825430155 ], [ 328567.509025144041516, 4310505.670505825430155 ], [ 328566.964546563511249, 4310500.044227159582078 ], [ 328560.793789317889605, 4310499.681241439655423 ], [ 328561.156775038223714, 4310505.670505825430155 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325660.3531869816361, 4310877.1353699862957 ], [ 325663.870335366809741, 4310877.805303012020886 ], [ 325665.377684674691409, 4310872.948288574814796 ], [ 325661.525569776655175, 4310871.608422523364425 ], [ 325660.3531869816361, 4310877.1353699862957 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325659.348287442990113, 4310867.923790882341564 ], [ 325664.540268392534927, 4310870.603522985242307 ], [ 325666.717550726199988, 4310864.909092266112566 ], [ 325660.3531869816361, 4310862.564326675608754 ], [ 325659.348287442990113, 4310867.923790882341564 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325670.402182367804926, 4310830.742507953196764 ], [ 325673.584364240115974, 4310833.589723312295973 ], [ 325680.618661010463256, 4310828.062775850296021 ], [ 325678.273895420308691, 4310824.378144208341837 ], [ 325672.579464701469988, 4310821.363445592112839 ], [ 325670.402182367804926, 4310830.742507953196764 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325649.466775313252583, 4310824.210660952143371 ], [ 325656.836038596462458, 4310824.378144208341837 ], [ 325656.668555340031162, 4310817.678813951089978 ], [ 325650.136708338977769, 4310817.846297207288444 ], [ 325649.466775313252583, 4310824.210660952143371 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325643.939827850845177, 4310839.45163728762418 ], [ 325650.136708338977769, 4310839.45163728762418 ], [ 325650.136708338977769, 4310832.752307030372322 ], [ 325644.777244133059867, 4310832.752307030372322 ], [ 325643.939827850845177, 4310839.45163728762418 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325675.761646573664621, 4310881.719860702753067 ], [ 325677.809130939596798, 4310881.778360255993903 ], [ 325678.043129152792972, 4310879.14588035736233 ], [ 325676.229643000173382, 4310879.14588035736233 ], [ 325675.761646573664621, 4310881.719860702753067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325674.123659081000369, 4310886.926320947706699 ], [ 325675.937145233619958, 4310887.043320054188371 ], [ 325675.995644786919001, 4310885.112834795378149 ], [ 325675.118151487258729, 4310885.054335242137313 ], [ 325675.118151487258729, 4310885.873328988440335 ], [ 325674.006659974344075, 4310885.990328094922006 ], [ 325674.123659081000369, 4310886.926320947706699 ] ] ] ] } } ] } diff --git a/vector_data/meadow/CRBU2018_AOP_mesic_meadow.geojson b/vector_data/meadow/CRBU2018_AOP_mesic_meadow.geojson index 2a0fbfe..322b1b0 100644 --- a/vector_data/meadow/CRBU2018_AOP_mesic_meadow.geojson +++ b/vector_data/meadow/CRBU2018_AOP_mesic_meadow.geojson @@ -3,13 +3,8 @@ "name": "CRBU2018_AOP_mesic_meadow", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::32613" } }, "features": [ -{ "type": "Feature", "properties": { "fid": 1, "id": 71, "SiteCode": "071-ER18", "SampleSiteCode": "071-ER18", "VegetationType": "Meadow", "CoverClass": "MesicMeadow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328925.990246665722225, 4310517.0322888744995 ], [ 328928.006104730302468, 4310516.975151609629393 ], [ 328928.018639341345988, 4310516.009986557997763 ], [ 328925.977712054678705, 4310516.035787295550108 ], [ 328925.990246665722225, 4310517.0322888744995 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 2, "id": 79, "SiteCode": "079-ER18", "SampleSiteCode": "079-ER18", "VegetationType": "Meadow", "CoverClass": "MesicMeadow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328999.020071335369721, 4310528.024135005660355 ], [ 328999.996749704878312, 4310528.007295724004507 ], [ 328999.961863551288843, 4310526.00883296597749 ], [ 328998.968345899542328, 4310526.00883296597749 ], [ 328999.020071335369721, 4310528.024135005660355 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 3, "id": 241, "SiteCode": "241-ER18", "SampleSiteCode": "241-ER18", "VegetationType": "Shrub", "CoverClass": "MesicMeadow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324155.00208311714232, 4314475.828816879540682 ], [ 324156.037700304528698, 4314476.04457045905292 ], [ 324156.196801789454184, 4314474.947890213690698 ], [ 324154.844746016548015, 4314474.875972352921963 ], [ 324155.00208311714232, 4314475.828816879540682 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 4, "id": 244, "SiteCode": "244-ER18", "SampleSiteCode": "244-ER18", "VegetationType": "Shrub", "CoverClass": "MesicMeadow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324153.017150173778646, 4314388.033346952870488 ], [ 324155.030850260867737, 4314388.090881243348122 ], [ 324154.954431941441726, 4314386.04841400962323 ], [ 324152.998266141861677, 4314385.990879722870886 ], [ 324153.017150173778646, 4314388.033346952870488 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 5, "id": 247, "SiteCode": "247-ER18", "SampleSiteCode": "247-ER18", "VegetationType": "Shrub", "CoverClass": "MesicMeadow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324144.947966252220795, 4314307.307626431807876 ], [ 324146.976049911696464, 4314307.480229295790195 ], [ 324147.163036348531023, 4314305.509679924696684 ], [ 324145.019884112640284, 4314305.624748500995338 ], [ 324144.947966252220795, 4314307.307626431807876 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 6, "id": 285, "SiteCode": "285-ER18", "SampleSiteCode": "285-ER18", "VegetationType": "Shrub", "CoverClass": "MesicMeadow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323427.970050122763496, 4316590.965785916894674 ], [ 323430.04128449986456, 4316590.994553063064814 ], [ 323430.127585930866189, 4316589.09592154994607 ], [ 323427.912515835370868, 4316589.038387261331081 ], [ 323427.970050122763496, 4316590.965785916894674 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 7, "id": 287, "SiteCode": "287-ER18", "SampleSiteCode": "287-ER18", "VegetationType": "Shrub", "CoverClass": "MesicMeadow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323388.96863347402541, 4316610.986333813518286 ], [ 323391.159181177557912, 4316610.948565749451518 ], [ 323390.970340858330019, 4316610.079900281503797 ], [ 323388.930865410191473, 4316610.004364153370261 ], [ 323388.96863347402541, 4316610.986333813518286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 326450.071937477856409, 4317233.960352465510368 ], [ 326453.782144614437129, 4317233.960352465510368 ], [ 326453.912327320955228, 4317232.853799459524453 ], [ 326450.006846124597359, 4317232.983982166275382 ], [ 326450.071937477856409, 4317233.960352465510368 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 326448.965384472219739, 4317231.096332921646535 ], [ 326453.001048375153914, 4317230.966150214895606 ], [ 326453.001048375153914, 4317229.013409616425633 ], [ 326449.160658532055095, 4317228.883226910606027 ], [ 326449.160658532055095, 4317228.883226910606027 ], [ 326449.160658532055095, 4317228.883226910606027 ], [ 326448.965384472219739, 4317231.096332921646535 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 8, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330854.129921560699586, 4309808.28514342661947 ], [ 330862.198546182538848, 4309814.548944120295346 ], [ 330868.780845216126181, 4309809.877635127864778 ], [ 330861.455383388441987, 4309804.038498888723552 ], [ 330854.129921560699586, 4309808.28514342661947 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 9, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330981.075662376009859, 4309619.970343083143234 ], [ 330990.736131812445819, 4309616.254777914844453 ], [ 330988.952660531853326, 4309610.904364073649049 ], [ 330981.670152802835219, 4309614.917174454778433 ], [ 330981.075662376009859, 4309619.970343083143234 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 10, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 331005.003902057127561, 4309600.352158996276557 ], [ 331011.246051539143082, 4309608.675024972297251 ], [ 331019.866162728576455, 4309600.054913783445954 ], [ 331012.435032392852008, 4309593.069651267491281 ], [ 331005.003902057127561, 4309600.352158996276557 ] ] ] ] } }, @@ -18,6 +13,13 @@ { "type": "Feature", "properties": { "fid": 13, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320992.961273861990776, 4316254.768343208357692 ], [ 321007.89995153498603, 4316253.255565722472966 ], [ 321006.765368420572486, 4316247.204455778934062 ], [ 320992.015787933312822, 4316251.175496679730713 ], [ 320992.961273861990776, 4316254.768343208357692 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 14, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320991.525302857276984, 4316241.623177579604089 ], [ 321002.480413376993965, 4316245.001856525428593 ], [ 321003.913792323495727, 4316238.961188107728958 ], [ 320995.108750223531388, 4316234.558667057193816 ], [ 320991.525302857276984, 4316241.623177579604089 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 15, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327857.791063566110097, 4313054.759905758313835 ], [ 327864.493994310789276, 4313070.531507510691881 ], [ 327885.785656676103827, 4313060.674256416037679 ], [ 327880.659886106674094, 4313048.056975014507771 ], [ 327857.791063566110097, 4313054.759905758313835 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 16, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328351.409636072407011, 4313152.983938979916275 ], [ 328354.159322390332818, 4313182.886777686886489 ], [ 328389.905244523077272, 4313184.261620845645666 ], [ 328389.905244523077272, 4313151.609095821157098 ], [ 328351.409636072407011, 4313152.983938979916275 ] ] ] ] } } +{ "type": "Feature", "properties": { "fid": 16, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328351.409636072407011, 4313152.983938979916275 ], [ 328354.159322390332818, 4313182.886777686886489 ], [ 328389.905244523077272, 4313184.261620845645666 ], [ 328389.905244523077272, 4313151.609095821157098 ], [ 328351.409636072407011, 4313152.983938979916275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 1, "id": 71, "SiteCode": "071-ER18", "SampleSiteCode": "071-ER18", "VegetationType": "Meadow", "CoverClass": "MesicMeadow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328925.990246665722225, 4310517.0322888744995 ], [ 328928.006104730302468, 4310516.975151609629393 ], [ 328928.018639341345988, 4310516.009986557997763 ], [ 328925.977712054678705, 4310516.035787295550108 ], [ 328925.990246665722225, 4310517.0322888744995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 2, "id": 79, "SiteCode": "079-ER18", "SampleSiteCode": "079-ER18", "VegetationType": "Meadow", "CoverClass": "MesicMeadow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328999.020071335369721, 4310528.024135005660355 ], [ 328999.996749704878312, 4310528.007295724004507 ], [ 328999.961863551288843, 4310526.00883296597749 ], [ 328998.968345899542328, 4310526.00883296597749 ], [ 328999.020071335369721, 4310528.024135005660355 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 3, "id": 241, "SiteCode": "241-ER18", "SampleSiteCode": "241-ER18", "VegetationType": "Shrub", "CoverClass": "MesicMeadow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324155.00208311714232, 4314475.828816879540682 ], [ 324156.037700304528698, 4314476.04457045905292 ], [ 324156.196801789454184, 4314474.947890213690698 ], [ 324154.844746016548015, 4314474.875972352921963 ], [ 324155.00208311714232, 4314475.828816879540682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 4, "id": 244, "SiteCode": "244-ER18", "SampleSiteCode": "244-ER18", "VegetationType": "Shrub", "CoverClass": "MesicMeadow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324153.017150173778646, 4314388.033346952870488 ], [ 324155.030850260867737, 4314388.090881243348122 ], [ 324154.954431941441726, 4314386.04841400962323 ], [ 324152.998266141861677, 4314385.990879722870886 ], [ 324153.017150173778646, 4314388.033346952870488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 5, "id": 247, "SiteCode": "247-ER18", "SampleSiteCode": "247-ER18", "VegetationType": "Shrub", "CoverClass": "MesicMeadow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324144.947966252220795, 4314307.307626431807876 ], [ 324146.976049911696464, 4314307.480229295790195 ], [ 324147.163036348531023, 4314305.509679924696684 ], [ 324145.019884112640284, 4314305.624748500995338 ], [ 324144.947966252220795, 4314307.307626431807876 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 6, "id": 285, "SiteCode": "285-ER18", "SampleSiteCode": "285-ER18", "VegetationType": "Shrub", "CoverClass": "MesicMeadow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323427.970050122763496, 4316590.965785916894674 ], [ 323430.04128449986456, 4316590.994553063064814 ], [ 323430.127585930866189, 4316589.09592154994607 ], [ 323427.912515835370868, 4316589.038387261331081 ], [ 323427.970050122763496, 4316590.965785916894674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 7, "id": 287, "SiteCode": "287-ER18", "SampleSiteCode": "287-ER18", "VegetationType": "Shrub", "CoverClass": "MesicMeadow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323388.96863347402541, 4316610.986333813518286 ], [ 323391.159181177557912, 4316610.948565749451518 ], [ 323390.970340858330019, 4316610.079900281503797 ], [ 323388.930865410191473, 4316610.004364153370261 ], [ 323388.96863347402541, 4316610.986333813518286 ] ] ] ] } } ] } diff --git a/vector_data/meadow/CRBU2018_AOP_wet_meadow.geojson b/vector_data/meadow/CRBU2018_AOP_wet_meadow.geojson index d6bfc7c..1302d91 100644 --- a/vector_data/meadow/CRBU2018_AOP_wet_meadow.geojson +++ b/vector_data/meadow/CRBU2018_AOP_wet_meadow.geojson @@ -3,6 +3,18 @@ "name": "CRBU2018_AOP_wet_meadow", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::32613" } }, "features": [ +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323305.91564900247613, 4316567.951888487674296 ], [ 323307.10732130985707, 4316567.997722038067877 ], [ 323307.10732130985707, 4316567.035217482596636 ], [ 323306.053149653307628, 4316567.035217482596636 ], [ 323305.91564900247613, 4316567.951888487674296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323301.928130127780605, 4316567.860221387818456 ], [ 323302.982301784330048, 4316567.906054938212037 ], [ 323302.982301784330048, 4316566.118546476587653 ], [ 323302.111464328947477, 4316566.072712926194072 ], [ 323301.928130127780605, 4316567.860221387818456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323298.032278353639413, 4316568.776892392896116 ], [ 323298.903115809021983, 4316569.006060144864023 ], [ 323298.811448708467651, 4316566.943550381809473 ], [ 323298.215612554806285, 4316566.806049730628729 ], [ 323298.032278353639413, 4316568.776892392896116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323286.178323829197325, 4316471.812097083777189 ], [ 323287.799029150977731, 4316471.8547472236678 ], [ 323287.884329431049991, 4316470.191391762346029 ], [ 323285.751822428719606, 4316470.106091482564807 ], [ 323286.178323829197325, 4316471.812097083777189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323292.106693295645528, 4316473.987254226580262 ], [ 323292.874395816470496, 4316473.987254226580262 ], [ 323292.874395816470496, 4316473.006301005370915 ], [ 323292.149343435710762, 4316473.006301005370915 ], [ 323292.106693295645528, 4316473.987254226580262 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323287.244577330362517, 4316482.133430975489318 ], [ 323289.035883212287445, 4316482.090780835598707 ], [ 323289.035883212287445, 4316480.683326213620603 ], [ 323287.244577330362517, 4316480.811276634223759 ], [ 323287.244577330362517, 4316482.133430975489318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323282.894263045629486, 4316481.877530135214329 ], [ 323283.960516546794679, 4316481.962830414995551 ], [ 323283.960516546794679, 4316479.958273832686245 ], [ 323283.022213465766981, 4316479.958273832686245 ], [ 323282.894263045629486, 4316481.877530135214329 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323280.079353802546393, 4316478.977320611476898 ], [ 323281.18825744377682, 4316478.934670471586287 ], [ 323281.145607303711586, 4316477.911067110486329 ], [ 323279.866103102336638, 4316477.825766830705106 ], [ 323280.079353802546393, 4316478.977320611476898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323284.173767247004434, 4316485.971943579614162 ], [ 323286.093023549066857, 4316486.099893999286 ], [ 323286.093023549066857, 4316484.905690078623593 ], [ 323283.875216266664211, 4316484.990990358404815 ], [ 323284.173767247004434, 4316485.971943579614162 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323277.893410771968774, 4316488.004987052641809 ], [ 323279.95569623017218, 4316487.929994854144752 ], [ 323279.95569623017218, 4316485.980197693221271 ], [ 323278.00589906971436, 4316485.980197693221271 ], [ 323277.893410771968774, 4316488.004987052641809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323604.240547497465741, 4316025.055020673200488 ], [ 323608.14413881622022, 4316024.811046215705574 ], [ 323608.14413881622022, 4316022.127327183261514 ], [ 323604.850483641028404, 4316022.249314412474632 ], [ 323604.240547497465741, 4316025.055020673200488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323607.656189901405014, 4316020.297518752515316 ], [ 323611.437793991470244, 4316020.297518752515316 ], [ 323611.559781220159493, 4316016.881876349449158 ], [ 323608.14413881622022, 4316016.881876349449158 ], [ 323607.656189901405014, 4316020.297518752515316 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 1, "id": 180, "SiteCode": "180-ER18", "SampleSiteCode": "180-ER18", "VegetationType": "Meadow", "CoverClass": "WetMeadow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325636.950990731886122, 4311474.012419538572431 ], [ 325637.20334381290013, 4311476.000796364620328 ], [ 325635.979889223701321, 4311476.01199181843549 ], [ 325635.751825280371122, 4311473.999325854703784 ], [ 325636.950990731886122, 4311474.012419538572431 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 2, "id": 182, "SiteCode": "182-ER18", "SampleSiteCode": "182-ER18", "VegetationType": "Meadow", "CoverClass": "WetMeadow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325600.075955219508614, 4311450.012944455258548 ], [ 325601.083531429409049, 4311450.005589884705842 ], [ 325601.041894499503542, 4311448.007106950506568 ], [ 325600.049027431290597, 4311448.014461521059275 ], [ 325600.075955219508614, 4311450.012944455258548 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 3, "id": 259, "SiteCode": "259-ER18", "SampleSiteCode": "259-ER18", "VegetationType": "Meadow", "CoverClass": "WetMeadow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323275.988817181612831, 4316476.989441237412393 ], [ 323276.971578141499776, 4316477.01229614391923 ], [ 323277.017287953640334, 4316474.978209505788982 ], [ 323275.988817181612831, 4316475.023919317871332 ], [ 323275.988817181612831, 4316476.989441237412393 ] ] ] ] } }, diff --git a/vector_data/shrubs/CRBU2018_AOP_misc_shrub.geojson b/vector_data/shrubs/CRBU2018_AOP_misc_shrub.geojson index 7d28650..55cfd9d 100644 --- a/vector_data/shrubs/CRBU2018_AOP_misc_shrub.geojson +++ b/vector_data/shrubs/CRBU2018_AOP_misc_shrub.geojson @@ -3,18 +3,162 @@ "name": "CRBU2018_AOP_misc_shrub", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::32613" } }, "features": [ +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334500.95434753637528, 4306269.977385746315122 ], [ 334502.011150506266858, 4306270.012612511403859 ], [ 334502.019957197655458, 4306268.964616233482957 ], [ 334500.857473930809647, 4306268.999842998571694 ], [ 334500.95434753637528, 4306269.977385746315122 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334517.00630423653638, 4306260.982520502991974 ], [ 334517.913131285575218, 4306260.922065366059542 ], [ 334517.973586422158405, 4306259.954783180728555 ], [ 334516.976076668244787, 4306260.045465885661542 ], [ 334517.00630423653638, 4306260.982520502991974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334541.049314887088258, 4306278.972365002147853 ], [ 334542.045561269624159, 4306279.004501982592046 ], [ 334542.045561269624159, 4306278.040392579510808 ], [ 334541.049314887088258, 4306278.040392579510808 ], [ 334541.049314887088258, 4306278.972365002147853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334544.005917054542806, 4306280.964857767336071 ], [ 334545.130711357400287, 4306280.932720786891878 ], [ 334545.130711357400287, 4306280.065022325143218 ], [ 334544.038054034637753, 4306280.097159304656088 ], [ 334544.005917054542806, 4306280.964857767336071 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334555.896599684550893, 4306269.909736619330943 ], [ 334557.021393987350166, 4306269.909736619330943 ], [ 334557.021393987350166, 4306268.817079296335578 ], [ 334555.896599684550893, 4306268.881353257223964 ], [ 334555.896599684550893, 4306269.909736619330943 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320938.586056900618132, 4313585.507370765320957 ], [ 320941.450567120336927, 4313585.507370765320957 ], [ 320941.450567120336927, 4313583.358988100662827 ], [ 320939.15895894455025, 4313583.215762590058148 ], [ 320938.586056900618132, 4313585.507370765320957 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 326420.863648504717276, 4317264.983731183223426 ], [ 326421.936953666096088, 4317264.930065925233066 ], [ 326421.936953666096088, 4317263.749430247582495 ], [ 326420.970979020872619, 4317263.964091280475259 ], [ 326420.863648504717276, 4317264.983731183223426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 326421.936953666096088, 4317263.910426021553576 ], [ 326423.063924085523468, 4317263.856760763563216 ], [ 326423.063924085523468, 4317262.944451376795769 ], [ 326421.883288407989312, 4317262.944451376795769 ], [ 326421.936953666096088, 4317263.910426021553576 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323235.012080426618923, 4316538.942283033393323 ], [ 323236.045785362890456, 4316538.942283033393323 ], [ 323236.045785362890456, 4316537.805207603611052 ], [ 323235.012080426618923, 4316537.856892850250006 ], [ 323235.012080426618923, 4316538.942283033393323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323228.861536055803299, 4316536.926558407954872 ], [ 323229.946926238888409, 4316536.978243654593825 ], [ 323229.946926238888409, 4316535.996223965659738 ], [ 323228.964906549430452, 4316535.996223965659738 ], [ 323228.861536055803299, 4316536.926558407954872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323237.079490299161989, 4316548.038886472582817 ], [ 323237.958139495051, 4316548.142256966792047 ], [ 323237.958139495051, 4316547.005181537009776 ], [ 323237.027805052348413, 4316547.005181537009776 ], [ 323237.079490299161989, 4316548.038886472582817 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323049.906406508351211, 4315350.924302124418318 ], [ 323050.742195378057659, 4315350.924302124418318 ], [ 323050.881493522960227, 4315349.809916965663433 ], [ 323049.836757435870823, 4315349.809916965663433 ], [ 323049.906406508351211, 4315350.924302124418318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323089.703918606857769, 4315565.760369284078479 ], [ 323092.166628710052464, 4315565.760369284078479 ], [ 323092.166628710052464, 4315562.821005612611771 ], [ 323089.862803129653912, 4315563.138774658553302 ], [ 323089.703918606857769, 4315565.760369284078479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323097.092048916325439, 4315554.797337211668491 ], [ 323099.872528065054212, 4315555.035663995891809 ], [ 323099.951970326481387, 4315552.97016519960016 ], [ 323096.933164393587504, 4315552.97016519960016 ], [ 323097.092048916325439, 4315554.797337211668491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323163.878885161189828, 4315639.868020673282444 ], [ 323165.963278117356822, 4315639.972240321338177 ], [ 323166.015387941268273, 4315637.939957189373672 ], [ 323163.826775337278377, 4315637.939957189373672 ], [ 323163.878885161189828, 4315639.868020673282444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323619.374021497904323, 4316156.233342510648072 ], [ 323622.980208838009275, 4316155.919761002995074 ], [ 323622.980208838009275, 4316154.273458086885512 ], [ 323620.079579890531022, 4316154.116667333059013 ], [ 323619.374021497904323, 4316156.233342510648072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328436.856553648365662, 4310527.957340515218675 ], [ 328438.059195212379564, 4310527.957340515218675 ], [ 328438.059195212379564, 4310525.888797025196254 ], [ 328437.048976298654452, 4310525.888797025196254 ], [ 328436.856553648365662, 4310527.957340515218675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328429.97744390234584, 4310524.060781847685575 ], [ 328431.083874141215347, 4310524.108887510374188 ], [ 328431.083874141215347, 4310523.002457271330059 ], [ 328429.929338239773642, 4310523.002457271330059 ], [ 328429.97744390234584, 4310524.060781847685575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328425.022560658690054, 4310521.896027032285929 ], [ 328425.93656824727077, 4310521.896027032285929 ], [ 328425.93656824727077, 4310520.741491130553186 ], [ 328424.878243670973461, 4310520.789596793241799 ], [ 328425.022560658690054, 4310521.896027032285929 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328420.885473678528797, 4310524.974789435975254 ], [ 328421.991903917398304, 4310524.87857811152935 ], [ 328421.991903917398304, 4310523.724042209796607 ], [ 328421.126001991331577, 4310523.724042209796607 ], [ 328420.885473678528797, 4310524.974789435975254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320955.140195846150164, 4316217.136391069740057 ], [ 320956.089436770475004, 4316217.017735954374075 ], [ 320956.030109212675598, 4316215.949839914217591 ], [ 320954.843558057269547, 4316215.949839914217591 ], [ 320955.140195846150164, 4316217.136391069740057 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320954.250282479566522, 4316212.924134467728436 ], [ 320955.140195846150164, 4316212.924134467728436 ], [ 320955.140195846150164, 4316211.974893543869257 ], [ 320954.072299806226511, 4316211.974893543869257 ], [ 320954.250282479566522, 4316212.924134467728436 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320956.920022579259239, 4316206.99137869104743 ], [ 320958.047246176924091, 4316206.813396017067134 ], [ 320958.047246176924091, 4316205.864155093207955 ], [ 320957.216660368081648, 4316205.864155093207955 ], [ 320956.920022579259239, 4316206.99137869104743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320969.392782988026738, 4316269.042856906540692 ], [ 320971.972950127150398, 4316268.937543962150812 ], [ 320971.972950127150398, 4316268.200353350490332 ], [ 320969.182157099130563, 4316268.095040406100452 ], [ 320969.392782988026738, 4316269.042856906540692 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320978.870947988936678, 4316268.042383934371173 ], [ 320979.976733905728906, 4316268.042383934371173 ], [ 320979.976733905728906, 4316267.041910961270332 ], [ 320978.76563504448859, 4316267.041910961270332 ], [ 320978.870947988936678, 4316268.042383934371173 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 1, "id": 25, "SiteCode": "025-ER18", "SampleSiteCode": "025-ER18", "VegetationType": "Shrub", "CoverClass": "Shrub" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327891.034552128403448, 4313850.964223126880825 ], [ 327893.077019360498525, 4313851.05052456073463 ], [ 327892.935830217320472, 4313849.993645256385207 ], [ 327890.864595840219408, 4313849.993645256385207 ], [ 327891.034552128403448, 4313850.964223126880825 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320977.923131488845684, 4316273.097405267879367 ], [ 320979.134230350086, 4316273.044748795218766 ], [ 320979.134230350086, 4316271.991619351319969 ], [ 320978.081100905546919, 4316271.991619351319969 ], [ 320977.923131488845684, 4316273.097405267879367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320985.031755239528138, 4316281.048532574437559 ], [ 320987.032701184158213, 4316281.048532574437559 ], [ 320987.032701184158213, 4316279.995403129607439 ], [ 320985.084411711723078, 4316280.048059601336718 ], [ 320985.031755239528138, 4316281.048532574437559 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320985.926915267365985, 4316267.937070989049971 ], [ 320986.927388239710126, 4316267.937070989049971 ], [ 320986.927388239710126, 4316266.989254489541054 ], [ 320986.190197628515307, 4316266.989254489541054 ], [ 320985.926915267365985, 4316267.937070989049971 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321022.806734206562396, 4316312.343755466863513 ], [ 321025.115831545728724, 4316312.238796496763825 ], [ 321025.115831545728724, 4316310.979288856498897 ], [ 321023.121611116454005, 4316310.979288856498897 ], [ 321022.806734206562396, 4316312.343755466863513 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 2, "id": 30, "SiteCode": "030-ER18", "SampleSiteCode": "030-ER18", "VegetationType": "Shrub", "CoverClass": "Shrub" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327921.99249964626506, 4313848.071629251353443 ], [ 327924.055001596105285, 4313848.10939731542021 ], [ 327923.983083735220134, 4313846.95871155243367 ], [ 327921.99249964626506, 4313846.935327058658004 ], [ 327921.99249964626506, 4313848.071629251353443 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321013.360426909988746, 4316300.798268770799041 ], [ 321015.144729399355128, 4316300.798268770799041 ], [ 321015.144729399355128, 4316299.223884221166372 ], [ 321013.570344849897083, 4316299.118925251066685 ], [ 321013.360426909988746, 4316300.798268770799041 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321019.972842017363291, 4316300.871165663935244 ], [ 321020.931989337375853, 4316300.939676186069846 ], [ 321021.000499860267155, 4316299.089892068877816 ], [ 321020.109863063087687, 4316299.089892068877816 ], [ 321019.972842017363291, 4316300.871165663935244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321004.078400713915471, 4316297.10308690648526 ], [ 321005.928184831107501, 4316297.10308690648526 ], [ 321005.996695353998803, 4316295.938408018089831 ], [ 321003.872869145357981, 4316295.938408018089831 ], [ 321004.078400713915471, 4316297.10308690648526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321000.858406139537692, 4316292.033308214507997 ], [ 321003.187763916736003, 4316292.101818737573922 ], [ 321003.187763916736003, 4316290.868629326112568 ], [ 321000.858406139537692, 4316290.937139849178493 ], [ 321000.858406139537692, 4316292.033308214507997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325727.955293542938307, 4310792.938901762478054 ], [ 325728.931168525945395, 4310792.938901762478054 ], [ 325728.931168525945395, 4310791.963026778772473 ], [ 325727.955293542938307, 4310791.963026778772473 ], [ 325727.955293542938307, 4310792.938901762478054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325712.000657789700199, 4310814.000010235235095 ], [ 325713.032480264490005, 4310814.000010235235095 ], [ 325713.032480264490005, 4310812.989684062078595 ], [ 325712.022154091217089, 4310812.968187760561705 ], [ 325712.000657789700199, 4310814.000010235235095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325718.986955796077382, 4310808.948379368521273 ], [ 325719.997281969292089, 4310808.969875670038164 ], [ 325719.997281969292089, 4310807.916556893847883 ], [ 325718.986955796077382, 4310807.938053195364773 ], [ 325718.986955796077382, 4310808.948379368521273 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325724.962927629239857, 4310806.992215926758945 ], [ 325726.037742707179859, 4310806.992215926758945 ], [ 325726.037742707179859, 4310806.067874959670007 ], [ 325725.027416533906944, 4310806.003386055119336 ], [ 325724.962927629239857, 4310806.992215926758945 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325714.993245898804162, 4310836.008550723083317 ], [ 325716.026841579820029, 4310836.008550723083317 ], [ 325716.026841579820029, 4310834.947755156084895 ], [ 325714.966046012472361, 4310834.947755156084895 ], [ 325714.993245898804162, 4310836.008550723083317 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325709.934067038993817, 4310835.029354815371335 ], [ 325711.022062492731493, 4310834.947755156084895 ], [ 325710.994862606399693, 4310833.941359361633658 ], [ 325710.015666698047426, 4310833.96855924744159 ], [ 325709.934067038993817, 4310835.029354815371335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325695.032184262119699, 4310849.992783254943788 ], [ 325695.992788492527325, 4310849.992783254943788 ], [ 325695.902731845912058, 4310849.032179024070501 ], [ 325694.882089851074852, 4310849.002160142175853 ], [ 325695.032184262119699, 4310849.992783254943788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325689.782867898582481, 4310865.081445553340018 ], [ 325690.978625300049316, 4310865.081445553340018 ], [ 325691.067199922399595, 4310864.018550084903836 ], [ 325689.960017143224832, 4310864.018550084903836 ], [ 325689.782867898582481, 4310865.081445553340018 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325697.001699618645944, 4310858.96979661192745 ], [ 325698.108882397820707, 4310858.96979661192745 ], [ 325698.108882397820707, 4310857.641177277080715 ], [ 325697.134561552142259, 4310857.685464588925242 ], [ 325697.001699618645944, 4310858.96979661192745 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325701.031844934797846, 4310854.895363984629512 ], [ 325702.05045309162233, 4310854.895363984629512 ], [ 325702.05045309162233, 4310854.098192384466529 ], [ 325700.98755762365181, 4310854.098192384466529 ], [ 325701.031844934797846, 4310854.895363984629512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325691.908658834523521, 4310861.892759148962796 ], [ 325692.971554302552249, 4310861.937046460807323 ], [ 325692.971554302552249, 4310861.09558754786849 ], [ 325691.997233456873801, 4310861.00701292604208 ], [ 325691.908658834523521, 4310861.892759148962796 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327723.156319245172199, 4313461.917732359841466 ], [ 327724.141913356317673, 4313461.881228874437511 ], [ 327724.141913356317673, 4313460.895634763874114 ], [ 327723.010305302799679, 4313460.932138249278069 ], [ 327723.156319245172199, 4313461.917732359841466 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327726.04009460733505, 4313457.975355915725231 ], [ 327727.062192204059102, 4313457.975355915725231 ], [ 327727.025688718480524, 4313457.062768775969744 ], [ 327726.076598092971835, 4313457.062768775969744 ], [ 327726.04009460733505, 4313457.975355915725231 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327735.025098561774939, 4313452.038292225450277 ], [ 327736.058888725179713, 4313452.038292225450277 ], [ 327736.020600200630724, 4313450.927925013005733 ], [ 327734.986810037225951, 4313450.966213537380099 ], [ 327735.025098561774939, 4313452.038292225450277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327738.968816592532676, 4313448.898633210919797 ], [ 327739.887741182174068, 4313448.898633210919797 ], [ 327739.887741182174068, 4313447.864843047223985 ], [ 327739.007105117081665, 4313447.941420095972717 ], [ 327738.968816592532676, 4313448.898633210919797 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327746.013905113446526, 4313450.927925013005733 ], [ 327746.89454117853893, 4313450.927925013005733 ], [ 327746.89454117853893, 4313448.936921735294163 ], [ 327746.052193637995515, 4313448.975210259668529 ], [ 327746.013905113446526, 4313450.927925013005733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327749.958738731511403, 4313426.989029225893319 ], [ 327751.036008185066748, 4313426.989029225893319 ], [ 327751.036008185066748, 4313425.994626653380692 ], [ 327750.083039053075481, 4313425.994626653380692 ], [ 327749.958738731511403, 4313426.989029225893319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327747.92850014596479, 4313436.933054951019585 ], [ 327748.922902718477417, 4313436.933054951019585 ], [ 327748.964336158998776, 4313435.938652378506958 ], [ 327748.052800467528868, 4313435.938652378506958 ], [ 327747.92850014596479, 4313436.933054951019585 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328050.797025082225446, 4312863.105875986628234 ], [ 328051.844340185809415, 4312863.04426921531558 ], [ 328051.844340185809415, 4312861.935347341001034 ], [ 328050.858631853014231, 4312861.935347341001034 ], [ 328050.797025082225446, 4312863.105875986628234 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328054.92467872571433, 4312854.912175470031798 ], [ 328055.971993829298299, 4312854.850568698719144 ], [ 328055.971993829298299, 4312853.988073907792568 ], [ 328055.047892267350107, 4312853.988073907792568 ], [ 328054.92467872571433, 4312854.912175470031798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328071.804933924635407, 4312851.215769222006202 ], [ 328072.913855799066368, 4312851.030948909930885 ], [ 328072.913855799066368, 4312849.860420264303684 ], [ 328072.11296777863754, 4312849.860420264303684 ], [ 328071.804933924635407, 4312851.215769222006202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328178.190215776965488, 4312726.837854998186231 ], [ 328179.475628028332721, 4312726.837854998186231 ], [ 328179.475628028332721, 4312725.651320612058043 ], [ 328178.091337911493611, 4312725.651320612058043 ], [ 328178.190215776965488, 4312726.837854998186231 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328174.630612619395833, 4312722.091717454604805 ], [ 328176.014902736234944, 4312722.091717454604805 ], [ 328176.014902736234944, 4312720.311915876343846 ], [ 328175.02612408134155, 4312720.410793741233647 ], [ 328174.630612619395833, 4312722.091717454604805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328178.882360835385043, 4312721.893961723893881 ], [ 328179.772261624806561, 4312721.893961723893881 ], [ 328179.772261624806561, 4312720.608549471944571 ], [ 328179.080116566387005, 4312720.608549471944571 ], [ 328178.882360835385043, 4312721.893961723893881 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 3, "id": 59, "SiteCode": "059-ER18", "SampleSiteCode": "059-ER18", "VegetationType": "Shrub", "CoverClass": "Shrub" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330923.093305292422883, 4309931.898690151050687 ], [ 330925.049471090896986, 4309932.013758726418018 ], [ 330924.7833302586223, 4309930.98202829901129 ], [ 330922.942233036330435, 4309930.98202829901129 ], [ 330923.093305292422883, 4309931.898690151050687 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 4, "id": 60, "SiteCode": "060-ER18", "SampleSiteCode": "060-ER18", "VegetationType": "Shrub", "CoverClass": "Shrub" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330907.039474494755268, 4309904.87557652965188 ], [ 330909.04417366423877, 4309904.924109897576272 ], [ 330909.072940807905979, 4309902.99671124201268 ], [ 330907.03947449644329, 4309903.034479306079447 ], [ 330907.039474494755268, 4309904.87557652965188 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 5, "id": 61, "SiteCode": "061-ER18", "SampleSiteCode": "061-ER18", "VegetationType": "Shrub", "CoverClass": "Shrub" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330801.198272785171866, 4309880.98419485706836 ], [ 330803.150551824423019, 4309880.890656887553632 ], [ 330803.035483247425873, 4309878.900609785690904 ], [ 330801.140738497721031, 4309878.965380609035492 ], [ 330801.198272785171866, 4309880.98419485706836 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328189.660048173682299, 4312692.823869270272553 ], [ 328190.846582559519447, 4312692.823869270272553 ], [ 328190.846582559519447, 4312691.538457018323243 ], [ 328189.264536711678375, 4312691.538457018323243 ], [ 328189.660048173682299, 4312692.823869270272553 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 6, "id": 63, "SiteCode": "063-ER18", "SampleSiteCode": "063-ER18", "VegetationType": "Shrub", "CoverClass": "Shrub" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330808.19380296318559, 4309841.966332827694714 ], [ 330810.032164110860322, 4309842.066135640256107 ], [ 330809.931479106773622, 4309839.994901265949011 ], [ 330808.121885101194493, 4309839.938249170780182 ], [ 330808.19380296318559, 4309841.966332827694714 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 7, "id": 64, "SiteCode": "064-ER18", "SampleSiteCode": "064-ER18", "VegetationType": "Shrub", "CoverClass": "Shrub" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330850.984407466603443, 4309769.008864113129675 ], [ 330852.014192664355505, 4309768.997589611448348 ], [ 330852.014192665868904, 4309767.041423812508583 ], [ 330850.984407466603443, 4309767.101576888933778 ], [ 330850.984407466603443, 4309769.008864113129675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328244.937315277056769, 4312676.117146371863782 ], [ 328245.888211381912697, 4312676.064318810589612 ], [ 328245.941038943303283, 4312674.849284899421036 ], [ 328244.884487715666182, 4312674.849284899421036 ], [ 328244.937315277056769, 4312676.117146371863782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328239.813041823159438, 4312672.102251707576215 ], [ 328241.02807573491009, 4312672.049424146302044 ], [ 328241.02807573491009, 4312670.887217795476317 ], [ 328239.971524507272989, 4312670.887217795476317 ], [ 328239.813041823159438, 4312672.102251707576215 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328250.906829713087063, 4312668.77411533985287 ], [ 328252.016208502056543, 4312668.77411533985287 ], [ 328252.016208502056543, 4312667.928874358534813 ], [ 328251.065312397200614, 4312667.928874358534813 ], [ 328250.906829713087063, 4312668.77411533985287 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328257.563102447020356, 4312660.216050396673381 ], [ 328258.830963920161594, 4312660.16322283539921 ], [ 328258.936619042942766, 4312659.106671608053148 ], [ 328257.827240253915079, 4312659.053844045847654 ], [ 328257.563102447020356, 4312660.216050396673381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328260.151652954693418, 4312656.887914029881358 ], [ 328261.04972149815876, 4312656.887914029881358 ], [ 328261.04972149815876, 4312655.831362801603973 ], [ 328260.415790761588141, 4312655.831362801603973 ], [ 328260.151652954693418, 4312656.887914029881358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328269.866695908247493, 4312650.799465475603938 ], [ 328271.939206698851194, 4312650.917894664220512 ], [ 328271.820777510816697, 4312648.963813060894608 ], [ 328269.807481314230245, 4312648.963813060894608 ], [ 328269.866695908247493, 4312650.799465475603938 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328272.827425609051716, 4312639.844765583053231 ], [ 328274.248575865465682, 4312639.844765583053231 ], [ 328274.248575865465682, 4312638.77890289016068 ], [ 328273.182713173155207, 4312638.77890289016068 ], [ 328272.827425609051716, 4312639.844765583053231 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328250.96431280527031, 4312560.083200170658529 ], [ 328252.851263519492932, 4312560.083200170658529 ], [ 328252.851263519492932, 4312559.262786815874279 ], [ 328251.292478146846406, 4312559.180745480582118 ], [ 328250.96431280527031, 4312560.083200170658529 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328244.401005973224528, 4312570.584491102024913 ], [ 328246.205915352038573, 4312570.420408430509269 ], [ 328246.205915352038573, 4312569.2718297354877 ], [ 328244.729171314800624, 4312569.2718297354877 ], [ 328244.401005973224528, 4312570.584491102024913 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328242.760179265169427, 4312574.276351194828749 ], [ 328244.236923302407376, 4312574.030227188020945 ], [ 328244.401005973224528, 4312572.799607157707214 ], [ 328242.678137929819059, 4312572.963689828291535 ], [ 328242.760179265169427, 4312574.276351194828749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328243.252427277620882, 4312576.983715263195336 ], [ 328244.8112126502092, 4312576.983715263195336 ], [ 328244.8112126502092, 4312576.163301908411086 ], [ 328243.416509948379826, 4312576.081260573118925 ], [ 328243.252427277620882, 4312576.983715263195336 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328240.709145880187862, 4312581.167823368683457 ], [ 328242.02180724660866, 4312581.085782032459974 ], [ 328242.02180724660866, 4312578.952707312069833 ], [ 328241.529559234157205, 4312578.952707312069833 ], [ 328241.037311221763957, 4312579.034748648293316 ], [ 328240.709145880187862, 4312581.167823368683457 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328244.483047308633104, 4312583.054774082265794 ], [ 328245.959791345812846, 4312582.972732746973634 ], [ 328245.959791345812846, 4312580.839658026583493 ], [ 328244.154881966998801, 4312580.839658026583493 ], [ 328244.483047308633104, 4312583.054774082265794 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328271.799015372060239, 4312603.920245935209095 ], [ 328273.050522518518846, 4312603.920245935209095 ], [ 328273.104935872717761, 4312602.831978850997984 ], [ 328272.016668788855895, 4312602.831978850997984 ], [ 328271.799015372060239, 4312603.920245935209095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328550.011488566698972, 4312585.034659677185118 ], [ 328552.119557767349761, 4312585.112736314535141 ], [ 328552.119557767349761, 4312583.902548439800739 ], [ 328550.050526885199361, 4312583.902548439800739 ], [ 328550.011488566698972, 4312585.034659677185118 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328553.798205464205239, 4312592.06155701354146 ], [ 328556.023389620473608, 4312592.06155701354146 ], [ 328556.062427939032204, 4312591.007522412575781 ], [ 328553.837243782763835, 4312590.968484094366431 ], [ 328553.798205464205239, 4312592.06155701354146 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328600.9472483813297, 4312598.79562293831259 ], [ 328602.350572433497291, 4312598.79562293831259 ], [ 328602.350572433497291, 4312597.827813247218728 ], [ 328601.044029350450728, 4312597.779422762803733 ], [ 328600.9472483813297, 4312598.79562293831259 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328605.883077806211077, 4312604.989604961127043 ], [ 328608.157430580409709, 4312604.941214476712048 ], [ 328608.157430580409709, 4312603.925014301203191 ], [ 328605.641125383437611, 4312603.925014301203191 ], [ 328605.883077806211077, 4312604.989604961127043 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328608.786506879667286, 4312610.070605839602649 ], [ 328610.189830931834877, 4312610.022215355187654 ], [ 328610.189830931834877, 4312608.764062756672502 ], [ 328608.738116395077668, 4312608.764062756672502 ], [ 328608.786506879667286, 4312610.070605839602649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328614.88370793388458, 4312612.15139667596668 ], [ 328616.141860532399733, 4312612.006225222721696 ], [ 328616.093470047868323, 4312610.941634561866522 ], [ 328614.83531744935317, 4312610.941634561866522 ], [ 328614.88370793388458, 4312612.15139667596668 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 8, "id": 85, "SiteCode": "085-ER18", "SampleSiteCode": "085-ER18", "VegetationType": "Shrub", "CoverClass": "Shrub" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328481.780386036552954, 4310617.91777656879276 ], [ 328483.923538271686994, 4310617.960927282460034 ], [ 328483.894771127379499, 4310616.008111257106066 ], [ 328481.809153180103749, 4310616.022494831122458 ], [ 328481.780386036552954, 4310617.91777656879276 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328620.835737534507643, 4312607.941424519754946 ], [ 328621.997109163843561, 4312608.038205488584936 ], [ 328622.045499648433179, 4312606.876833858899772 ], [ 328621.077689957281109, 4312606.876833858899772 ], [ 328620.835737534507643, 4312607.941424519754946 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 9, "id": 87, "SiteCode": "087-ER18", "SampleSiteCode": "087-ER18", "VegetationType": "Shrub", "CoverClass": "Shrub" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328597.991005294898059, 4310618.055961142294109 ], [ 328598.923815101908986, 4310618.032576650381088 ], [ 328599.038883679721039, 4310615.990109417587519 ], [ 328598.00538886745926, 4310616.085411771200597 ], [ 328597.991005294898059, 4310618.055961142294109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328661.971286765066907, 4312573.940904750488698 ], [ 328664.010368141636718, 4312573.993188887834549 ], [ 328664.010368141636718, 4312571.954107511788607 ], [ 328661.919002627255395, 4312572.006391649134457 ], [ 328661.971286765066907, 4312573.940904750488698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328698.684495845693164, 4312877.000582399778068 ], [ 328700.401774239668157, 4312877.059798896312714 ], [ 328700.401774239668157, 4312875.875468969345093 ], [ 328698.802928838413209, 4312875.816252472810447 ], [ 328698.684495845693164, 4312877.000582399778068 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328696.908000955416355, 4312883.988128968514502 ], [ 328698.092330882267561, 4312883.869695975445211 ], [ 328698.092330882267561, 4312882.033984589390457 ], [ 328696.967217451776378, 4312882.09320108499378 ], [ 328696.908000955416355, 4312883.988128968514502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328696.07897000660887, 4312886.060706340707839 ], [ 328698.033114385907538, 4312886.119922836311162 ], [ 328698.033114385907538, 4312884.876376413740218 ], [ 328696.019753510248847, 4312884.994809405878186 ], [ 328696.07897000660887, 4312886.060706340707839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328620.943494628008921, 4312986.023565868847072 ], [ 328621.833546796522569, 4312986.023565868847072 ], [ 328621.960697106318548, 4312985.133513700217009 ], [ 328620.879919473140035, 4312985.133513700217009 ], [ 328620.943494628008921, 4312986.023565868847072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328615.921057391504291, 4312987.803670206107199 ], [ 328617.955462348065339, 4312987.867245361208916 ], [ 328617.955462348065339, 4312985.959990714676678 ], [ 328615.857482236577198, 4312985.959990714676678 ], [ 328615.921057391504291, 4312987.803670206107199 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328614.140953054476995, 4312990.092375782318413 ], [ 328615.984632546373177, 4312990.092375782318413 ], [ 328615.984632546373177, 4312989.011598149314523 ], [ 328614.204528209404089, 4312989.011598149314523 ], [ 328614.140953054476995, 4312990.092375782318413 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328612.996600266429596, 4312989.96522547211498 ], [ 328614.33167851914186, 4312989.96522547211498 ], [ 328614.33167851914186, 4312987.612944741733372 ], [ 328612.996600266429596, 4312987.676519896835089 ], [ 328612.996600266429596, 4312989.96522547211498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328605.020044507284183, 4312999.876701374538243 ], [ 328606.023722884710878, 4312999.876701374538243 ], [ 328606.023722884710878, 4312997.95662099961191 ], [ 328604.93276812665863, 4312997.95662099961191 ], [ 328605.020044507284183, 4312999.876701374538243 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328598.997974243015051, 4313005.811495257541537 ], [ 328600.132567191321868, 4313005.855133447796106 ], [ 328600.132567191321868, 4313004.720540500245988 ], [ 328599.172527004266158, 4313004.764178690500557 ], [ 328598.997974243015051, 4313005.811495257541537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328591.938002860930283, 4313025.914163444191217 ], [ 328593.054352937440854, 4313025.947992234490812 ], [ 328593.054352937440854, 4313024.966957318596542 ], [ 328592.005660441354848, 4313024.865470947697759 ], [ 328591.938002860930283, 4313025.914163444191217 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328558.830715237534605, 4313050.93092049844563 ], [ 328560.150319352105726, 4313050.93092049844563 ], [ 328560.150319352105726, 4313049.787263599224389 ], [ 328558.918688845180441, 4313049.787263599224389 ], [ 328558.830715237534605, 4313050.93092049844563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328541.939084426965564, 4313071.051630830392241 ], [ 328543.072707025741693, 4313071.051630830392241 ], [ 328543.072707025741693, 4313069.756062146276236 ], [ 328541.858111384208314, 4313069.756062146276236 ], [ 328541.939084426965564, 4313071.051630830392241 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328538.821622280462179, 4313072.063793865032494 ], [ 328540.279137050267309, 4313072.063793865032494 ], [ 328540.076704443374183, 4313070.687252137809992 ], [ 328538.943081844656263, 4313070.768225180916488 ], [ 328538.821622280462179, 4313072.063793865032494 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328532.789130594406743, 4313071.092117352411151 ], [ 328534.125185800017789, 4313071.092117352411151 ], [ 328534.125185800017789, 4313068.865358675830066 ], [ 328532.951076679921243, 4313068.865358675830066 ], [ 328532.789130594406743, 4313071.092117352411151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328509.745885050971992, 4313078.976030080579221 ], [ 328511.100086269492749, 4313078.976030080579221 ], [ 328511.051721940282732, 4313077.863650508224964 ], [ 328510.036071026348509, 4313077.863650508224964 ], [ 328509.745885050971992, 4313078.976030080579221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328515.791426205076277, 4313076.074170325882733 ], [ 328516.952170106640551, 4313076.074170325882733 ], [ 328517.048898765118793, 4313074.913426424376667 ], [ 328515.936519192764536, 4313074.913426424376667 ], [ 328515.791426205076277, 4313076.074170325882733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328522.900982602266595, 4313072.882124597206712 ], [ 328525.174106076185126, 4313072.882124597206712 ], [ 328525.174106076185126, 4313071.866473683156073 ], [ 328522.852618273056578, 4313071.818109354004264 ], [ 328522.900982602266595, 4313072.882124597206712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328527.930872842436656, 4313072.011566670611501 ], [ 328529.139981073269155, 4313072.011566670611501 ], [ 328529.139981073269155, 4313070.947551427409053 ], [ 328527.930872842436656, 4313070.899187098257244 ], [ 328527.930872842436656, 4313072.011566670611501 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328491.597708951041568, 4313088.983776593580842 ], [ 328493.825339732749853, 4313088.852739489637315 ], [ 328493.825339732749853, 4313088.000998307950795 ], [ 328491.859783160674851, 4313088.000998307950795 ], [ 328491.597708951041568, 4313088.983776593580842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328484.652742396399844, 4313090.883814613334835 ], [ 328486.88037317810813, 4313090.949333165772259 ], [ 328486.88037317810813, 4313089.769999222829938 ], [ 328484.914816606033128, 4313089.769999222829938 ], [ 328484.652742396399844, 4313090.883814613334835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328483.735482662799768, 4313097.894299720413983 ], [ 328484.980335158412345, 4313097.959818272851408 ], [ 328484.980335158412345, 4313096.911521434783936 ], [ 328484.063075424812268, 4313096.911521434783936 ], [ 328483.735482662799768, 4313097.894299720413983 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328486.02863199688727, 4313107.787601133808494 ], [ 328487.011410282924771, 4313107.853119686245918 ], [ 328487.011410282924771, 4313106.673785742372274 ], [ 328485.963113444449846, 4313106.673785742372274 ], [ 328486.02863199688727, 4313107.787601133808494 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328486.159669101703912, 4313110.998010201379657 ], [ 328488.452818435733207, 4313110.932491648942232 ], [ 328488.190744226158131, 4313109.622120601125062 ], [ 328486.02863199688727, 4313109.818676257506013 ], [ 328486.159669101703912, 4313110.998010201379657 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 10, "id": 112, "SiteCode": "112-ER18", "SampleSiteCode": "112-ER18", "VegetationType": "Shrub", "CoverClass": "Shrub" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 326300.847006810887251, 4317164.982688098214567 ], [ 326302.040843291790225, 4317164.997071668505669 ], [ 326302.027341911627445, 4317162.962454671040177 ], [ 326300.790354715369176, 4317162.962454671040177 ], [ 326300.847006810887251, 4317164.982688098214567 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 11, "id": 113, "SiteCode": "113-ER18", "SampleSiteCode": "113-ER18", "VegetationType": "Shrub", "CoverClass": "Shrub" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 326309.000727780279703, 4317183.981577644124627 ], [ 326310.978468936344143, 4317183.967194072902203 ], [ 326310.941583066014573, 4317182.011641972698271 ], [ 326308.899115835025441, 4317181.997258400544524 ], [ 326309.000727780279703, 4317183.981577644124627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328497.756452876899857, 4313112.898048221133649 ], [ 328499.066823924949858, 4313112.963566773571074 ], [ 328499.066823924949858, 4313111.915269934572279 ], [ 328497.756452876899857, 4313111.915269934572279 ], [ 328497.756452876899857, 4313112.898048221133649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328494.821131266362499, 4313119.013259263709188 ], [ 328495.980226323241368, 4313119.013259263709188 ], [ 328495.980226323241368, 4313118.019749214872718 ], [ 328494.931521271762904, 4313118.074944217689335 ], [ 328494.821131266362499, 4313119.013259263709188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328493.88281622028444, 4313129.058749756775796 ], [ 328494.876326269062702, 4313129.003554753959179 ], [ 328494.876326269062702, 4313127.954849702306092 ], [ 328493.717231212183833, 4313127.954849702306092 ], [ 328493.88281622028444, 4313129.058749756775796 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328477.887499890988693, 4313146.179996779188514 ], [ 328478.98310995020438, 4313146.179996779188514 ], [ 328478.98310995020438, 4313145.0061288587749 ], [ 328477.809242029616144, 4313145.162644580937922 ], [ 328477.887499890988693, 4313146.179996779188514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328482.817745157401077, 4313138.04117919690907 ], [ 328483.991613077931106, 4313138.04117919690907 ], [ 328483.991613077931106, 4313136.710795553401113 ], [ 328482.974260880087968, 4313136.710795553401113 ], [ 328482.817745157401077, 4313138.04117919690907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328493.852103610755876, 4313139.919367869384587 ], [ 328495.182487254031003, 4313139.997625730931759 ], [ 328495.182487254031003, 4313138.823757810518146 ], [ 328494.086877194815315, 4313138.823757810518146 ], [ 328493.852103610755876, 4313139.919367869384587 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328490.643531294481363, 4313150.092889848165214 ], [ 328492.130430660559796, 4313150.092889848165214 ], [ 328492.130430660559796, 4313148.605990481562912 ], [ 328491.113078462716658, 4313148.605990481562912 ], [ 328490.643531294481363, 4313150.092889848165214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328498.782348877110053, 4313150.014631986618042 ], [ 328500.895311134168878, 4313150.014631986618042 ], [ 328500.895311134168878, 4313147.745154006406665 ], [ 328498.625833154364955, 4313147.901669729501009 ], [ 328498.782348877110053, 4313150.014631986618042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328519.944495693140198, 4313139.937204070389271 ], [ 328521.191228395444341, 4313139.937204070389271 ], [ 328520.994375863461755, 4313137.706208707764745 ], [ 328520.075730714423116, 4313137.706208707764745 ], [ 328519.944495693140198, 4313139.937204070389271 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328529.852739800873678, 4313134.162863133475184 ], [ 328530.968237481894903, 4313134.162863133475184 ], [ 328530.968237481894903, 4313132.916130430996418 ], [ 328529.721504779590759, 4313132.916130430996418 ], [ 328529.852739800873678, 4313134.162863133475184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328531.821265120292082, 4313135.081508282572031 ], [ 328533.002380311954767, 4313135.081508282572031 ], [ 328533.002380311954767, 4313133.637923047877848 ], [ 328532.018117652274668, 4313133.769158069044352 ], [ 328531.821265120292082, 4313135.081508282572031 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328551.907212660706136, 4313121.996483517810702 ], [ 328551.945298680628184, 4313122.034569537267089 ], [ 328553.278309378307313, 4313122.034569537267089 ], [ 328553.278309378307313, 4313120.815816899761558 ], [ 328552.135728780296631, 4313120.891988939605653 ], [ 328551.907212660706136, 4313121.996483517810702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328552.973621218814515, 4313114.036505351774395 ], [ 328554.344717936415691, 4313114.036505351774395 ], [ 328554.154287836747244, 4313112.741580673493445 ], [ 328552.935535198892467, 4313112.741580673493445 ], [ 328552.973621218814515, 4313114.036505351774395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328553.621083557722159, 4313127.975988646969199 ], [ 328555.106438335089479, 4313127.975988646969199 ], [ 328555.106438335089479, 4313126.795322028920054 ], [ 328553.659169577644207, 4313126.87149406876415 ], [ 328553.621083557722159, 4313127.975988646969199 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328549.888653604255524, 4313129.994547703303397 ], [ 328551.297836341778748, 4313129.994547703303397 ], [ 328551.183578282012604, 4313128.623450986109674 ], [ 328549.926739624177571, 4313128.775795065797865 ], [ 328549.888653604255524, 4313129.994547703303397 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328549.469707384996582, 4313131.936934719793499 ], [ 328551.107406242110301, 4313131.936934719793499 ], [ 328551.069320222188253, 4313130.870526161976159 ], [ 328549.241191265406087, 4313130.870526161976159 ], [ 328549.469707384996582, 4313131.936934719793499 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330687.030039470875636, 4316218.928904114291072 ], [ 330688.313100882282015, 4316218.928904114291072 ], [ 330688.184794741158839, 4316216.940158925950527 ], [ 330686.965886400314048, 4316216.940158925950527 ], [ 330687.030039470875636, 4316218.928904114291072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330695.883163209422491, 4316219.057210255414248 ], [ 330697.166224620828871, 4316219.057210255414248 ], [ 330697.166224620828871, 4316217.068465067073703 ], [ 330696.011469350545667, 4316217.068465067073703 ], [ 330695.883163209422491, 4316219.057210255414248 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330699.860653584706597, 4316225.023445817641914 ], [ 330701.207868066674564, 4316225.087598889134824 ], [ 330701.207868066674564, 4316223.740384406410158 ], [ 330700.181418937572744, 4316223.740384406410158 ], [ 330699.860653584706597, 4316225.023445817641914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330706.660879065049812, 4316225.023445817641914 ], [ 330708.26470582926413, 4316225.023445817641914 ], [ 330708.26470582926413, 4316223.547925194725394 ], [ 330706.981644417857751, 4316223.612078265286982 ], [ 330706.660879065049812, 4316225.023445817641914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330471.709904718503822, 4316368.903150173835456 ], [ 330472.922934837115463, 4316368.903150173835456 ], [ 330472.922934837115463, 4316367.967384082265198 ], [ 330471.605930708348751, 4316367.967384082265198 ], [ 330471.709904718503822, 4316368.903150173835456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330634.013738009904046, 4316494.982414013706148 ], [ 330635.020946738193743, 4316494.982414013706148 ], [ 330635.020946738193743, 4316494.038155830465257 ], [ 330633.91931219160324, 4316494.038155830465257 ], [ 330634.013738009904046, 4316494.982414013706148 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 12, "id": 136, "SiteCode": "136-ER18", "SampleSiteCode": "136-ER18", "VegetationType": "Shrub", "CoverClass": "Shrub" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325578.997604967735242, 4311696.07499242387712 ], [ 325580.013142688199878, 4311696.003956754691899 ], [ 325580.049101618700661, 4311694.925188851542771 ], [ 325578.947262464906089, 4311694.938690230250359 ], [ 325578.997604967735242, 4311696.07499242387712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330633.8361135814921, 4316512.959732190705836 ], [ 330635.006279879831709, 4316513.037743277847767 ], [ 330635.006279879831709, 4316511.8285714359954 ], [ 330633.953130211331882, 4316511.8285714359954 ], [ 330633.8361135814921, 4316512.959732190705836 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330645.878949128615204, 4316595.031665161252022 ], [ 330646.850239744235296, 4316595.031665161252022 ], [ 330646.877990904671606, 4316593.977121064439416 ], [ 330645.851197968178894, 4316593.977121064439416 ], [ 330645.878949128615204, 4316595.031665161252022 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330645.934451449487824, 4316592.867074646055698 ], [ 330647.211004830023739, 4316593.033581608906388 ], [ 330647.15550250915112, 4316591.868032869882882 ], [ 330645.989953770418651, 4316591.895784030668437 ], [ 330645.934451449487824, 4316592.867074646055698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330641.995082268083934, 4316602.033712984062731 ], [ 330644.102309147070628, 4316602.065640664659441 ], [ 330644.070381467114203, 4316600.948171865195036 ], [ 330641.931226908112876, 4316600.948171865195036 ], [ 330641.995082268083934, 4316602.033712984062731 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330643.946810876775999, 4316610.02304276637733 ], [ 330645.026508633338381, 4316610.046514457091689 ], [ 330645.049980323703494, 4316608.872929939068854 ], [ 330644.040697638178244, 4316608.872929939068854 ], [ 330643.946810876775999, 4316610.02304276637733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330639.862736754061189, 4316607.018666400574148 ], [ 330641.036321272084024, 4316607.018666400574148 ], [ 330641.01284958171891, 4316605.915496952831745 ], [ 330639.862736754061189, 4316605.915496952831745 ], [ 330639.862736754061189, 4316607.018666400574148 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330642.946112245786935, 4316626.012574657797813 ], [ 330643.981603019114118, 4316626.073485880158842 ], [ 330644.012058630061802, 4316624.977083885110915 ], [ 330643.00702346774051, 4316624.977083885110915 ], [ 330642.946112245786935, 4316626.012574657797813 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330626.032992593885865, 4316617.195532405748963 ], [ 330627.179850401240401, 4316617.195532405748963 ], [ 330627.142854988051113, 4316615.900692945346236 ], [ 330625.995997180754784, 4316615.900692945346236 ], [ 330626.032992593885865, 4316617.195532405748963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330624.701157720934134, 4316625.075555403716862 ], [ 330626.032992593885865, 4316625.001564578153193 ], [ 330626.069988007075153, 4316623.928697597235441 ], [ 330624.923130199720617, 4316623.928697597235441 ], [ 330624.701157720934134, 4316625.075555403716862 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330595.761489683412947, 4316636.957453586161137 ], [ 330597.072456590714864, 4316636.957453586161137 ], [ 330597.038842054607812, 4316635.848173895850778 ], [ 330595.895947827782948, 4316635.881788431666791 ], [ 330595.761489683412947, 4316636.957453586161137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330598.92125607538037, 4316634.974195957183838 ], [ 330600.064150302205235, 4316635.007810493931174 ], [ 330600.064150302205235, 4316633.898530802689493 ], [ 330598.954870611429214, 4316633.898530802689493 ], [ 330598.92125607538037, 4316634.974195957183838 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330597.912819992809091, 4316629.932015544734895 ], [ 330600.03053576615639, 4316629.965630080550909 ], [ 330600.03053576615639, 4316628.015986988320947 ], [ 330597.912819992809091, 4316628.015986988320947 ], [ 330597.912819992809091, 4316629.932015544734895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330708.655685439240187, 4316265.107275257818401 ], [ 330710.37047952512512, 4316265.107275257818401 ], [ 330710.301887761685066, 4316263.872623516246676 ], [ 330708.51850191236008, 4316263.872623516246676 ], [ 330708.655685439240187, 4316265.107275257818401 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330710.164704234804958, 4316249.262577904388309 ], [ 330712.22245713789016, 4316249.262577904388309 ], [ 330712.22245713789016, 4316247.753559108823538 ], [ 330709.753153654222842, 4316248.165109689347446 ], [ 330710.164704234804958, 4316249.262577904388309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330703.71707847196376, 4316247.136233238503337 ], [ 330706.117790192191023, 4316246.930457947775722 ], [ 330706.117790192191023, 4316245.832989732734859 ], [ 330703.785670235403813, 4316245.832989732734859 ], [ 330703.71707847196376, 4316247.136233238503337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330709.891931743884925, 4316232.709347237832844 ], [ 330711.1140184920514, 4316232.777240945957601 ], [ 330710.978231075569056, 4316231.012004531919956 ], [ 330710.095612868550234, 4316231.012004531919956 ], [ 330709.891931743884925, 4316232.709347237832844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330527.027823277981952, 4316474.054202121682465 ], [ 330528.04253614298068, 4316474.007006174884737 ], [ 330528.04253614298068, 4316472.968695336021483 ], [ 330527.027823277981952, 4316472.992293309420347 ], [ 330527.027823277981952, 4316474.054202121682465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330642.730588249978609, 4316206.00338249374181 ], [ 330643.995684837980662, 4316206.00338249374181 ], [ 330644.053189228347037, 4316204.910799076780677 ], [ 330642.903101421019528, 4316204.910799076780677 ], [ 330642.730588249978609, 4316206.00338249374181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330648.596036067174282, 4316206.00338249374181 ], [ 330650.953716072137468, 4316206.060886884108186 ], [ 330651.011220462503843, 4316205.083312247879803 ], [ 330648.596036067174282, 4316204.968303467147052 ], [ 330648.596036067174282, 4316206.00338249374181 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 13, "id": 189, "SiteCode": "189-ER18", "SampleSiteCode": "189-ER18", "VegetationType": "Shrub", "CoverClass": "Shrub" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 318053.988246891065501, 4303138.020459332503378 ], [ 318055.930029119597748, 4303138.034842904657125 ], [ 318056.063099535531364, 4303137.004608370363712 ], [ 318054.035015875357203, 4303136.975841226056218 ], [ 318053.988246891065501, 4303138.020459332503378 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 14, "id": 196, "SiteCode": "196-ER18", "SampleSiteCode": "196-ER18", "VegetationType": "Shrub", "CoverClass": "Shrub" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 318449.056953587918542, 4302990.991610555909574 ], [ 318450.945356780663133, 4302991.067146683111787 ], [ 318451.020892908389214, 4302989.934104767628014 ], [ 318448.943649396416731, 4302990.009640894830227 ], [ 318449.056953587918542, 4302990.991610555909574 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 15, "id": 198, "SiteCode": "198-ER18", "SampleSiteCode": "198-ER18", "VegetationType": "Shrub", "CoverClass": "Shrub" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 318418.011605099774897, 4303017.995776210911572 ], [ 318420.051080547913443, 4303017.995776210911572 ], [ 318420.013312484079506, 4303017.051574614830315 ], [ 318418.049373163667042, 4303017.08934267796576 ], [ 318418.011605099774897, 4303017.995776210911572 ] ] ] ] } }, diff --git a/vector_data/shrubs/CRBU2018_AOP_sage.geojson b/vector_data/shrubs/CRBU2018_AOP_sage.geojson index d6469a2..0e5220e 100644 --- a/vector_data/shrubs/CRBU2018_AOP_sage.geojson +++ b/vector_data/shrubs/CRBU2018_AOP_sage.geojson @@ -3,6 +3,10 @@ "name": "CRBU2018_AOP_sage", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::32613" } }, "features": [ +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325705.855322909890674, 4310840.963402852416039 ], [ 325706.971454062848352, 4310840.924915571697056 ], [ 325706.971454062848352, 4310840.039708104915917 ], [ 325706.047759315581061, 4310840.039708104915917 ], [ 325705.855322909890674, 4310840.963402852416039 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325745.945712101180106, 4310777.987051472999156 ], [ 325746.821488299814519, 4310777.987051472999156 ], [ 325747.10014436300844, 4310776.832619211636484 ], [ 325746.224368164374027, 4310776.872427220456302 ], [ 325745.945712101180106, 4310777.987051472999156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325742.004719207296148, 4310777.987051472999156 ], [ 325742.960111423977651, 4310777.947243464179337 ], [ 325742.960111423977651, 4310776.872427220456302 ], [ 325741.925103189249057, 4310776.952043238095939 ], [ 325742.004719207296148, 4310777.987051472999156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328107.759990588820074, 4314262.031856366433203 ], [ 328109.243473018461373, 4314262.031856366433203 ], [ 328109.243473018461373, 4314261.004830069839954 ], [ 328107.931161638349295, 4314260.947773053310812 ], [ 328107.759990588820074, 4314262.031856366433203 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 1, "id": 26, "SiteCode": "026-ER18", "SampleSiteCode": "026-ER18", "VegetationType": "Shrub", "CoverClass": "Sage" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327874.99686928949086, 4313828.02878004591912 ], [ 327877.069868050341029, 4313828.156378312036395 ], [ 327877.012333761609625, 4313825.912541070021689 ], [ 327874.910567857092246, 4313826.01507995929569 ], [ 327874.99686928949086, 4313828.02878004591912 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 2, "id": 138, "SiteCode": "138-ER18", "SampleSiteCode": "138-ER18", "VegetationType": "Shrub", "CoverClass": "Sage" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325607.95261770230718, 4311589.17244291678071 ], [ 325609.003232160350308, 4311589.00336882006377 ], [ 325609.031999305239879, 4311587.867066628299654 ], [ 325607.995768418186344, 4311588.0073735807091 ], [ 325607.95261770230718, 4311589.17244291678071 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 3, "id": 139, "SiteCode": "139-ER18", "SampleSiteCode": "139-ER18", "VegetationType": "Shrub", "CoverClass": "Sage" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325590.955735995026771, 4311537.094911166466773 ], [ 325593.036239784327336, 4311536.992372277192771 ], [ 325593.050623355899006, 4311535.812919368967414 ], [ 325590.984503139799926, 4311535.958608972840011 ], [ 325590.955735995026771, 4311537.094911166466773 ] ] ] ] } } diff --git a/vector_data/water/CRBU2018_AOP_water.geojson b/vector_data/water/CRBU2018_AOP_water.geojson index b98fc39..c35d8e6 100644 --- a/vector_data/water/CRBU2018_AOP_water.geojson +++ b/vector_data/water/CRBU2018_AOP_water.geojson @@ -45,6 +45,25 @@ { "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320588.540993801667355, 4316925.448402093723416 ], [ 320590.851497250143439, 4316925.970128678716719 ], [ 320592.193079897610005, 4316922.318042582832277 ], [ 320589.957108818460256, 4316921.20005704369396 ], [ 320588.540993801667355, 4316925.448402093723416 ] ] ] ] } }, { "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320324.182664203981403, 4316714.048204082064331 ], [ 320324.182664203981403, 4316731.800743129104376 ], [ 320342.338670047465712, 4316732.204209925606847 ], [ 320351.618406367488205, 4316690.243663087487221 ], [ 320324.182664203981403, 4316714.048204082064331 ] ] ] ] } }, { "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321838.354988296981901, 4311609.888669309206307 ], [ 321862.842280099983327, 4311624.415028853341937 ], [ 321872.803212358790915, 4311605.738280868157744 ], [ 321851.221192464639898, 4311597.437503986060619 ], [ 321838.354988296981901, 4311609.888669309206307 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321766.138229420350399, 4311577.100600623525679 ], [ 321777.75931705563562, 4311580.420911377295852 ], [ 321778.58939474390354, 4311562.159202235750854 ], [ 321769.458540173305664, 4311562.159202235750854 ], [ 321766.138229420350399, 4311577.100600623525679 ] ] ] ] } } +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321766.138229420350399, 4311577.100600623525679 ], [ 321777.75931705563562, 4311580.420911377295852 ], [ 321778.58939474390354, 4311562.159202235750854 ], [ 321769.458540173305664, 4311562.159202235750854 ], [ 321766.138229420350399, 4311577.100600623525679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323013.121921425161418, 4319965.361128224991262 ], [ 323027.315701684972737, 4319907.96888630464673 ], [ 323068.662800702732056, 4319917.22569951787591 ], [ 323044.595086349116173, 4319974.000820556655526 ], [ 323013.121921425161418, 4319965.361128224991262 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320202.973519629682414, 4316873.380489309318364 ], [ 320209.656701865314972, 4316881.920111054554582 ], [ 320233.047839689883403, 4316874.494353014975786 ], [ 320247.899355769040994, 4316854.073518405668437 ], [ 320225.250793748360593, 4316845.905184562318027 ], [ 320202.973519629682414, 4316873.380489309318364 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 326403.708572303061374, 4304896.400785696692765 ], [ 326449.933374178945087, 4304927.815699593164027 ], [ 326477.758012201345991, 4304859.600457989610732 ], [ 326497.953313991602045, 4304794.52670777682215 ], [ 326519.584351148281712, 4304751.291825212538242 ], [ 326521.215856150723994, 4304730.898012682795525 ], [ 326496.33540486410493, 4304721.516858919523656 ], [ 326448.613883543992415, 4304789.632192769087851 ], [ 326403.708572303061374, 4304896.400785696692765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328008.949287604657002, 4305226.637542606331408 ], [ 328016.306017265596893, 4305243.242732412181795 ], [ 328020.93024733819766, 4305241.351001928560436 ], [ 328015.044863609480672, 4305223.064273913390934 ], [ 328008.949287604657002, 4305226.637542606331408 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330348.239422488957644, 4301767.955475888215005 ], [ 330358.544130469672382, 4301761.91478500328958 ], [ 330372.046851271938067, 4301798.158930314704776 ], [ 330359.96546950150514, 4301801.3569431360811 ], [ 330348.239422488957644, 4301767.955475888215005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330669.05537394649582, 4301054.774895171634853 ], [ 330714.048571656981949, 4301100.81444631703198 ], [ 330696.260563259827904, 4301161.502945554442704 ], [ 330627.201236541382968, 4301117.556101279333234 ], [ 330669.05537394649582, 4301054.774895171634853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330752.763648756663315, 4301068.377489828504622 ], [ 330781.015191505139228, 4301092.443618835881352 ], [ 330831.240156391228084, 4301047.450421125628054 ], [ 330800.895906772522721, 4301035.940533339045942 ], [ 330752.763648756663315, 4301068.377489828504622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 331094.963282121752854, 4301100.981487491168082 ], [ 331104.436143428960349, 4301101.376190045848489 ], [ 331109.567276637011673, 4301072.957606123760343 ], [ 331104.041440874512773, 4301072.957606123760343 ], [ 331094.963282121752854, 4301100.981487491168082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 331759.302109360869508, 4301376.056084657087922 ], [ 331781.887136378674768, 4301368.923970861360431 ], [ 331717.103769406559877, 4301266.697006464935839 ], [ 331692.141371123725548, 4301272.046091811731458 ], [ 331759.302109360869508, 4301376.056084657087922 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 331818.736390986654442, 4301413.499682080931962 ], [ 331849.642217432032339, 4301442.622480077669024 ], [ 331857.368674043391366, 4301388.537283797748387 ], [ 331818.736390986654442, 4301413.499682080931962 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 331597.640863338718191, 4301149.017128846608102 ], [ 331602.395605868776329, 4301133.564215623773634 ], [ 331657.669487780774944, 4301179.328612475655973 ], [ 331597.640863338718191, 4301149.017128846608102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 332281.081184537324589, 4302064.371039996854961 ], [ 332290.568457519751973, 4302072.593343247659504 ], [ 332315.235367274028249, 4302055.516251879744232 ], [ 332363.304217051598243, 4302055.516251879744232 ], [ 332362.671732186106965, 4302040.336615107953548 ], [ 332308.910518619057257, 4302040.969099973328412 ], [ 332281.081184537324589, 4302064.371039996854961 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 331536.790246946446132, 4302224.232257846742868 ], [ 331554.063207531813532, 4302244.232527998276055 ], [ 331576.563511452171952, 4302239.232460460625589 ], [ 331559.97237825836055, 4302218.777638714760542 ], [ 331536.790246946446132, 4302224.232257846742868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334615.524287612817716, 4306425.791951643303037 ], [ 334637.172832448966801, 4306445.806644039228559 ], [ 334651.060578192875255, 4306436.00352939683944 ], [ 334627.369717806170229, 4306416.805763221345842 ], [ 334615.524287612817716, 4306425.791951643303037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334578.443199962668587, 4306220.144737973809242 ], [ 334588.475729383819271, 4306224.32495856564492 ], [ 334583.877486732439138, 4306218.890671796165407 ], [ 334578.443199962668587, 4306220.144737973809242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334453.49199438438518, 4306063.631383446976542 ], [ 334459.661161212075967, 4306068.037931180559099 ], [ 334464.067708946182393, 4306055.993367373943329 ], [ 334459.073621514253318, 4306052.761899036355317 ], [ 334453.49199438438518, 4306063.631383446976542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334441.741200426826254, 4305991.070230758748949 ], [ 334447.322827556694392, 4305991.657770456746221 ], [ 334451.72937529074261, 4305976.675508161075413 ], [ 334446.735287858813535, 4305974.619119218550622 ], [ 334441.741200426826254, 4305991.070230758748949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327276.304018751776312, 4314249.326218752190471 ], [ 327285.12421597953653, 4314254.93907153327018 ], [ 327292.741659039864317, 4314247.722546529024839 ], [ 327279.110445142432582, 4314242.911529859527946 ], [ 327276.304018751776312, 4314249.326218752190471 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323358.407219621527474, 4316449.310175207443535 ], [ 323368.020043859258294, 4316455.006663643755019 ], [ 323371.046303341514431, 4316442.901625715196133 ], [ 323363.21363174036378, 4316441.299488342367113 ], [ 323363.21363174036378, 4316441.299488342367113 ], [ 323358.407219621527474, 4316449.310175207443535 ] ] ] ] } } ] } diff --git a/vector_data/shrubs/CRBU2018_AOP_willow.geojson b/vector_data/willows/CRBU2018_AOP_willow.geojson similarity index 69% rename from vector_data/shrubs/CRBU2018_AOP_willow.geojson rename to vector_data/willows/CRBU2018_AOP_willow.geojson index 08e17b1..272d3a2 100644 --- a/vector_data/shrubs/CRBU2018_AOP_willow.geojson +++ b/vector_data/willows/CRBU2018_AOP_willow.geojson @@ -3,18 +3,76 @@ "name": "CRBU2018_AOP_willow", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::32613" } }, "features": [ +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": "willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334557.968625775945839, 4306235.95440468378365 ], [ 334559.039461848384235, 4306236.028255446814001 ], [ 334559.002536466578022, 4306234.994344756007195 ], [ 334557.931700394139625, 4306235.031270137988031 ], [ 334557.968625775945839, 4306235.95440468378365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334505.964909432921559, 4306248.005532275885344 ], [ 334507.065150931128301, 4306247.953139822930098 ], [ 334507.065150931128301, 4306246.95768322981894 ], [ 334506.043498111364897, 4306246.983879455365241 ], [ 334505.964909432921559, 4306248.005532275885344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324108.945062572194729, 4308699.394891414791346 ], [ 324119.464100968558341, 4308698.112081853672862 ], [ 324119.464100968558341, 4308691.441472139209509 ], [ 324109.201624484325293, 4308692.082876919768751 ], [ 324109.201624484325293, 4308692.082876919768751 ], [ 324108.945062572194729, 4308699.394891414791346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327930.396601084503345, 4313855.767916671000421 ], [ 327934.817354469152633, 4313855.468204577453434 ], [ 327934.667498422204517, 4313850.82266712281853 ], [ 327930.771241201844532, 4313850.972523169592023 ], [ 327930.396601084503345, 4313855.767916671000421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327821.013026359898504, 4313885.687994772568345 ], [ 327822.608160198666155, 4313882.697118824347854 ], [ 327829.387479013588745, 4313883.893469203263521 ], [ 327827.592953444924206, 4313888.18039139546454 ], [ 327821.013026359898504, 4313885.687994772568345 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320840.371821781329345, 4313654.70395584218204 ], [ 320845.810958087502513, 4313655.014763631857932 ], [ 320845.810958087502513, 4313651.129666269756854 ], [ 320841.148841253598221, 4313651.129666269756854 ], [ 320840.371821781329345, 4313654.70395584218204 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320876.270121401990764, 4313607.150364137254655 ], [ 320880.621430446917657, 4313607.9273836100474 ], [ 320881.087642130267341, 4313603.731478459201753 ], [ 320877.357948663178831, 4313603.731478459201753 ], [ 320876.270121401990764, 4313607.150364137254655 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320866.114220691786613, 4313628.154865552671254 ], [ 320867.58761087548919, 4313625.074140623211861 ], [ 320869.864668432157487, 4313627.351198179647326 ], [ 320868.39127824845491, 4313630.565867671743035 ], [ 320866.114220691786613, 4313628.154865552671254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323518.049655656213872, 4316482.264121856540442 ], [ 323522.94239025679417, 4316484.178670178167522 ], [ 323525.282393761444837, 4316479.924118352122605 ], [ 323521.134205730515532, 4316477.37138725630939 ], [ 323518.049655656213872, 4316482.264121856540442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323606.083202148263808, 4316547.961804470978677 ], [ 323614.654402353335172, 4316548.287293086759746 ], [ 323614.328913737903349, 4316541.126543547958136 ], [ 323606.951171789260115, 4316541.126543547958136 ], [ 323606.083202148263808, 4316547.961804470978677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320902.387347184179816, 4316102.803243577480316 ], [ 320906.580781455675606, 4316102.803243577480316 ], [ 320906.763104684883729, 4316097.515869931317866 ], [ 320902.934316871804185, 4316097.698193160817027 ], [ 320902.387347184179816, 4316102.803243577480316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320967.4767400068813, 4316040.99566888064146 ], [ 320971.487851049168967, 4316041.177992110140622 ], [ 320971.487851049168967, 4316036.07294169254601 ], [ 320967.841386465239339, 4316036.07294169254601 ], [ 320967.4767400068813, 4316040.99566888064146 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330954.315199835749809, 4310005.910020668059587 ], [ 330958.332357229897752, 4310005.910020668059587 ], [ 330958.555532640719321, 4310001.892863273620605 ], [ 330953.980436719604768, 4310001.892863273620605 ], [ 330954.315199835749809, 4310005.910020668059587 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330958.555532640719321, 4309996.648241120390594 ], [ 330962.572690034867264, 4309996.648241120390594 ], [ 330962.014751507900655, 4309992.854259137064219 ], [ 330959.22505887306761, 4309992.854259137064219 ], [ 330958.555532640719321, 4309996.648241120390594 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330959.559821989270858, 4310026.665333870798349 ], [ 330963.576979383418802, 4310026.442158460617065 ], [ 330963.576979383418802, 4310022.313413361087441 ], [ 330959.559821989270858, 4310022.201825655065477 ], [ 330959.559821989270858, 4310026.665333870798349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330983.662766354216728, 4310025.772632228210568 ], [ 330986.340871283668093, 4310025.772632228210568 ], [ 330986.340871283668093, 4310022.425001066178083 ], [ 330983.885941764980089, 4310022.425001066178083 ], [ 330983.662766354216728, 4310025.772632228210568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 92, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323508.236140335851815, 4316452.611796146258712 ], [ 323511.905414896493312, 4316452.41867643315345 ], [ 323511.712295182747766, 4316450.004680011421442 ], [ 323508.043020622164477, 4316450.197799725458026 ], [ 323508.236140335851815, 4316452.611796146258712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 93, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323485.943495106534101, 4316488.282935677096248 ], [ 323489.283166487817653, 4316488.360602453351021 ], [ 323489.127832935191691, 4316485.564598506316543 ], [ 323486.409495764353778, 4316485.564598506316543 ], [ 323485.943495106534101, 4316488.282935677096248 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330983.551178648835048, 4310021.420711717568338 ], [ 330985.894520462083165, 4310021.420711717568338 ], [ 330985.894520462083165, 4310018.965782199054956 ], [ 330983.662766354216728, 4310018.965782199054956 ], [ 330983.551178648835048, 4310021.420711717568338 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330977.613030732609332, 4309949.449152398854494 ], [ 330984.584562007512432, 4309949.449152398854494 ], [ 330984.584562007512432, 4309944.747422005049884 ], [ 330978.261545269808266, 4309944.747422005049884 ], [ 330977.613030732609332, 4309949.449152398854494 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330915.61090005247388, 4310001.763973638415337 ], [ 330919.365224582550582, 4310001.763973638415337 ], [ 330919.365224582550582, 4309996.703797097317874 ], [ 330915.61090005247388, 4309996.703797097317874 ], [ 330915.61090005247388, 4310001.763973638415337 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 1, "id": 21, "SiteCode": "021-ER18", "SampleSiteCode": "021-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327788.014908625744283, 4313874.283701188862324 ], [ 327788.990869149100035, 4313874.20904725138098 ], [ 327788.962102004908957, 4313872.022744299843907 ], [ 327787.986141481553204, 4313872.154932524077594 ], [ 327788.014908625744283, 4313874.283701188862324 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 2, "id": 22, "SiteCode": "022-ER18", "SampleSiteCode": "022-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327795.001795873045921, 4313880.884789069183171 ], [ 327796.124238694144879, 4313881.125691527500749 ], [ 327795.983049552422017, 4313879.063458071090281 ], [ 327794.860606730391737, 4313879.052692764438689 ], [ 327795.001795873045921, 4313880.884789069183171 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 3, "id": 23, "SiteCode": "023-ER18", "SampleSiteCode": "023-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327844.069542798271868, 4313893.095828044228256 ], [ 327845.172219395812135, 4313893.067943091504276 ], [ 327844.98337907664245, 4313891.020706907846034 ], [ 327843.851935334794689, 4313890.991057571023703 ], [ 327844.069542798271868, 4313893.095828044228256 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 4, "id": 24, "SiteCode": "024-ER18", "SampleSiteCode": "024-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327853.930318884493317, 4313885.967572655528784 ], [ 327856.087854691140819, 4313886.053874089382589 ], [ 327855.993434533069376, 4313885.052675192244351 ], [ 327853.835898723627906, 4313884.937606615945697 ], [ 327853.930318884493317, 4313885.967572655528784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 94, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323623.57966208527796, 4316526.575268795713782 ], [ 323628.435842625098303, 4316526.447474570944905 ], [ 323627.924665726197418, 4316520.313351783901453 ], [ 323623.45186786056729, 4316520.568940233439207 ], [ 323623.57966208527796, 4316526.575268795713782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 95, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334573.068910049973056, 4306237.879301804117858 ], [ 334575.014779003104195, 4306237.936533244326711 ], [ 334574.928931843431201, 4306236.019280010834336 ], [ 334573.097525769844651, 4306236.190974330529571 ], [ 334573.068910049973056, 4306237.879301804117858 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 5, "id": 27, "SiteCode": "027-ER18", "SampleSiteCode": "027-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327900.001961356960237, 4313862.0739024002105 ], [ 327900.9869228018797, 4313861.978600047528744 ], [ 327900.900621369306464, 4313859.964899960905313 ], [ 327899.915659925842192, 4313859.973900880664587 ], [ 327900.001961356960237, 4313862.0739024002105 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 6, "id": 28, "SiteCode": "028-ER18", "SampleSiteCode": "028-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327905.981461576535366, 4313854.99524156935513 ], [ 327907.941514135105535, 4313855.104927493259311 ], [ 327907.98916531103896, 4313854.025545889511704 ], [ 327905.971578463097103, 4313853.97339425329119 ], [ 327905.981461576535366, 4313854.99524156935513 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 7, "id": 29, "SiteCode": "029-ER18", "SampleSiteCode": "029-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327936.985564378963318, 4313846.864905091002584 ], [ 327939.071182326413691, 4313847.037507956847548 ], [ 327938.976762165664695, 4313846.014778446406126 ], [ 327936.919911362405401, 4313845.971627729944885 ], [ 327936.985564378963318, 4313846.864905091002584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 96, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334572.925831450498663, 4306240.025480796582997 ], [ 334573.955997366865631, 4306239.996865076944232 ], [ 334573.984613086737227, 4306239.023930599913001 ], [ 334572.811368570895866, 4306238.966699160635471 ], [ 334572.925831450498663, 4306240.025480796582997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 97, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334577.160957995511126, 4306234.931882654316723 ], [ 334578.162508192006499, 4306234.989114094525576 ], [ 334578.1052767522051, 4306233.958948178216815 ], [ 334577.13234227563953, 4306233.958948178216815 ], [ 334577.160957995511126, 4306234.931882654316723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 98, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334572.067359853535891, 4306234.989114094525576 ], [ 334573.04029433010146, 4306234.960498373955488 ], [ 334573.068910049973056, 4306234.073411057703197 ], [ 334572.324901332613081, 4306234.044795338064432 ], [ 334572.067359853535891, 4306234.989114094525576 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 99, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334559.05044336715946, 4306238.022568350657821 ], [ 334560.226102413376793, 4306238.022568350657821 ], [ 334560.151060346630402, 4306237.047021483071148 ], [ 334559.025429344910663, 4306237.022007460705936 ], [ 334559.05044336715946, 4306238.022568350657821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 100, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334562.952630839776248, 4306236.971979415975511 ], [ 334564.003219774691388, 4306236.946965393610299 ], [ 334564.053247819188982, 4306235.996432547457516 ], [ 334563.002658884273842, 4306236.046460592187941 ], [ 334562.952630839776248, 4306236.971979415975511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 101, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334536.00329491624143, 4306238.017268450930715 ], [ 334537.049230761767831, 4306238.017268450930715 ], [ 334536.974521058495156, 4306237.001216486096382 ], [ 334535.973411034909077, 4306236.986274546012282 ], [ 334536.00329491624143, 4306238.017268450930715 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 102, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334539.007059543335345, 4306257.001438250765204 ], [ 334539.959706915658899, 4306257.013973085209727 ], [ 334539.99731141718803, 4306255.99865154363215 ], [ 334538.981989875610452, 4306256.01118637714535 ], [ 334539.007059543335345, 4306257.001438250765204 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 103, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334538.997623427363578, 4306266.014959464780986 ], [ 334540.089301067986526, 4306265.981878324411809 ], [ 334540.122382208588533, 4306264.989444105885923 ], [ 334538.997623427363578, 4306264.972903535701334 ], [ 334538.997623427363578, 4306266.014959464780986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330931.934050183335785, 4309998.825806614942849 ], [ 330936.014837716065813, 4309998.825806614942849 ], [ 330935.688374713470694, 4309995.234713586047292 ], [ 330931.934050183335785, 4309995.234713586047292 ], [ 330931.934050183335785, 4309998.825806614942849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 329793.814080860873219, 4311388.607496351003647 ], [ 329800.544374572928064, 4311388.607496351003647 ], [ 329800.544374572928064, 4311384.83853187225759 ], [ 329796.506198345683515, 4311384.569320123642683 ], [ 329793.814080860873219, 4311388.607496351003647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 329780.084281688265037, 4311398.029907547868788 ], [ 329784.39166966394987, 4311400.722025032155216 ], [ 329785.199304909445345, 4311395.607001811265945 ], [ 329781.699552179139573, 4311394.530154817737639 ], [ 329780.084281688265037, 4311398.029907547868788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327696.676771551836282, 4314124.705235533416271 ], [ 327699.016440295963548, 4314127.92228005733341 ], [ 327703.549548487644643, 4314126.898674981668591 ], [ 327703.695777784101665, 4314123.535401161760092 ], [ 327700.040045371511951, 4314121.049503121525049 ], [ 327696.676771551836282, 4314124.705235533416271 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327642.479639296187088, 4314103.207330599427223 ], [ 327644.680074633623008, 4314106.728027138859034 ], [ 327648.787553930247668, 4314106.434635761193931 ], [ 327647.320597038604319, 4314102.620547843165696 ], [ 327644.680074633623008, 4314101.00689526181668 ], [ 327642.479639296187088, 4314103.207330599427223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327687.515215869760141, 4314140.174644269049168 ], [ 327686.194954667240381, 4314142.228383917361498 ], [ 327688.542085693916306, 4314144.282123565673828 ], [ 327690.449129653046839, 4314142.815166673623025 ], [ 327687.515215869760141, 4314140.174644269049168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327155.306710874894634, 4314838.333728894591331 ], [ 327160.673819936520886, 4314836.493577216751873 ], [ 327157.913592419121414, 4314832.506581913679838 ], [ 327154.233289062511176, 4314832.35323594044894 ], [ 327155.306710874894634, 4314838.333728894591331 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327162.207279668422416, 4314817.018638621084392 ], [ 327164.507469266303815, 4314822.69243962969631 ], [ 327169.261194435181096, 4314822.385747683234513 ], [ 327171.868075979407877, 4314817.478676540777087 ], [ 327162.207279668422416, 4314817.018638621084392 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327243.652514312183484, 4314825.171178304590285 ], [ 327247.233933227136731, 4314827.775846606120467 ], [ 327253.908395750506315, 4314826.310720685869455 ], [ 327249.350226222362835, 4314822.892093540169299 ], [ 327243.652514312183484, 4314825.171178304590285 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 326732.067737011588179, 4309933.274033564142883 ], [ 326733.306306478974875, 4309937.677836115472019 ], [ 326739.49915381608298, 4309929.971181651577353 ], [ 326738.673440837825183, 4309925.567379100248218 ], [ 326732.067737011588179, 4309933.274033564142883 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321207.024108110403176, 4317924.532428124919534 ], [ 321209.894989933061879, 4317924.213441255502403 ], [ 321209.416509629285429, 4317921.821039737202227 ], [ 321206.386134372034576, 4317920.864079129882157 ], [ 321207.024108110403176, 4317924.532428124919534 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321696.974278048204724, 4317851.881626913323998 ], [ 321699.127577061823104, 4317849.44122136477381 ], [ 321703.434175089118071, 4317853.604266123846173 ], [ 321701.280876075499691, 4317855.614011869765818 ], [ 321696.974278048204724, 4317851.881626913323998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321701.56798261066433, 4317823.888739735819399 ], [ 321704.295494694611989, 4317821.448334187269211 ], [ 321707.023006778559648, 4317825.75493221450597 ], [ 321704.582601229776628, 4317828.338891030289233 ], [ 321701.56798261066433, 4317823.888739735819399 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327423.486853892507497, 4313477.209984629414976 ], [ 327423.486853892507497, 4313474.938057087361813 ], [ 327416.671071266697254, 4313469.745079848915339 ], [ 327417.96931557636708, 4313465.201224764809012 ], [ 327428.030708976380993, 4313465.201224764809012 ], [ 327429.978075440914836, 4313471.692446312867105 ], [ 327423.486853892507497, 4313477.209984629414976 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327369.609715040714946, 4313495.385404964908957 ], [ 327377.723741976195015, 4313495.709966042079031 ], [ 327377.723741976195015, 4313492.78891634568572 ], [ 327371.232520427787676, 4313490.192427726462483 ], [ 327369.609715040714946, 4313495.385404964908957 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327381.618474905262701, 4313499.929260049015284 ], [ 327383.241280292335432, 4313494.411721732467413 ], [ 327401.416700627887622, 4313498.306454661302269 ], [ 327398.171089853683952, 4313506.095920519903302 ], [ 327392.978112615004648, 4313499.604698970913887 ], [ 327381.618474905262701, 4313499.929260049015284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327467.627160421689041, 4313467.473152306862175 ], [ 327473.46925981529057, 4313473.31525170058012 ], [ 327478.986798131430987, 4313467.797713384032249 ], [ 327473.144698737829458, 4313464.227541532367468 ], [ 327467.627160421689041, 4313467.473152306862175 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 8, "id": 55, "SiteCode": "055-ER18", "SampleSiteCode": "055-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330956.048804940306582, 4310041.067355453968048 ], [ 330958.033737883903086, 4310040.981936214491725 ], [ 330958.004970738606062, 4310039.025770417414606 ], [ 330956.048804940481205, 4310039.05365536827594 ], [ 330956.048804940306582, 4310041.067355453968048 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 9, "id": 56, "SiteCode": "056-ER18", "SampleSiteCode": "056-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330986.005235745687969, 4310048.964637434110045 ], [ 330988.007337657792959, 4310049.064621517434716 ], [ 330988.007337657734752, 4310046.99338714312762 ], [ 330986.007049452222418, 4310047.021272093988955 ], [ 330986.005235745687969, 4310048.964637434110045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 10, "id": 57, "SiteCode": "057-ER18", "SampleSiteCode": "057-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330946.971941752242856, 4309982.983829881064594 ], [ 330948.02944754017517, 4309983.134902136400342 ], [ 330948.02944754017517, 4309980.906586368568242 ], [ 330946.896405624574982, 4309980.906586368568242 ], [ 330946.971941752242856, 4309982.983829881064594 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 10, "id": 57, "SiteCode": "057-ER18", "SampleSiteCode": "057-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330944.118135445518419, 4309982.983829881064594 ], [ 330945.897688612283673, 4309983.203668553382158 ], [ 330945.897688612283673, 4309980.975352785550058 ], [ 330944.042599317850545, 4309980.906586368568242 ], [ 330944.118135445518419, 4309982.983829881064594 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 11, "id": 58, "SiteCode": "058-ER18", "SampleSiteCode": "058-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330937.869838363432791, 4309930.977205952629447 ], [ 330939.064184430229943, 4309930.976377154700458 ], [ 330938.891581565956585, 4309928.962677067145705 ], [ 330937.945374491158873, 4309929.088802759535611 ], [ 330937.869838363432791, 4309930.977205952629447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327407.90792217629496, 4313507.069603751413524 ], [ 327417.320193421503063, 4313508.043286983855069 ], [ 327417.644754498964176, 4313501.227504358626902 ], [ 327407.258800021489151, 4313502.525748668238521 ], [ 327407.90792217629496, 4313507.069603751413524 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327445.232446079666261, 4313488.569622338749468 ], [ 327453.021911937801633, 4313490.192427726462483 ], [ 327457.241205944214016, 4313482.727522945031524 ], [ 327448.153495776467025, 4313481.429278635419905 ], [ 327445.232446079666261, 4313488.569622338749468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327333.907996524416376, 4313472.66612954530865 ], [ 327339.100973763153888, 4313479.481912171468139 ], [ 327347.215000698692165, 4313479.481912171468139 ], [ 327349.486928240628913, 4313486.297694796696305 ], [ 327354.355344401905313, 4313485.648572642356157 ], [ 327352.407977937429678, 4313471.367885235697031 ], [ 327333.907996524416376, 4313472.66612954530865 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 12, "id": 62, "SiteCode": "062-ER18", "SampleSiteCode": "062-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330823.995608006487601, 4309849.996866495348513 ], [ 330827.016158137004822, 4309849.996866495348513 ], [ 330827.044925281545147, 4309846.990699933841825 ], [ 330823.95245728926966, 4309847.005083505995572 ], [ 330823.995608006487601, 4309849.996866495348513 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": 59, "id": 135, "SiteCode": "135-ER18", "SampleSiteCode": "135-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325552.970218094764277, 4311700.961219703778625 ], [ 325555.027068899245933, 4311701.061904707923532 ], [ 325554.998301754938439, 4311699.983136803843081 ], [ 325552.9702180956956, 4311699.983136804774404 ], [ 325552.970218094764277, 4311700.961219703778625 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327432.77169421617873, 4312857.7598498435691 ], [ 327438.897772334632464, 4312861.773487231694162 ], [ 327443.333897868695203, 4312853.957456529140472 ], [ 327439.109016407688614, 4312851.211283579468727 ], [ 327432.77169421617873, 4312857.7598498435691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327418.195853175711818, 4312898.741200015880167 ], [ 327426.434372024668846, 4312904.656034060753882 ], [ 327429.603033120452892, 4312897.684979650191963 ], [ 327422.209490563662257, 4312895.783782992511988 ], [ 327418.195853175711818, 4312898.741200015880167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 327431.292985704843886, 4312888.812728581950068 ], [ 327433.616670508403331, 4312892.82636597007513 ], [ 327439.109016407688614, 4312892.615121897310019 ], [ 327436.785331604129169, 4312885.644067486748099 ], [ 327431.292985704843886, 4312888.812728581950068 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 322387.193713563785423, 4303329.142625406384468 ], [ 322391.827207172638737, 4303329.302401048131287 ], [ 322392.626085381081793, 4303325.308010005392134 ], [ 322388.95124562230194, 4303323.870029230602086 ], [ 322387.193713563785423, 4303329.142625406384468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 330428.663715450442396, 4301840.129986112937331 ], [ 330432.598911951878108, 4301842.696418614126742 ], [ 330437.731776953791268, 4301840.643272613175213 ], [ 330435.165344452834688, 4301834.654930111020803 ], [ 330428.663715450442396, 4301840.129986112937331 ] ] ] ] } }, +{ "type": "Feature", "properties": { "fid": null, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334626.18395844695624, 4306241.504355793818831 ], [ 334629.566461856127717, 4306245.15745947510004 ], [ 334632.678364992607385, 4306242.722057021223009 ], [ 334628.754661037935875, 4306239.474853748455644 ], [ 334626.18395844695624, 4306241.504355793818831 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 13, "id": 86, "SiteCode": "086-ER18", "SampleSiteCode": "086-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328545.012422662519384, 4310628.964091411791742 ], [ 328546.94158570363652, 4310629.050392842851579 ], [ 328546.898434987582732, 4310627.065459899604321 ], [ 328544.983655519608874, 4310627.07984347268939 ], [ 328545.012422662519384, 4310628.964091411791742 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 14, "id": 88, "SiteCode": "088-ER18", "SampleSiteCode": "088-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328548.008092411153484, 4310507.013289001770318 ], [ 328549.960371449880768, 4310506.966520017944276 ], [ 328550.017905738321133, 4310504.003504173830152 ], [ 328547.979325266263913, 4310504.079040301963687 ], [ 328548.008092411153484, 4310507.013289001770318 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 15, "id": 89, "SiteCode": "089-ER18", "SampleSiteCode": "089-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 328949.880582328420132, 4310569.92341489251703 ], [ 328952.036353751784191, 4310569.905413053929806 ], [ 328952.065120894811116, 4310568.006781542673707 ], [ 328950.024418047571089, 4310567.996016238816082 ], [ 328949.880582328420132, 4310569.92341489251703 ] ] ] ] } }, @@ -61,7 +119,6 @@ { "type": "Feature", "properties": { "fid": 56, "id": 316, "SiteCode": "316-ER18", "SampleSiteCode": "316-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324117.955831648374442, 4308685.954191182740033 ], [ 324118.966031466261484, 4308686.022490775212646 ], [ 324118.937264321721159, 4308683.980023544281721 ], [ 324117.95583164767595, 4308684.141861103475094 ], [ 324117.955831648374442, 4308685.954191182740033 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 57, "id": 317, "SiteCode": "317-ER18", "SampleSiteCode": "317-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324108.903003178653307, 4308680.921705349348485 ], [ 324110.916703266033437, 4308681.065541069023311 ], [ 324111.001240313169546, 4308679.938508288934827 ], [ 324109.073841658828314, 4308679.967275433242321 ], [ 324108.903003178653307, 4308680.921705349348485 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 58, "id": 318, "SiteCode": "318-ER18", "SampleSiteCode": "318-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324133.075027531012893, 4308698.010435384698212 ], [ 324134.925662659865338, 4308698.04820344876498 ], [ 324135.038966851425357, 4308696.008728 ], [ 324134.05960220634006, 4308696.081990292295814 ], [ 324132.999491403286811, 4308696.084264128468931 ], [ 324133.075027531012893, 4308698.010435384698212 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 59, "id": 135, "SiteCode": "135-ER18", "SampleSiteCode": "135-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 325552.970218094764277, 4311700.961219703778625 ], [ 325555.027068899245933, 4311701.061904707923532 ], [ 325554.998301754938439, 4311699.983136803843081 ], [ 325552.9702180956956, 4311699.983136804774404 ], [ 325552.970218094764277, 4311700.961219703778625 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 60, "id": 361, "SiteCode": "361-ER18", "SampleSiteCode": "361-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320837.958267092006281, 4313649.862119578756392 ], [ 320839.957583607174456, 4313650.034722443670034 ], [ 320839.920697735797148, 4313648.979607524350286 ], [ 320837.906997648417018, 4313648.993991096504033 ], [ 320837.958267092006281, 4313649.862119578756392 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 61, "id": 363, "SiteCode": "363-ER18", "SampleSiteCode": "363-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 320875.238810966780875, 4313611.058246744796634 ], [ 320876.781292447994929, 4313610.896409184671938 ], [ 320876.982662456517573, 4313608.796407665126026 ], [ 320875.23881096689729, 4313608.814409505575895 ], [ 320875.238810966780875, 4313611.058246744796634 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 62, "id": 384, "SiteCode": "384-ER18", "SampleSiteCode": "384-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 321192.815641704073641, 4317921.947503469884396 ], [ 321194.944410369964316, 4317921.947503468953073 ], [ 321194.973177513689734, 4317921.066845300607383 ], [ 321192.930710282584187, 4317921.009311011061072 ], [ 321192.815641704073641, 4317921.947503469884396 ] ] ] ] } }, @@ -93,18 +150,6 @@ { "type": "Feature", "properties": { "fid": 88, "id": 469, "SiteCode": "469-ER18", "SampleSiteCode": "469-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324486.014361291716341, 4304005.93625498842448 ], [ 324488.938191874243785, 4304005.959097413346171 ], [ 324489.052404005662538, 4304004.017491168342531 ], [ 324485.945834011363331, 4304003.971806314773858 ], [ 324486.014361291716341, 4304005.93625498842448 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 89, "id": 470, "SiteCode": "470-ER18", "SampleSiteCode": "470-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324514.042018523789011, 4304010.893061523325741 ], [ 324517.080061239539646, 4304011.030116083100438 ], [ 324516.965849107597023, 4304008.01491579413414 ], [ 324513.996333671268076, 4304008.01491579413414 ], [ 324514.042018523789011, 4304010.893061523325741 ] ] ] ] } }, { "type": "Feature", "properties": { "fid": 90, "id": 471, "SiteCode": "471-ER18", "SampleSiteCode": "471-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324559.041598595213145, 4304037.938494420610368 ], [ 324562.993338369065896, 4304038.029864126816392 ], [ 324563.084708074573427, 4304033.941069794818759 ], [ 324559.018756169942208, 4304033.986754646524787 ], [ 324559.041598595213145, 4304037.938494420610368 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 91, "id": 472, "SiteCode": "472-ER18", "SampleSiteCode": "472-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324592.094589644228108, 4304055.984011301770806 ], [ 324594.059038317063823, 4304056.121065861545503 ], [ 324594.013353464542888, 4304054.019562628120184 ], [ 324592.003219938720576, 4304053.928192922845483 ], [ 324592.094589644228108, 4304055.984011301770806 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 92, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323508.236140335851815, 4316452.611796146258712 ], [ 323511.905414896493312, 4316452.41867643315345 ], [ 323511.712295182747766, 4316450.004680011421442 ], [ 323508.043020622164477, 4316450.197799725458026 ], [ 323508.236140335851815, 4316452.611796146258712 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 93, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323485.943495106534101, 4316488.282935677096248 ], [ 323489.283166487817653, 4316488.360602453351021 ], [ 323489.127832935191691, 4316485.564598506316543 ], [ 323486.409495764353778, 4316485.564598506316543 ], [ 323485.943495106534101, 4316488.282935677096248 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 94, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 323623.57966208527796, 4316526.575268795713782 ], [ 323628.435842625098303, 4316526.447474570944905 ], [ 323627.924665726197418, 4316520.313351783901453 ], [ 323623.45186786056729, 4316520.568940233439207 ], [ 323623.57966208527796, 4316526.575268795713782 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 95, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334573.068910049973056, 4306237.879301804117858 ], [ 334575.014779003104195, 4306237.936533244326711 ], [ 334574.928931843431201, 4306236.019280010834336 ], [ 334573.097525769844651, 4306236.190974330529571 ], [ 334573.068910049973056, 4306237.879301804117858 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 96, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334572.925831450498663, 4306240.025480796582997 ], [ 334573.955997366865631, 4306239.996865076944232 ], [ 334573.984613086737227, 4306239.023930599913001 ], [ 334572.811368570895866, 4306238.966699160635471 ], [ 334572.925831450498663, 4306240.025480796582997 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 97, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334577.160957995511126, 4306234.931882654316723 ], [ 334578.162508192006499, 4306234.989114094525576 ], [ 334578.1052767522051, 4306233.958948178216815 ], [ 334577.13234227563953, 4306233.958948178216815 ], [ 334577.160957995511126, 4306234.931882654316723 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 98, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334572.067359853535891, 4306234.989114094525576 ], [ 334573.04029433010146, 4306234.960498373955488 ], [ 334573.068910049973056, 4306234.073411057703197 ], [ 334572.324901332613081, 4306234.044795338064432 ], [ 334572.067359853535891, 4306234.989114094525576 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 99, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334559.05044336715946, 4306238.022568350657821 ], [ 334560.226102413376793, 4306238.022568350657821 ], [ 334560.151060346630402, 4306237.047021483071148 ], [ 334559.025429344910663, 4306237.022007460705936 ], [ 334559.05044336715946, 4306238.022568350657821 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 100, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334562.952630839776248, 4306236.971979415975511 ], [ 334564.003219774691388, 4306236.946965393610299 ], [ 334564.053247819188982, 4306235.996432547457516 ], [ 334563.002658884273842, 4306236.046460592187941 ], [ 334562.952630839776248, 4306236.971979415975511 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 101, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334536.00329491624143, 4306238.017268450930715 ], [ 334537.049230761767831, 4306238.017268450930715 ], [ 334536.974521058495156, 4306237.001216486096382 ], [ 334535.973411034909077, 4306236.986274546012282 ], [ 334536.00329491624143, 4306238.017268450930715 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 102, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334539.007059543335345, 4306257.001438250765204 ], [ 334539.959706915658899, 4306257.013973085209727 ], [ 334539.99731141718803, 4306255.99865154363215 ], [ 334538.981989875610452, 4306256.01118637714535 ], [ 334539.007059543335345, 4306257.001438250765204 ] ] ] ] } }, -{ "type": "Feature", "properties": { "fid": 103, "id": null, "SiteCode": null, "SampleSiteCode": null, "VegetationType": null, "CoverClass": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 334538.997623427363578, 4306266.014959464780986 ], [ 334540.089301067986526, 4306265.981878324411809 ], [ 334540.122382208588533, 4306264.989444105885923 ], [ 334538.997623427363578, 4306264.972903535701334 ], [ 334538.997623427363578, 4306266.014959464780986 ] ] ] ] } } +{ "type": "Feature", "properties": { "fid": 91, "id": 472, "SiteCode": "472-ER18", "SampleSiteCode": "472-ER18", "VegetationType": "Shrub", "CoverClass": "Willow" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 324592.094589644228108, 4304055.984011301770806 ], [ 324594.059038317063823, 4304056.121065861545503 ], [ 324594.013353464542888, 4304054.019562628120184 ], [ 324592.003219938720576, 4304053.928192922845483 ], [ 324592.094589644228108, 4304055.984011301770806 ] ] ] ] } } ] }